summaryrefslogtreecommitdiff
path: root/support/rnototex/conversion.pas
blob: 62ac3cf0ae9fd98fa4cb235305bb30e02f2a572f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
[INHERIT('UTILITYOPS','ARGOPS','FLAGOPS',
'TREEANDLISTOPS','LATEXOPS'), environment('conversion')]

MODULE CONVERSION;

CONST
    maxlists = 8;     
    maxheaderlevels = 6;
    maxlongpckstrchars = 75;
TYPE

longpckstr = VARYING[maxlongpckstrchars] of char;

pagesizetype = record
	            length : integer;
	            width  : integer
	         end;

paragraphdeftype = record
    	                indent : integer;
	                vertskip : integer;
	                testpage : integer
	             end;

numberlisttype = record
	              listlevel   : integer;
	              valuetoset : integer
	           end;

displayelementstype = record
	                  leftchar : char;
	                  style : styletype;
	                  rightchar : char
	                end;

leveltype = record
	   value : integer;                                                    
	   display : styletype
	end;

headerleveltype = array[1..maxheaderlevels] of leveltype;


VAR


inputcontainstexcommands : [GLOBAL] boolean;

totallines, totalchars : [EXTERNAL] integer;

pagesize : [GLOBAL] pagesizetype;

numberpage : [GLOBAL] integer;

numberrunning : [GLOBAL] integer;

displaynumber : [GLOBAL] styletype;

capitalizetext, lowercasetext : [GLOBAL] boolean;

leftmargin : [GLOBAL] integer;

rightmargin : [GLOBAL] integer;

fill : [GLOBAL] boolean;

startnofillagain : [GLOBAL] boolean;

justify : [GLOBAL] boolean;

spacing : [GLOBAL] integer;
                              
indent  : [GLOBAL] integer;

centering : [GLOBAL] boolean;

flushright : [GLOBAL] boolean;

minipageactive : [GLOBAL] boolean;

inmarginpar  : [GLOBAL] boolean;

infootnote : [GLOBAL] boolean;

paragraphdef : [GLOBAL] paragraphdeftype;

numberlist : [GLOBAL] numberlisttype;

displayelements : [GLOBAL] displayelementstype;

numberchapter : [GLOBAL] integer;

displaychapter : [GLOBAL] styletype;

headerlevel : [GLOBAL] headerleveltype;

nestlevel : [GLOBAL] integer;

numberappendix : [GLOBAL] integer;

displayappendix : [GLOBAL] styletype;

writetexcommands : [GLOBAL] boolean;

flagtable : [GLOBAL] flagtabletype;

inliteral : [GLOBAL] boolean;

title, subtitle : [GLOBAL] argarray;

datestring : [GLOBAL] pckstr;

pagestyle : [GLOBAL] pagestyletype;
                                                   
liststate : [GLOBAL] array[1..maxlists] of liststatetype;

numberofelements : [GLOBAL] array[1..maxlists] of integer;

outputfirstitem : [GLOBAL] array[1..maxlists] of boolean;

listnestlevel : [GLOBAL] integer;

nofillbeforelist : [GLOBAL] boolean;

LOG : [EXTERNAL] text;

underlineactive : [GLOBAL] enhancmentstates;

boldactive : [GLOBAL] enhancmentstates;



[GLOBAL] FUNCTION quotedcharacter( arg : argument ) : char;
var
  s : pckstr;
begin
   s := argliteral( arg, true );
   if length(s) = 1 then
      quotedcharacter := s[1]
   else
      if length(s) = 3 then
	quotedcharacter := s[2]
      else
	quotedcharacter := blank
end;                                           
                          


[HIDDEN] PROCEDURE noconversion; EXTERN;






                              
[GLOBAL] PROCEDURE blankifypckstr( var s : pckstr );
begin
  s.body := blank;
  s.length := 0
end;



[GLOBAL] PROCEDURE initglobalvars;
var
  i : integer;
begin
   pagesize.length := 58;
   pagesize.width := 60;
   numberpage := 1;
   numberrunning := 1;
   displaynumber := decimal;
   capitalizetext := false;
   lowercasetext := false;
   leftmargin := 0;
   rightmargin := 60;
   fill := true;
   startnofillagain := false;
   justify := true;              
   centering := false;
   flushright := false;
   minipageactive := false;
   indent := 5;
   spacing := 1;
   paragraphdef.indent := 5;
   paragraphdef.vertskip := 2;
   paragraphdef.testpage := 5;
   numberlist.listlevel := 1;
   numberlist.valuetoset := 0;
   nofillbeforelist := false;
   displayelements.leftchar := blank;
   displayelements.style := decimal;
   displayelements.rightchar := blank;
   numberchapter := 0;
   numberappendix := 0;
   displaychapter := decimal;
   for i := 1 to maxheaderlevels do
   begin
     headerlevel[i].value := 0;   
     headerlevel[i].display := decimal
   end;                       
   nestlevel := 1;
   inliteral := false;
   makenullarray( title );
   makenullarray( subtitle ); 
   pagestyle := myheadings;
   blankifypckstr( datestring );
   for i := 1 to maxlists do
   begin
      liststate[i] := nostate;
      numberofelements[i] := 0;
      outputfirstitem[i] := false
   end;
   listnestlevel := 0;
   underlineactive := notenhanced;
   boldactive := notenhanced
end;
                        



[GLOBAL] PROCEDURE loglist( list : arglist; index : integer);
var                                    
  l : arglist;
begin
  writeln(log);
  writeln(log,'INDEX >',index:1,' LENGTH >',arglistlength(list):1);
  l := list;  
  write(log,'RUNOFF >');
  while l <> nulllist do
  begin
    write(log, argliteral(firstarg(l), false), blank);
    l := nextinlist(l)
  end;
  writeln(log);
  write(log,'TEX >') 
end;

                    


[GLOBAL] PROCEDURE dumpthelist( var outfile : text; list : arglist );
begin
   if list <> nulllist then
   begin
      texwritearg(outfile, firstarg(list));
      dumpthelist(outfile, nextinlist(list))
   end
end;




[GLOBAL] PROCEDURE newintvalue( arg : argument; var current : integer; 
       	                 var modified : parameterchangestates; 
	                 var intextracted : integer );
var  
  signed : boolean;                      
  successful : boolean;
begin                                        
  modified := nochange;
  extractintegerfromargument(arg, successful, intextracted, signed );
  if successful then
  begin                                               
    if signed then
    begin
      modified := altered;
      current := intextracted + current
    end
    else                        
    begin
      modified := assigned;
      current := intextracted
    end
  end
end;                      




[GLOBAL] PROCEDURE newcountparameter( arg : argument; var current : integer;
	                                var modified : parameterchangestates;
                                        var countervalueextracted : integer;
	                                var class : countparametertype);
begin
  modified := nochange
end;


[GLOBAL] PROCEDURE newstyleparameter( arg : argument; var current : styletype );
var
   s : styletype;
begin
  s := isastylespecifier( arg );
  if s <> undetermined then
      current := s
end;
                     

                                            
  
[LOCAL] FUNCTION  m( i : integer  ) : integer;
begin
  if i < 2 then
   m := 1
  else
   m := i - 1
end;                                        
                                                               

[LOCAL] PROCEDURE C( var f : text );
begin
   writeln(f,'}');
   writeln(log,'}')
end;




[GLOBAL] PROCEDURE flagchange( f : dsrflagclasses; arg : argument );
var
  ch : char;
begin
   turnflagon( f );
   ch := quotedcharacter( arg );
   if ch <> blank then 
     changeflagchar(f, ch)
end;



                   
[GLOBAL] PROCEDURE puttexcommand( var outfile : text; index : integer; 
	                   dsrlist : arglist; 
	                   var writeanothertexcommand : integer );

label 
   routineexit;                                                          
const                  
  charwidth = true;
  charheight = false;
var 
   arg : argarray;
   i, j, n : integer;
   modified : parameterchangestates; 
   extractedvalue, skip, startindex : integer;     
   class : countparametertype;
   f : dsrflagclasses;
   q : char;                            
   startedwithfill : boolean;
                   
begin                                

if (index < 1) or (index > 130) then goto routineexit;
                             
writeanothertexcommand := indexofunknowntexcommand;
loglist( dsrlist, index );
n := arglistlength( dsrlist );
listtoarray( dsrlist, index, arg, maxargsinarray);
startedwithfill := fill;     
stopunderline( outfile );
stopbold( outfile );

{
  n      - number of arguments supplied with the DSR command 
  m(n-1) - one less than that number, unless n < 2
  m(n-2) - two less than the number of arguments, unless < 3
  etc                                                         

  arg[i] - the ith input dsr argument; e.g. four args could be : 
 
      1    2   3   4
     PAGE SIZE 10, 20                                             }

 
                      
case index of
                                 
   {***** PAGE SIZE *****}      
  1 : begin                                                         
	newintvalue(arg[n], pagesize.width, modified, extractedvalue);
	newintvalue(arg[m(n)], pagesize.length, modified, extractedvalue);
        adjustlength(outfile, modified, pagesize.width, extractedvalue,charwidth,'textwidth');
	adjustlength(outfile, modified, pagesize.length, extractedvalue,charheight,'textheight')
      end;
              
   {***** HEADERS OFF *****} 
  2 : adjustpagestyle(outfile, plain);

   {***** HEADERS ON ***** }
  3 : adjustpagestyle(outfile, headings);

   {***** HEADERS UPPER ***** }
  4 : noconversion;              
                      
   {***** HEADERS LOWER ***** }
  5 : noconversion;

   {***** HEADERS MIXED ***** }
  6 : noconversion;
                           
   {***** ENABLE WRITING OF DATE *****} 
  7 : begin
        datestring := '\today';
        if pagestyle = myheadings then
          adjustpagestyle(outfile, myheadings)
        else
	  noconversion
      end;
          
  { ***** DISABLE WRITING OF DATE ***** }
  8 : begin
        blankifypckstr( datestring );
        if pagestyle = myheadings then
          adjustpagestyle(outfile, myheadings )
        else
          noconversion
      end;
	     
  { ***** LAYOUT ***** }
  9 : noconversion;
     
  { ***** NO NUMBER ***** }
 10 : adjustpagestyle(outfile, empty);

  { ***** NUMBER PAGE ***** }
 11 : begin                                                        
	newcountparameter(arg[n], numberpage, modified, extractedvalue,class);
        adjustcounter(outfile, modified, numberpage, extractedvalue, 'page')
      end;                        
           
  { ***** NUMBER RUNNING ***** }
 12 : begin                                         
        newintvalue(arg[n], numberrunning, modified, extractedvalue);
        adjustcounter(outfile, modified, numberrunning, extractedvalue,'page')
      end;
      
  { ***** DISPLAY NUMBER ***** }
 13 : begin
        newstyleparameter(arg[n], displaynumber);
	adjuststyle(outfile, displaynumber, 'page')
      end;
           
  { ***** NO PAGING ***** }
 14 : noconversion;

  { ***** PAGING ***** }
 15 : noconversion;

  { ***** BEGIN SUBPAGE ***** }
 16 : begin
        if not minipageactive then
	begin
	  minipageactive := true;
          if not startedwithfill then
	  begin
	    endnofill( outfile );
	    startnofillagain := true
	  end;
	  writeln(outfile,'\begin{minipage}');
          writeln(    log,'\begin{minipage}');
	  if not startedwithfill then
	    beginnofill( outfile )
        end
	else
	begin
	   writeln(outfile,'% RNOTOTEX - minipage already active');
	   writeln(    log,'% RNOTOTEX - minipage already active')
	end
      end;

  { ***** END SUBPAGE ***** }
 17 : begin                     
        if minipageactive then
	begin
          if not fill then
	    endnofill( outfile );
          writeln(outfile,'\end{minipage}');
          writeln(    log,'\end{minipage}');
          if startnofillagain then         
	  begin
	    startnofillagain := false;
	    beginnofill( outfile )     
          end
        end
        else
        begin
	   writeln(outfile,'% RNOTOTEX - minipage not active');
	   writeln(    log,'% RNOTOTEX - minipage not active')
     	end;
        minipageactive := false
      end;

  { ***** NUMBER SUBPAGE ***** }
 18 : noconversion;


  { ***** DISPLAY SUBPAGE ***** }
 19 : noconversion;

  { ***** FIRST TITLE ***** }
 20 : noconversion;

  { ***** TITLE ***** }
 21 : begin
         for i := 2 to maxargsinarray do
	   title[i-1] := arg[i];
         if pagestyle = myheadings then
           adjustpagestyle(outfile, myheadings)
         else
	   noconversion
      end;

  { ***** SUBTITLE ***** }
 22 : begin
         for i := 2 to maxargsinarray do
	    subtitle[i-1] := arg[i];
         if pagestyle = myheadings then
	   adjustpagestyle(outfile, myheadings)
         else
	   noconversion
      end;

  { ***** NO SUBTITLE ***** }
  23 : begin
          makenullarray( subtitle );
          if pagestyle = myheadings then
            adjustpagestyle(outfile, myheadings)
          else
	    noconversion
       end;

  { ***** NO AUTOSUBTITLE ***** }
  24 : begin
         makenullarray( subtitle );
         if pagestyle = myheadings then
           adjustpagestyle(outfile, plain)
         else
           noconversion
       end;

  { ***** AUTOSUBTITLE ***** }
  25 : adjustpagestyle(outfile, headings);


  { ***** UPPERCASE ***** }
  26 : begin
        capitalizetext := true;
        lowercasetext := false
       end;

  { ***** LOWERCASE ***** }
  27 : begin
	capitalizetext := false;
        lowercasetext := true
       end;

  { ***** LEFT MARGIN ***** }
  28 : begin
          newintvalue( arg[n], leftmargin, modified, extractedvalue);
	  noconversion
       end;
 
  { ***** RIGHT MARGIN ***** }
  29 : begin
          newintvalue( arg[n], rightmargin, modified, extractedvalue);
          noconversion
       end;

  { ***** NO FILL ***** }
  30 : beginnofill( outfile );

  { ***** FILL ***** }
  31 : endnofill( outfile );

  { ***** NO JUSTIFY ***** }
  32 : begin
          writeln(outfile,'\sloppy % - begin no justify');
          writeln(    log,'\sloppy % - begin no justify');
          justify := false
       end;

  { ***** JUSTIFY ***** }
  33 : begin
          writeln(outfile,'\fussy % - turn justification on');
          writeln(    log,'\fussy % - turn justification on');
          justify := true
       end;

  { ***** BREAK ***** }
  34 : begin                        
         if fill then
	 begin
	   writeln(outfile,'\hfil\linebreak');
	   writeln(    log,'\hfil\linebreak')
	 end
         else
	 begin
	   writeln(outfile,'% RNOTOTEX - forced break');
	   writeln(    log,'% RNOTOTEX - forced break')
	 end
       end;

  { ***** SPACING ***** }
  35 : begin
          newintvalue(arg[n], spacing, modified, extractedvalue );
          adjustlength(outfile, modified, spacing, extractedvalue, charheight,'baselineskip')
       end;

  { ***** SKIP ***** }
  36 : begin          
         if n = 1 then
	 begin
	    if (spacing > 0) and (spacing < 4) then
	    case spacing of
	        1 : begin
	              writeln(outfile,'\smallskip');
	              writeln(    log,'\smallskip')
	            end;
	        2 : begin
	              writeln(outfile,'\medskip');
	              writeln(    log,'\medskip')
	            end;
	        3 : begin
	               writeln(outfile,'\bigskip');
	               writeln(    log,'\bigskip')
	            end
	    end
	    else
	    begin
	       writeln(outfile,'\smallskip % - default skip amount');
	       writeln(    log,'\smallskip % - default skip amount')
	    end
         end
         else
	 begin
           skip := 1;
           newintvalue(arg[n], skip, modified, extractedvalue );
           extractedvalue := extractedvalue * spacing;
	   write(outfile,'\vspace{'); 
           write(    log,'\vspace{'); 
           writecharheight(outfile, extractedvalue);
           c(outfile)
         end
       end;

  { ***** BLANK ***** }
  37 : begin
         if n = 1 then
	 begin
	   writeln(outfile,'\smallskip');
           writeln(    log,'\smallskip')
         end
         else
         begin
	   skip := 1;
           newintvalue(arg[n], skip, modified, extractedvalue );
           write(outfile,'\vspace{');  
           write(    log,'\vspace{'); 
	   writecharheight(outfile, extractedvalue);
           c(outfile)
         end
       end;

  { ***** PAGE ***** }
  38 : begin
	 writeln(outfile,'\pagebreak[0] \typeout{runoff page break encountered, may be ignored}');
	 writeln(    log,'\pagebreak[0]')
       end;
 
  { ***** TEST PAGE ***** }
  39 : noconversion;

  { ***** CENTRE ***** }
  40 : begin
         if not centering then
	 begin
           centering := true;         
	   if not fill then
	   begin
	     startnofillagain := true;
	     endnofill( outfile )
           end;
	   writeln(outfile,'\begin{centering}');
	   writeln(    log,'\begin{centering}');
           writeanothertexcommand := 40
	 end
	 else
	 begin
	   writeln(outfile,'% RNOTOTEX - centering already active');
	   writeln(    log,'% RNOTOTEX - centering already active')
	 end
       end;

  { ***** TAB STOPS ***** }
  41 : noconversion;

  { ***** INDENT ***** }
  42 : begin
          indent := 5;
	  newintvalue(arg[n], indent, modified, extractedvalue);
          if modified = nochange then        
          begin
	     write(outfile,'\indent ');
	     write(    log,'\indent ')
          end
          else              
          begin
            write(outfile,'\hspace*{');
            write(    log,'\hspace*{');
            writecharwidth(outfile, indent);
            write(outfile,'} ');
            writeln(log,'}')
          end
       end;

   { ***** LEFT ***** }
  43 : begin
          indent := 5;
	  newintvalue(arg[n], indent, modified, extractedvalue);
          if (modified = nochange) or (n = 1) then
          begin
	     write(outfile,'\indent ');
	     write(    log,'\indent ')
	  end
          else
          begin                                                   
            write(outfile,'\hspace*{');
            write(    log,'\hspace*{');
            writecharwidth(outfile, indent);
            write(outfile,'} ');
	    writeln(log,'}')
          end
       end;
 
   { *****  RIGHT ***** }
  44 : begin
          if not flushright then
	  begin
            if not fill then
            begin
	      startnofillagain := true;
	      endnofill( outfile )
	    end;
	    flushright:= true;
	    writeln(outfile,'\begin{flushright}');
	    writeln(    log,'\begin{flushright}');
            writeanothertexcommand := 44
	  end
	  else
	  begin
	    writeln(outfile,'% RNOTOTEX - flush right already active');
	    writeln(    log,'% RNOTOTEX - flush right already active')
	  end
       end;

   { ***** NO PERIOD ***** }
  45 : begin 
         writeln(outfile,'\frenchspacing');
         writeln(    log,'\frenchspacing')
       end;

   { ***** PERIOD ***** }
  46 : begin 
	 writeln(outfile,'\nofrenchspacing');
	 writeln(    log,'\nofrenchspacing')
       end;

   { ***** NO SPACE ***** }
  47 : noconversion;

   { ***** PARAGRAPH ***** }
  48 : begin
	if n > 1 then
 	begin
	    newintvalue(arg[2], paragraphdef.indent, modified, extractedvalue);
 	    newintvalue(arg[3], paragraphdef.vertskip, modified, extractedvalue);
	    newintvalue(arg[4], paragraphdef.testpage, modified, extractedvalue)
        end;
	writeln(outfile,'\par');
	writeln(    log,'\par')
       end;

   { ***** SET PARAGRAPH ***** }
  49 : begin
	 newintvalue(arg[m(n-2)], paragraphdef.indent, modified, extractedvalue);
 	 adjustlength(outfile, modified, paragraphdef.indent, extractedvalue,charwidth,'parindent');
 	 newintvalue(arg[m(n-1)], paragraphdef.vertskip, modified, extractedvalue);
	 adjustlength(outfile, modified, paragraphdef.vertskip, extractedvalue,charheight,'parskip');
	 newintvalue(arg[m(n)], paragraphdef.testpage, modified, extractedvalue)
       end;

   { ***** AUTOPARAGRAPH ***** }
   50 : noconversion;

   { ***** NO AUTOPARAGRAPH ***** }
   51 : noconversion;

   { ***** AUTOTABLE ***** }
   52 :  noconversion;

   { ***** NO AUTOTABLE ***** }
   53 : noconversion;

   { ***** DISABLE UNDERLINING ***** }
   54 : turnflagoff( underline );

   { ***** ENABLE UNDERLINING ***** }                                                          
   55 : turnflagon( underline );

   { ***** NO HYNPHENATION ***** }
   56 : turnflagoff( hyphenate );

   { ***** HYPENATION ***** }
   57 : turnflagon( hyphenate );

   { ***** DISABLE BOLDING ***** }
   58 : turnflagoff( bold );

   { *****  ENABLE BOLDING ***** }
   59 : turnflagon( bold );

   { ***** DISABLE OVERSTRIKE ***** }
   60 : turnflagoff( overstrike );

   { ***** ENABLE OVERSTRIKE ***** }
   61 : turnflagon( overstrike );

   { ***** ENABLE BAR ***** }
   62 : noconversion;
                       
   { ***** BEGIN BAR  ***** }
   63 : noconversion;

   { ***** END BAR ***** }
   64 : noconversion;

   { ***** DISABLE BAR ***** }
   65 : noconversion;

   { ***** FIGURE ***** }
   66 : begin
	   skip := 1;
	   newintvalue(arg[n], skip, modified, extractedvalue);
	   writeln(outfile,'\begin{figure}');
           write(outfile,'\vspace{');
	   writeln(    log,'\begin{figure}');
           write(    log,'\vspace{');
           writecharheight(outfile, skip);
           c(outfile);
	   writeln(outfile,'\caption{Another Figure}');
           writeln(outfile,'\end{figure}');
	   writeln(    log,'\caption{Another Figure}');
           writeln(    log,'\end{figure}')
	end;

    { ***** FIGURE DEFFERED ***** }
   67 : begin
	   skip := 1;
	   newintvalue(arg[n], skip, modified, extractedvalue);
	   writeln(outfile,'\begin{figure}');
	   writeln(    log,'\begin{figure}');
           write(outfile,'\vspace{');
           write(    log,'\vspace{');
           writecharheight(outfile, skip);
           c(outfile);
	   writeln(outfile,'\caption{Another Figure}');
           writeln(outfile,'\end{figure}');
	   writeln(    log,'\caption{Another Figure}');
           writeln(    log,'\end{figure}')
	end;
    
    { ***** LITERAL ***** }
   68 : begin 
	   if not inliteral then
	   begin
	     if not fill then
	     begin
	       startnofillagain := true;
	       endnofill( outfile )
	     end;
	     inliteral := true;
	     writeln(outfile,'\begin{verbatim}');
             writeln(    log,'\begin{verbatim}')
	   end
	   else
	   begin
	     writeln(outfile,'% RNOTOTEX - literal already active');
	     writeln(    log,'% RNOTOTEX - literal already active')
	   end
	end;	

    { ***** END LITERAL ***** }
   69 : begin  
	   if inliteral then
	   begin
	     writeln(outfile,'\end{verbatim}');
	     writeln(    log,'\end{verbatim}');
	     inliteral := false;
	     if startnofillagain then
	     begin
	       startnofillagain := false;                           
	       beginnofill( outfile )
	     end
           end
	   else
	   begin
	      writeln(outfile,'% RNOTOTEX - end literal not after literal');
	      writeln(    log,'% RNOTOTEX - end literal not after literal')
	   end
	end;

    { ***** REPEAT ***** }
   70 : begin
          skip := 1;
	  newintvalue(arg[2], skip, modified, extractedvalue);
	  q := quotedcharacter( arg[3] );
          for i := 1 to skip do                  
	  begin
	    texwrite(outfile, q);
	    texwrite(    log, q)
	  end
        end;

    { ***** LIST ***** }
   71 : begin                         
	  if (not fill) and (listnestlevel = 0) then
	  begin
	    nofillbeforelist := true;
	    endnofill( outfile )
	  end;
          listnestlevel := listnestlevel + 1;
          numberofelements[listnestlevel] := 0;
	  if n = 3 then
	  begin
	    q := quotedcharacter( arg[3] );
	    writeln(outfile,'\begin{itemize} % list nest ',listnestlevel:1);
	    writeln(    log,'\begin{itemize}');
	    liststate[listnestlevel] := itemize;
	    write(outfile,'\item ');          
	    outputfirstitem[listnestlevel] := true
	  end
	  else
	  begin
	    writeln(outfile,'\begin{enumerate} % list nest ',listnestlevel:1);
	    writeln(    log,'\begin{enumerate}');
	    liststate[listnestlevel] := enumerate;
	    write(outfile,'\item ');          
	    outputfirstitem[listnestlevel] := true
	  end
	end;
      
     { ***** END LIST ***** }
    72 : begin                   
           if listnestlevel > 0 then 
           begin
	     case liststate[listnestlevel] of
	        nostate   : writeln(outfile,'% - RNOTOTEX - close on list not open');
	        itemize    : writeln(outfile,'\end{itemize} % - list nest ',listnestlevel:1);
	        enumerate  : writeln(outfile,'\end{enumerate} % - list nest ',listnestlevel:1)
	     end;
	     case liststate[listnestlevel] of          
	        nostate   : writeln(    log,'% - RNOTOTEX - close on list not open');
	        itemize    : writeln(    log,'\end{itemize}');
	        enumerate  : writeln(    log,'\end{enumerate}')
	     end;
             numberofelements[listnestlevel] := 0;
             liststate[listnestlevel] := nostate;
	     outputfirstitem[listnestlevel] := false;
   	     listnestlevel := listnestlevel - 1;
	     if (listnestlevel = 1) and (nofillbeforelist) then
	     begin
	        nofillbeforelist := false;
	        beginnofill( outfile )
	     end
           end
	   else
	   begin
	      writeln(outfile,'% - RNOTOTEX end list for none started');
	      writeln(    log,'% - RNOTOTEX end list for none started')
	   end
	 end;
                                         
     { ***** LIST ELEMENT ***** }
    73 : begin                           
           if listnestlevel > 0 then
	   begin
             if liststate[listnestlevel] = nostate then
             begin
	        writeln(outfile,'% - RNOTOTEX - list element for non-existant-list');
	        writeln(    log,'% - RNOTOTEX - list element for non-existant-list')
             end
	     else
             begin
	       if not outputfirstitem[listnestlevel] then
	       begin
	         write(outfile,'\item ');
    	         writeln(    log,'\item ')
	       end
	       else
	         outputfirstitem[listnestlevel] := false;
               numberofelements[listnestlevel] := numberofelements[listnestlevel] + 1
             end
           end                   
           else
           begin
	     writeln(outfile,'% - RNOTOTEX - list element for unopened-list');
	     writeln(    log,'% - RNOTOTEX - list element for unopened-list')
           end                                               
 	 end;
               
     { ***** NUMBER LIST ***** }
    74 : begin
	   newintvalue(arg[2], numberlist.listlevel, modified, extractedvalue);
	   newintvalue(arg[3], numberlist.valuetoset, modified, extractedvalue);
	   if (numberlist.listlevel > 0) and ( numberlist.listlevel < 5) then
	     case numberlist.valuetoset of
	        1 : adjustcounter(outfile, modified, numberlist.valuetoset,extractedvalue,'enumi');
	        2 : adjustcounter(outfile, modified, numberlist.valuetoset,extractedvalue,'enumii');
	        3 : adjustcounter(outfile, modified, numberlist.valuetoset,extractedvalue,'enumiii');
	        4 : adjustcounter(outfile, modified, numberlist.valuetoset,extractedvalue,'enumiv')
	     end                     
	 end;

      { ***** DISPLAY ELEMENTS ***** }
     75 : noconversion;

      { ***** NOTE ***** }
     76 : begin
            if not inmarginpar then
	    begin
	      writeln(outfile,'\marginpar{\em ');
	      writeln(    log,'\marginpar{\em ');
	      inmarginpar := true;
	      if n > 1 then
	      begin 
	        dumpthelist(outfile, dsrlist);
	        dumpthelist(    log, dsrlist);
	        inmarginpar := false;
	        c(outfile)
              end
            end
	    else
	    begin
	       writeln(outfile,'% RNOTOTEX - marginpar already active');
	       writeln(    log,'% RNOTOTEX - marginpar already active')
	    end
	  end;

      { ***** END NOTE ***** }
     77 : begin            
            if inmarginpar then
            begin
	      writeln(outfile,'} % - end of margin par ');
	      writeln(    log,'} % - end of margin par ')
            end
	    else
	    begin
	       writeln(outfile,'% RNOTOTEX - marginpar not active');
	       writeln(    log,'% RNOTOTEX - marginpar not active')
	    end;
	    inmarginpar := false
	  end;

      { ***** FOOTNOTE ***** }
     78 : begin
            if not infootnote then
	    begin
	      write(outfile,'\footnote{');
	      writeln(    log,'\footnote{');
     	      infootnote := true
            end
	    else
	    begin
	      writeln(outfile,'% RNOTOTEX - already in footnote');
	      writeln(    log,'% RNOTOTEX - already in footnote')
            end
	  end;

      { ***** END FOOTNOTE ***** }
     79 : begin 
     	    if infootnote then
            begin              
	       writeln(outfile,'} % - end of footnote');
	       writeln(    log,'} % - end of footnote')
	    end
            else
	    begin
	       writeln(outfile,'% RNOTOTEX - footnote not active');
	       writeln(    log,'% RNOTOTEX - footnote not active')
            end;
	    infootnote := false
	  end;

      { ***** CHAPTER ***** }
     80 : begin 
            if not startedwithfill then
	       endnofill(outfile);
	    write(outfile,'\chapter{');
	    write(    log,'\chapter{');
	    dumpthelist(outfile, nextinlist(dsrlist));
	    dumpthelist(    log, nextinlist(dsrlist));
	    c(outfile);
	    if not startedwithfill then
	      beginnofill(outfile);
	  end;

      { ***** NUMBER CHAPTER ***** }
     81 : begin
	     newcountparameter(arg[n], numberchapter, modified, extractedvalue, class);
	     adjustcounter(outfile, modified, numberchapter, extractedvalue,'chapter')
	  end;                             
                                 
      { ***** DISPLAY CHAPTER ***** }
     82 : begin
	    newstyleparameter(arg[n], displaychapter);
	    adjuststyle(outfile, displaychapter, 'chapter')
	  end;

       { ***** HEADER LEVEL ***** }
      83 : begin                             
	     newintvalue(arg[2], nestlevel, modified, extractedvalue);
	     if modified <> nochange then
	        startindex := 3
	     else
	     begin                         
	       newintvalue(arg[3], nestlevel, modified, extractedvalue);
	       startindex := 4
	     end;
	     if modified <> nochange then
	     begin
	        if (nestlevel > 0) and (nestlevel < 7) then
	        begin
	          case nestlevel of 
	            1 : write(outfile,'\section{');
	            2 : write(outfile,'\subsection{');
	            3 : write(outfile,'\subsubsection{');
	            4 : write(outfile,'\paragraph{');
	            5 : write(outfile,'\subparagraph{');
	            6 : write(outfile,'\P ')
	          end;
	          case nestlevel of 
	            1 : write(    log,'\section{');
	            2 : write(    log,'\subsection{');
	            3 : write(    log,'\subsubsection{');
	            4 : write(    log,'\paragraph{');
	            5 : write(    log,'\subparagraph{');
	            6 : write(    log,'\P ')
	          end;
	          for i := startindex to n do
                  begin
	            texwritearg(outfile, arg[i] );
	            texwritearg(    log, arg[i] )
                  end;
	          if nestlevel < 6 then
	            c(outfile);
           	  headerlevel[nestlevel].value := headerlevel[nestlevel].value + 1
	        end
             end
           end;
           
       { ***** NUMBER LEVEL ***** }
      84 : begin  
	     startindex := -1; 
	     if  n = 7 then startindex := 2;
	     if  n = 8 then startindex := 3;
	     if startindex <> -1 then
	     begin
     	       for i := startindex to (startindex + 5) do 
	       begin                      
	         j := i - startindex + 1;
	         newintvalue(arg[i], headerlevel[j].value, modified,extractedvalue);
	          case j of
	            1 : adjustcounter(outfile, modified, headerlevel[1].value,extractedvalue,'section');
	            2 : adjustcounter(outfile, modified, headerlevel[2].value,extractedvalue,'subsection');
	            3 : adjustcounter(outfile, modified, headerlevel[3].value,extractedvalue,'subsubsection');
	            4 : adjustcounter(outfile, modified, headerlevel[4].value,extractedvalue,'paragraph');
	            5 : adjustcounter(outfile, modified, headerlevel[5].value,extractedvalue,'subparagraph');
	            6 : noconversion
	          end   
	       end
             end
	   end;

        { ***** STYLE HEADERS ***** }
       85 : noconversion;

        { ***** DISPLAY LEVELS ***** }
       86 : begin  
	     startindex := -1; 
	     if  n = 7 then startindex := 2;
	     if  n = 8 then startindex := 3;
	     if startindex <> -1 then
	     begin
     	       for i := startindex to (startindex + 5) do 
	       begin                      
	         j := i - startindex + 1;
	         newstyleparameter(arg[i], headerlevel[j].display);
	          case j of                     
	            1 : adjuststyle(outfile, headerlevel[1].display, 'section');
	            2 : adjuststyle(outfile, headerlevel[2].display, 'subsection');
	            3 : adjuststyle(outfile, headerlevel[3].display, 'subsubsection');
	            4 : adjuststyle(outfile, headerlevel[4].display, 'paragraph');
	            5 : adjuststyle(outfile, headerlevel[5].display ,'subparagraph');
	            6 : noconversion
	          end
	       end      
             end
	    end;                     
    
       { ***** APPENDIX ***** }
      87 : begin
	     write(outfile,'\chapter{APPENDIX ');
	     write(    log,'\chapter{APPENDIX ');
	     if n >= 2 then
	     begin
	       write(outfile,': ');
	       write(    log,': ');
	       dumpthelist(outfile, nextinlist(dsrlist));
	       dumpthelist(    log, nextinlist(dsrlist))
	     end;
	     c(outfile)
	   end;

       { ***** NUMBER APPENDIX ***** }
      88 : begin
	     newcountparameter(arg[n], numberappendix, modified, extractedvalue,class);
	     adjustcounter(outfile, modified, numberappendix, extractedvalue, 'chapter')
	   end;

       { ***** DISPLAY APPENDIX ***** }
      89 : begin
	     newstyleparameter(arg[n], displayappendix);
	     adjuststyle(outfile, displayappendix, 'chapter')
	   end;
                             
       { ***** STANDARD ***** }
      90 : noconversion;

       { ***** COMMENT ***** }
      91 : begin
	      write(outfile,'% ');
	      dumpthelist(outfile, nextinlist(dsrlist));
	      write(    log,'% ');
	      dumpthelist(    log, nextinlist(dsrlist))
	   end;

       { ***** REQUIRE ***** }
      92 : begin
	     write(outfile,'%%%%%% REQUIRE WAS HERE %%%%% \input {');
	     dumpthelist(outfile, nextinlist(dsrlist));
	     write(    log,'\input {');
	     dumpthelist(    log, nextinlist(dsrlist));
	     c(outfile)
	   end;

       { ***** CONTROL CHARACTERS ***** }
      93 : noconversion;

       { ***** NO CONTROL CHARACTERS ***** }
      94 : noconversion;

       { ***** IF ***** }
      95 : noconversion;

       { ***** ELSE ***** }
      96 : noconversion;

       { ***** END IF ***** }
      97 : noconversion;

       { ***** IFNOT ***** }
      98 : noconversion;

       { ***** VARIABLE ***** }
      99 : noconversion;

       { ***** SET DATE ***** }
     100 : noconversion;

       { ***** SET TIME ***** }
     101 : noconversion;

       { ***** FLAGS ALL ***** }
     102 : begin
	     for f := control to substitute do
	        turnflagon( f )
	   end;
   
       { ***** NO FLAGS ALL ***** }
     103 : begin
	     for f := control to substitute do
	        turnflagoff( f );
	     turnflagon( control )
	   end;               
 
       { ***** NO FLAGS CONTROL ***** }
     104 : turnflagoff( control );

       { ***** FLAGS CONTROL ***** }
     105 : flagchange(control, arg[n]);

       { ***** NO FLAGS UPPERCASE ***** }
     106 : turnflagoff( uppercase );

       { ***** FLAGS UPPERCASE ***** }
     107 : flagchange( uppercase, arg[n]);

       { ***** NO FLAGS LOWERCASE ***** }
     108 : turnflagoff( lowercase );

       { ***** FLAGS LOWERCASE ***** }
     109 : flagchange( lowercase, arg[n]);

       { ***** NO FLAGS QUOTE ***** }
     110 : turnflagoff( quote );
	                          
       { ***** FLAGS QUOTE ***** }
     111 : flagchange( quote, arg[n] );

       { ***** NO FLAGS SPACE ***** }
     112 : turnflagoff( space );

       { ***** FLAGS SPACE ***** }
     113 : flagchange( space, arg[n] );

       { ***** NO FLAGS UNDERLINE ***** }
     114 : turnflagoff( underline );

       { ***** FLAGS UNDERLINE ***** }
     115 : flagchange( underline, arg[n] );
           
       { ***** NO FLAGS BOLD ***** }
     116 : turnflagoff( bold );

       { ***** FLAGS BOLD ***** }
     117 : flagchange( bold, arg[n] );

       { ***** NO FLAGS OVERSTRIKE ***** }
     118 : turnflagoff( overstrike );

       { ***** FLAGS OVERSTRIKE ***** }
     119 : flagchange( overstrike, arg[n] );

       { ***** NO FLAGS HYPHENATE ***** }        
     120 : turnflagoff( hyphenate );

       { ***** FLAGS HYPHENATE ***** }
     121 : flagchange( hyphenate, arg[n] );

       { ***** NO FLAGS CAPITALIZE ***** }
     122 : turnflagoff( capitalize );

       { ***** FLAGS CAPITALIZE ***** }
     123 : flagchange( capitalize, arg[n] );

       { ***** NO FLAGS END FOOTNOTE ***** }
     124 : turnflagoff( endfootnote );

       { ***** FLAGS END FOOTNOTE ***** }
     125 : flagchange( endfootnote, arg[n] );

       { ***** NO FLAGS COMMENT ***** }
     126 : turnflagoff( comment );

       { ***** FLAGS COMMENT ***** }
     127 : flagchange( comment, arg[n] );

       { ***** NO FLAGS SUBSTITUTE ***** }
     128 : turnflagoff( substitute );

       { ***** FLAGS SUBSTITUTE ***** }
     129 : flagchange( substitute, arg[n] );
         
       { ***** INDEX ***** }
     130 : begin
	     write(outfile,'\index{');
	     dumpthelist(outfile, nextinlist(dsrlist));
	     write(    log,'\index{');
	     dumpthelist(    log, nextinlist(dsrlist));
	     c(outfile)
           end
                                              
end; {case of tex index extracted}	


routineexit : nullstatement
end;
                                                                     


[GLOBAL] PROCEDURE putsecondarytexcommand(var outfile : text;
	                          var nextcommand : integer );
begin 

  if nextcommand = 40 {centering}      then  
  begin      
      if centering then
      begin
        centering := false;
        writeln(outfile,'\end{centering}');
        if startnofillagain then
        begin
	  startnofillagain := false;
	  beginnofill( outfile )
        end
      end
      else
      begin
	writeln(outfile,'% RNOTOTEX - end centering when centering not-active');	
	writeln(    log,'% RNOTOTEX - end centering when centering not-active')
      end
  end;
  if nextcommand = 44 {rightjustify}  then
  begin  
      if flushright then
      begin
        flushright := false;
        writeln(outfile,'\end{flushright}');
        if startnofillagain then
        begin
	  startnofillagain := false;
	  beginnofill( outfile )
        end
      end
      else
      begin
        writeln(outfile,'% RNOTOTEX - end flushright when not active');
        writeln(    log,'% RNOTOTEX - end flushright when not active')
      end
  end;

  nextcommand := indexofunknowntexcommand

end;





END.