summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/support/latex2man/latex2man.html
blob: 7aee17dfc6c3a30f2e209ef235abdd1d86f9c424 (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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!-- Manual page created with latex2man on Di 5. Jun 20:58:08 CEST 2018
** Author of latex2man: Juergen.Vollmer@informatik-vollmer.de
** NOTE: This file is generated, DO NOT EDIT. -->
<html>
<head><title>LATEX2MAN</title>
<link href="latex2man.css" rel="stylesheet" type="text/css">
</head><body>
<h1 class="titlehead">
LaTeX2man -<br>
A Documentation Tool 
</h1>
<h4 class="authorhead">Dr.&nbsp;J&uuml;rgen Vollmer </h4>
<h4 class="datehead">2018/06/05</h4>
<h4 class="versionhead">Version 1.27</h4>
<p>
<font class="progname">Latex2man</font>
is a tool to translate UNIX manual pages written with 
LaTeXinto a format understood by the UNIX <font class="commandname">man</font>(1)-command.
Alternatively HTML, TexInfo, or LaTeX code can be produced too. 
Output of parts of the text may be suppressed using the conditional text 
feature (for this, LaTeX generation may be used). 
<h3>Table of Contents</h3>
<ul>
<li><a href="#section_1">Synopsis </a></li>
<li><a href="#section_2">Description </a></li>
<li><a href="#section_3">Options </a></li>
<li><a href="#section_4">Files </a></li>
<li><a href="#section_5">See Also </a></li>
<li><a href="#section_6">LaTeX commands</a>
<ul>
<li><a href="#section_7">Package Options </a></li>
<li><a href="#section_8">Package Specific Environments </a></li>
<li><a href="#section_9">Accepted LaTeX Environments</a></li>
<li><a href="#section_10">Package Specific Macros </a></li>
<li><a href="#section_11">Accepted Macros from the rcsinfo Package </a></li>
<li><a href="#section_12">Accepted LaTeX Macros</a></li>
<li><a href="#section_13">Conditional Text </a></li>
<li><a href="#section_14">Translation of User Defined Macros </a></li>
<li><a href="#section_15">Verbatim Environment </a></li>
<li><a href="#section_16">Subsection works </a>
<ul>
<li><a href="#section_17">Subsubsection works </a></li>
<li><a href="#section_18">Subsubsection still works </a></li>
</ul>
<li><a href="#section_19">General Remarks </a></li>
</ul>
<li><a href="#section_20">CSS classnames </a></li>
<li><a href="#section_21">Some Bug Fix Tests </a></li>
<li><a href="#section_22">Requirements </a></li>
<li><a href="#section_23">Changes </a></li>
<li><a href="#section_24">Version </a></li>
<li><a href="#section_25">License and Copyright </a></li>
<li><a href="#section_26">Author </a></li>
</ul>
<p>
<h2 class="sectionname"><a name="section_1">Synopsis</a></h2>

<p>
<font class="progname">latex2man</font>
[<font class="optstyle">-t</font><font class="argstyle">transfile</font>]
[<font class="optstyle">-c</font><font class="argstyle">CSSfile</font>]
[<font class="optstyle">-HMTL</font>]
[<font class="optstyle">-h</font>]
[<font class="optstyle">-V</font>]
[<font class="optstyle">-C</font><font class="argstyle">name</font>]
[<font class="optstyle">-a</font><font class="argstyle">char</font>]
<font class="argstyle">infile</font>
<font class="argstyle">outfile</font>
<p>
<h2 class="sectionname"><a name="section_2">Description</a></h2>

<font class="progname">Latex2man</font>
reads the file <font class="argstyle">infile</font>
and writes <font class="argstyle">outfile</font>.
The 
input must be a LaTeX document using the <font class="progname">latex2man</font>
LaTeXpackage. 
<font class="progname">Latex2man</font>
translates that document into the <font class="commandname">troff</font>(1)
format using 
the <font class="optstyle">-man</font>
macro package. 
<p>
Using the <font class="optstyle">-H</font>
option, HTML code can be produced, instead of 
<font class="commandname">troff</font>(1).
With this option you can, optionally, specify a <font class="argstyle">CSSfile</font>
as an argument. 
CSS (Cascading Style Sheets) allows you to control the appearance of the resulting HTML page. 
See below for the names of CSS classes that are included in the HTML tags as attributes. 
<p>
Using the <font class="optstyle">-T</font>
option, TexInfo code can be produced, instead of 
<font class="commandname">troff</font>(1).
<p>
Using the <font class="optstyle">-M</font>
option, <font class="commandname">troff</font>(1)
input is produced. 
<p>
Using the <font class="optstyle">-L</font>
option, LaTeX ouput can be produced, instead of 
<font class="commandname">troff</font>(1).
<p>
<h2 class="sectionname"><a name="section_3">Options</a></h2>

<dl compact>
<dt><font class="optstyle">-t</font><font class="argstyle">transfile</font>
</dt>
<dd> Translation for user defined LaTeX macros. 
</dd>
<dt><font class="optstyle">-c</font><font class="argstyle">CSSfile</font>
</dt>
<dd> If you use the <font class="optstyle">-H</font>
you can also specify a file that contains CSS 
style sheets. The link to the CSS file is inserted into the generatedHTML output using the 
specified <font class="argstyle">CSSfile</font>
filename. 
</dd>
<dt><font class="optstyle">-M</font>
</dt>
<dd> Produce output suitable for the <font class="commandname">man</font>(1)
command (default). 
</dd>
<dt><font class="optstyle">-H</font>
</dt>
<dd> Instead of producing output suitable for the <font class="commandname">man</font>(1)
command, HTML code is produced (despite the name of the command). 
</dd>
<dt><font class="optstyle">-T</font>
</dt>
<dd> Instead of producing output suitable for the <font class="commandname">man</font>(1)
command, TexInfo code is produced (despite the name of the command). The 
generated <font class="filename">.texi</font>-file
may be processed with <font class="commandname">makeinfo</font>(1)
(to produce an <font class="filename">.info</font>-file)
which in turn may be installed using 
<font class="commandname">install-info</font>(1).
The Info tags <tt>@dircategory</tt> and 
<tt>@direntry</tt> are provided. 
</dd>
<dt><font class="optstyle">-L</font>
</dt>
<dd> The LaTeX source is written to the <font class="argstyle">outfile</font>.
This is 
useful in conjunction with the <font class="optstyle">-C</font><font class="argstyle">name</font>
option. 
</dd>
<dt><font class="optstyle">-C</font><font class="argstyle">name</font>
</dt>
<dd> Output the conditional text for <font class="argstyle">name</font>.
If more 
than one name should be given use quotes: <font class="optstyle">-C</font><font class="argstyle">'name1 name2 ...'</font><br>

The following names are defined automatically: 
<ul compact>
<li><font class="optstyle">-H</font> defines <tt>HTML</tt>
</li>
<li><font class="optstyle">-T</font> defines <tt>TEXI</tt>
</li>
<li><font class="optstyle">-M</font> defines <tt>MAN</tt>
</li>
<li><font class="optstyle">-L</font> defines <tt>LATEX</tt>
</li>
</ul>
</dd>
<dt><font class="optstyle">-a</font><font class="argstyle">char</font>
</dt>
<dd> Is used only in conjunction with -T.<br>

Background:<br>

TexInfo ignores all blanks before the first word on a new line. In order 
to produce some additional space before that word (using \SP) some 
character has to be printed before the additional space. By default this 
is a . (dot). The <font class="argstyle">char</font>
specifies an alternative for that first 
character. Giving a blank to 
<font class="optstyle">-a</font>
supresses the indentation of a line.<br>

Note: only for the first \SP of a series that <font class="argstyle">char</font>
is printed. 
</dd>
<dt><font class="optstyle">-h</font>
</dt>
<dd> Show a help text. 
</dd>
<dt><font class="optstyle">-V</font>
</dt>
<dd> Show version information. 
</dd>
</dl>
<p>
<h2 class="sectionname"><a name="section_4">Files</a></h2>

<p>
<dl compact>
<dt><font class="filename">latex2man.tex</font>
</dt>
<dd> The LaTeX file containing this Man-page. 
</dd>
<dt><font class="filename">latex2man.inc</font>
</dt>
<dd> A file read with <tt>\input{..}</tt> . 
</dd>
<dt><font class="filename">latex2man.sty</font>
</dt>
<dd> The LaTeX package defining the environments and 
commands. 
</dd>
<dt><font class="filename">latex2man.cfg</font>
</dt>
<dd> The configuration file for <font class="progname">Latex2man</font>
LaTeX-package.
</dd>
<dt><font class="filename">latex2man.css</font>
</dt>
<dd> File containing example CSS definitions. 
</dd>
<dt><font class="filename">latex2man.trans</font>
</dt>
<dd> File containing example translations of user 
defined LaTeX macros. 
</dd>
<dt><font class="filename">fancyheadings.sty</font>
</dt>
<dd> A LaTeX package used to typeset head- and 
foot lines. 
</dd>
<dt><font class="filename">fancyhdr.sty</font>
</dt>
<dd> A LaTeX package used to typeset head- and foot 
lines. 
</dd>
<dt><font class="filename">rcsinfo.sty</font>
</dt>
<dd> A LaTeX package used to extract and use RCS version 
control information in LaTeX documents. 
<p>
</dd>
<dt><a class="urlstyle" href ="latex2man.pdf"><tt>latex2man.pdf</tt></a>
</dt>
<dd> The PDF version of this document. 
</dd>
</dl>
<p>
<h2 class="sectionname"><a name="section_5">See Also</a></h2>

<p>
LaTeX,TexInfo, <font class="commandname">troff</font>(1),
<font class="commandname">groff</font>(1),
<font class="commandname">makeinfo</font>(1).
<p>
<h2 class="sectionname"><a name="section_6">LaTeX commands</a></h2>

<p>
The LaTeX package <tt>latex2man</tt>
is used to write the Man-pages with 
LaTeX.Since we translate into other text formats, not all LaTeX stuff can 
be translated. 
<p>
<h4 class="subsectionname"><a name="section_7">Package Options</a></h4>

The <tt>latex2man</tt>
package accepts the following options: 
<p>
<dl compact>
<dt>fancy</dt>
<dd> use the LaTeX package <tt>fancyheadings</tt>.
</dd>
<dt>fancyhdr</dt>
<dd> use the LaTeX package <tt>fancyhdr</tt>.
</dd>
<dt>nofancy</dt>
<dd> neither the LaTeX package <tt>fancyheadings</tt>
nor 
<tt>fancyhdr</tt>
are used. 
</dd>
</dl>
<p>
The default option may be specified in the file <tt>latex2man.cfg</tt>.
<p>
<h4 class="subsectionname"><a name="section_8">Package Specific Environments</a></h4>

<p>
The following environments are provided by the package: 
<dl compact>
<dt>\begin{Name}{chapter}{name}{author}{info}{title} </dt>
<dd> The 
<tt>Name</tt>
environment takes five arguments: 1.  the Man-page chapter, 
2.  the name of the Man-page, 3.  the author, 4.  some short information 
about the tool printed in the footline of the Man-page, and 5.  a text 
which is used as title, for HTML and LaTeX (it's ignored for output of 
the Man-page or TeXinfo. The <tt>Name</tt>
environment must be the first 
environment in the document. Processing starts with this environment. Any 
text before this is ignored (exception: the <tt>setVersion</tt> and 
<tt>setDate</tt> commands). (Note: all arguments of \begin{Name} must 
be written on one line). 
</dd>
<dt>\begin{Table}[width]{columns}</dt>
<dd> The <tt>Table</tt>
environment takes two arguments: the first optional one specifies 
a width of the last column, the second one gives the number of columns. 
For example: 
<p>
<tt>\begin{Table}[2cm]{3}</tt> <br>

<tt>Here &amp; am &amp; I \\\hline</tt> <br>

<tt>A 1 &amp; A 2 &amp; A 3 1 2 3 4 5 A 3 1 2 3 4 5 \\</tt> <br>

<tt>B 1 &amp; B 2 &amp; B 3 \\</tt> <br>

<tt>\end{Table}</tt> 
<p>
will be typeset as: 
<p>
<table summary="table" class="tablestyle">
<tr class="rowstyle">
<td class="cellstyle">Here </td>
<td class="cellstyle"> am </td>
<td class="cellstyle"> I </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">A 1 </td>
<td class="cellstyle"> A 2 </td>
<td class="cellstyle"> A 3 1 2 3 4 5 A 3 1 2 3 4 5</td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">B 1 </td>
<td class="cellstyle"> B 2 </td>
<td class="cellstyle"> B 3 </td>
</tr>

</table>
<p>
If no optional <em>width</em>
argument is given, all entries are 
typeset left justified. 
The <em>width</em>
is a length measured absolutly in <em>cm</em>.
Processing with LaTeX a <tt>p{width}</tt> column is typeset 
as last column. The translation to <font class="commandname">troff</font>(1)
commands 
results in a <tt>lw(width)</tt>
column specification. Translating 
to HTML and TexInfo ignores the <em>width</em>
parameter. 
<p>
<tt>\hline</tt> may be used. 
<p>
If the Man-page is formatted with <font class="commandname">troff</font>(1)
and tables are used, the 
<font class="commandname">tbl</font>(1)
preprocessor should be called, usually by giving 
a <font class="optstyle">-t</font>
to the call of <font class="commandname">troff</font>(1).
When viewing the generated 
manula page using <font class="commandname">man</font>(1),
<font class="commandname">tbl</font>(1)
is called automatically. 
</dd>
<dt>\begin{Description}</dt>
<dd> is the same as \begin{description} 
</dd>
<dt>\begin{Description}[label]</dt>
<dd> is similar to 
\begin{description}, but the item labels have at minimum the size 
of the (optional) word <em>label</em>.
The difference is visible only 
in the DVI and PDF-output, not in the troff, TexInfo or HTML output. 
<dl compact>
<dt>a</dt>
<dd> |a <tt>\begin{description}</tt> 
</dd>
<dt>ab</dt>
<dd> |ab 
</dd>
<dt>abc</dt>
<dd> |abc 
</dd>
</dl>
<dl compact>
<dt>a</dt>
<dd> |a <tt>\begin{Description}</tt> 
</dd>
<dt>ab</dt>
<dd> |ab 
</dd>
<dt>abc</dt>
<dd>| abc 
</dd>
</dl>
<dl compact>
<dt>a</dt>
<dd> |a <tt>\begin{Description}[aa]</tt> 
</dd>
<dt>ab</dt>
<dd> |ab 
</dd>
<dt>abc</dt>
<dd> |abc 
</dd>
</dl>
</dd>
</dl>
<p>
<h4 class="subsectionname"><a name="section_9">Accepted LaTeX Environments</a></h4>

<p>
The following environments are accepted: 
<ul compact>
<li><tt>description</tt>
</li>
<li><tt>enumerate</tt>
</li>
<li><tt>itemize</tt>
</li>
<li><tt>verbatim</tt>
</li>
<li><tt>center</tt>
</li>
</ul>
<p>
They may be nested: 
<ul compact>
<li>Itemize and nested center: 
<div align=center>
A centered line.<br>

Another centered line. 
</div>
</li>
<li>Another item an nested enumerate 
<ol compact>
<li value =1>a 
</li>
<li value =2>b 
</li>
</ol>
</li>
</ul>
<p>
<h4 class="subsectionname"><a name="section_10">Package Specific Macros</a></h4>

<p>
The following commands are provided: 
<dl compact>
<dt>\Opt{option}</dt>
<dd> Option: <tt>\Opt{-o}</tt> will be typeset as <font class="optstyle">-o</font>.
</dd>
<dt>\Arg{argument}</dt>
<dd> Argument: <tt>\Arg{filename}</tt> will be typeset as 
<font class="argstyle">filename</font>.
</dd>
<dt>\OptArg{option}{argument}</dt>
<dd> Option with Argument:<br>

<tt>\OptArg{-o}{filename}</tt> will be typeset as <font class="optstyle">-o</font><font class="argstyle">filename</font>.
</dd>
<dt>\OptoArg{option}{argument}</dt>
<dd> Option with optional Argument:<br>

<tt>\OptoArg{-o}{filename}</tt> will be 
typeset as <font class="optstyle">-o</font>[<font class="argstyle">filename</font>].
</dd>
<dt>\oOpt{option}</dt>
<dd> Optional option, e.g.  <tt>\oOpt{-o}</tt> will be 
typeset as [<font class="optstyle">-o</font>].
</dd>
<dt>\oArg{argument}</dt>
<dd> Optional argument, e.g.  <tt>\oArg{filename}</tt> 
will be typeset as [<font class="argstyle">filename</font>].
</dd>
<dt>\oOptArg{option}{argument}</dt>
<dd> Optional option with argument, e.g.<br>

<tt>\oOptArg{-o}{filename}</tt> will be typeset as [<font class="optstyle">-o</font><font class="argstyle">filename</font>].
</dd>
<dt>\oOptoArg{option}{argument}</dt>
<dd> Optional option with optional 
argument, e.g.<br>

<tt>\oOptoArg{-o}{filename}</tt> will be typeset as [<font class="optstyle">-o</font>[<font class="argstyle">filename</font>]].
</dd>
<dt>\File{filename}</dt>
<dd> used to typeset filenames, e.g.  
<tt>\File{filename}</tt> will be typeset as <font class="filename">filename</font>.
</dd>
<dt>\Prog{prog}</dt>
<dd> used to typeset program names, e.g.  
<tt>\Prog{latex2man}</tt> will be typeset as <font class="progname">latex2man</font>.
</dd>
<dt>\Cmd{command}{chapter}</dt>
<dd> used to typeset references to other 
commands, e.g.<br>

<tt>\Cmd{latex2man}{1}</tt> will be typeset as <font class="commandname">latex2man</font>(1).
</dd>
<dt>\Bar</dt>
<dd> is typeset as |.
</dd>
<dt>\Bs</dt>
<dd> (BackSlash) is typeset as \.
</dd>
<dt>\Tilde</dt>
<dd> is typeset as a ~.
</dd>
<dt>\Dots</dt>
<dd> is typeset as ...
</dd>
<dt>\Bullet</dt>
<dd> us typeset as *.
</dd>
<dt>\setVersion{..}</dt>
<dd> set <tt>..</tt> as version information. 
</dd>
<dt>\setVersionWord{..}</dt>
<dd> set <tt>..</tt> for the word <em>Version:</em>
in 
the footline.<br>

The default is <tt>\setVersionWord{Version:}</tt>. 
</dd>
<dt>\Version</dt>
<dd> returns the version information. 
</dd>
<dt>\setDate{..}</dt>
<dd> sets <tt>..</tt> as date information. 
</dd>
<dt>\Date</dt>
<dd> returns the date information. 
</dd>
<dt>\Email{..}</dt>
<dd> use to mark an Email address:<br>

<tt>\Email{Juergen.Vollmer@informatik-vollmer.de}</tt> is typeset as:<br>

<a class="emailstyle" href ="mailto:Juergen.Vollmer@informatik-vollmer.de">Juergen.Vollmer@informatik-vollmer.de</a>.
</dd>
<dt>\URL{..}</dt>
<dd> use to mark an URL: 
<tt>\URL{http://www.foo.de/\Tilde vollmer}</tt> is typeset as<br>

<a class="urlstyle" href ="http://www.foo.de/~vollmer"><tt>http://www.foo.de/~vollmer</tt></a>.
</dd>
<dt>\LatexManEnd</dt>
<dd> the input file is read and processed until reading 
end-of-file or<br>

<tt>\LatexManEnd</tt> (at the beginning of a line). 
LaTeXignores this command. 
</dd>
<dt>\Lbr, \Rbr</dt>
<dd> is typeset as [ and ] (these variants are 
needed only somtimes like in<br>

<tt>\item[FooBar\LBr xx \Lbr]</tt>. Usually <tt>[ ]</tt> will work. 
</dd>
<dt>\LBr, \RBr</dt>
<dd> is typeset as { and } (these variants are 
needed when using { or } as arguments to macros. 
</dd>
<dt>\Circum</dt>
<dd> is typeset as ^.
</dd>
<dt>\Percent</dt>
<dd> is typeset as %.
</dd>
<dt>\TEXbr</dt>
<dd> If processed with LaTeX causes a linebreak (i.e.  is 
equivalent to \\).In the output of <font class="progname">latex2man</font>
this macro is 
ignored. 
</dd>
<dt>\TEXIbr</dt>
<dd> If TexInfo output is generated, causes a linebreak (i.e.  is 
equivalent to \\),otherwise ignored. 
</dd>
<dt>\MANbr</dt>
<dd> If Man-Page output is generated, causes a linebreak (i.e.  is 
equivalent to \\),otherwise ignored. 
</dd>
<dt>\HTMLbr</dt>
<dd> If HTML output is generated, causes a linebreak (i.e.  is 
equivalent to \\),otherwise ignored. 
</dd>
<dt>\medskip</dt>
<dd> An empty line. 
</dd>
<dt>\SP</dt>
<dd> Produces some extra space, works also at the beginning of lines. 
The code of the second line looks like: 
<tt>\SP abc \SP\SP xx\\</tt>:<br>

abc &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xx<br>

&nbsp;&nbsp;abc &nbsp;&nbsp;&nbsp;&nbsp;xx<br>

&nbsp;&nbsp;&nbsp;&nbsp;abc &nbsp;&nbsp;xx 
<p>
Note: Due to some ``problems'' with TexInfo, the lines starting with 
<tt>\SP</tt>
have a leading . (dot) in the TexInfo output, 
see <font class="optstyle">-a</font><font class="argstyle">char</font>.
</dd>
</dl>
<p>
<h4 class="subsectionname"><a name="section_11">Accepted Macros from the rcsinfo Package</a></h4>

<p>
<dl compact>
<dt>\rcsInfo $Id ...$</dt>
<dd> if the LaTeX package <font class="filename">rcsinfo</font>
is used, 
this command is used to extract the date of the Man-page. 
</dd>
<dt>\rcsInfoLongDate</dt>
<dd> if the LaTeX package <font class="filename">rcsinfo</font>
is used, this 
command is used to typeset the date coded in the <tt>$Id ..$</tt> string. 
</dd>
</dl>
<p>
<h4 class="subsectionname"><a name="section_12">Accepted LaTeX Macros</a></h4>

<p>
The following standard LaTeX commands are accepted: 
<dl compact>
<dt>\section{..}</dt>
<dd> The <tt>section</tt>
macro takes one argument: the 
name of the Man-page section. Each Man-page consists of several sections. 
Usually there are the following sections in a Man-page: <em>Name</em>
(special handling as environment, c.f.  above), <em>Synopsis</em>,
<em>Description</em>,
<em>Options</em>,
<em>Files</em>,
<em>See Also</em>,
<em>Diagnostics</em>,
<em>Return Values</em>,
<em>Bugs</em>,
<em>Author</em>,
<em>version</em>,
etc. 
<p>
<em>Synopsis</em>
must be the first section after the <tt>Name</tt>
environment. 
<p>
Note: Do not use LaTeX-macrosin section names. 
</dd>
<dt>\subsection{..}</dt>
<dd> works as well as 
</dd>
<dt>\subsubsection{..}</dt>
<dd> those. 
</dd>
<dt>\emph{..}</dt>
<dd> <tt>\emph{example}</tt> is typeset as <em>example</em>.
</dd>
<dt>\textbf{..}</dt>
<dd> <tt>\textbf{example}</tt> is typeset as <strong>example</strong>.
</dd>
<dt>\texttt{..}</dt>
<dd><tt>\texttt{example}</tt> is typeset as <tt>example</tt>.
</dd>
<dt>\underline{..}</dt>
<dd><tt>\underline{example}</tt> is typeset as 
<u>example of underline</u>.
</dd>
<dt>\date{..}</dt>
<dd> uses <tt>..</tt> as date. 
</dd>
<dt>\verb+..+</dt>
<dd> but only + is allowed as delimiter. 
</dd>
<dt>$&lt;$</dt>
<dd> is typeset as &lt;. 
</dd>
<dt>$&gt;$</dt>
<dd> is typeset as &gt;. 
</dd>
<dt>$&lt;=$</dt>
<dd> is typeset as &lt;=. 
</dd>
<dt>$&gt;=$</dt>
<dd> is typeset as &gt;=. 
</dd>
<dt>$=$</dt>
<dd> is typeset as =. 
</dd>
<dt>$&lt;&gt;$</dt>
<dd> is typeset as &lt;&gt;. 
</dd>
<dt>$\ge$</dt>
<dd> is typeset as $&gt;$.
</dd>
<dt>$\le$</dt>
<dd> is typeset as $&lt;=$.
</dd>
<dt>$\leftarrow$</dt>
<dd> is typeset as $&lt;--$.
</dd>
<dt>$\Leftarrow$</dt>
<dd> is typeset as $&lt;==$.
</dd>
<dt>$\rightarrow$</dt>
<dd> is typeset as $--&gt;$.
</dd>
<dt>$\Rightarrow$</dt>
<dd> is typeset as $==&gt;$.
</dd>
<dt>\{</dt>
<dd> is typeset as {. 
</dd>
<dt>\}</dt>
<dd> is typeset as }. 
</dd>
<dt>\$</dt>
<dd> is typeset as $. 
</dd>
<dt>\$</dt>
<dd> is typeset as $,should be used inside macro 
arguments. 
</dd>
<dt>\_</dt>
<dd> is typeset as _. 
</dd>
<dt>\&amp;</dt>
<dd> is typeset as &amp;. 
</dd>
<dt>\#</dt>
<dd> is typeset as #. 
</dd>
<dt>\%</dt>
<dd> is typeset as %. 
</dd>
<dt>\,</dt>
<dd> is typeset as smaller blank - - (between the two -) 
</dd>
<dt>\-</dt>
<dd> is used to mark hyphenation in a word. 
</dd>
<dt>\\</dt>
<dd> is typeset as a linebreak or marks the end of a column in the 
<tt>Table</tt>
environment. 
</dd>
<dt>\</dt>
<dd> (a \ followed by a blank) is typeset as a blank, 
although it cannot be used at the beginning of a line to make indentation 
(see the <tt>\SP</tt>
command). 
</dd>
<dt>~</dt>
<dd> is typeset as a blank. 
</dd>
<dt>\copyright</dt>
<dd> is typeset as &copy;.
</dd>
<dt>\noindent</dt>
<dd> 
</dd>
<dt>\hline</dt>
<dd> inside a <tt>Table</tt>
environment. 
</dd>
<dt>\item</dt>
<dd> inside a <tt>itemize</tt>,
<tt>enumerate</tt>,
or 
<tt>description</tt>
environment. 
</dd>
<dt>\today</dt>
<dd> 05 June 2018 (see also the <tt>rcsinfo</tt>
LaTeXpackage). 
</dd>
<dt>\ss,\"a, ...</dt>
<dd> \ss = &szlig;, \"a= &auml;, \"o= &ouml;, \"u= &uuml;, 
\"A= &Auml;, \"O= &Ouml;, \"U= &Uuml;. It is allowed to surround these 
macros in { and } in all places, even inside other macros, e.g. 
<pre>
     \textbf{\"a\"o\"u\"A\"O\"U\ss}
     \textbf{\"a}{\"o}{\"u}{\"A}{\"O}{\"U}{\ss}}
     \textbf{äöüÄÖÜß}
</pre>
<p>
<strong>&auml;&ouml;&uuml;&Auml;&Ouml;&Uuml;&szlig; &auml;&ouml;&uuml;&Auml;&Ouml;&Uuml;&szlig; &auml;&ouml;&uuml;&Auml;&Ouml;&Uuml;&szlig;</strong>
<p>
If these letters are used in their LATIN-1 8-bit coding, they are 
translated into the equivalent letter of the desired output format. 
E.g. <tt>&Auml;</tt>
becomes <tt>&amp;Auml</tt>;
in HTML and <tt>@"A</tt>
in texinfo. 
</dd>
<dt>\input{..}</dt>
<dd> Read and process the given filename. 
</dd>
</dl>
<p>
Please note: the name of the LaTeX-macrosand its arguments must be contained in one line. 
<p>
<h4 class="subsectionname"><a name="section_13">Conditional Text</a></h4>

<p>
<font class="progname">latex2man</font>
preprocesses the LaTeX input to allow text to be used 
conditionally. A special sort of LaTeX comment is used for that purpose. 
<ul compact>
<li>%@% IF <em>condition</em> %@%
</li>
<li>%@% ELSE %@% 
</li>
<li>%@% END-IF %@% 
</li>
</ul>
<p>
A line must contain only such a comment and nothing else. <em>condition</em>
is 
a boolean expression containing ``names'' and operators. The names given with 
the <font class="optstyle">-C</font><font class="argstyle">name</font>
option have the value ``true'', while all other names 
occuring in the expression are assumed to be ``false''. If the evaluation of 
the boolean expression results in the value ``true'', the text in the 
``then''-part is used and the text in the optional ``else''-part is skipped 
(and vice versa). The <tt>IF/ELSE/END-IF</tt>
may be nested. As boolean 
operators the following are allowed: 
<p>
<table summary="table" class="tablestyle">
<tr class="rowstyle">
<td class="cellstyle">||</td>
<td class="cellstyle"> boolean or </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">&amp;&amp; </td>
<td class="cellstyle"> boolean and </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">! </td>
<td class="cellstyle"> negation 
</table>
<p>
( and ) for grouping are allowed. 
<p>
For example:<br>

%@% IF abc %@%<br>

<tt></tt>abc set<br>

<tt></tt>%@%  IF xyz %@%<br>

<tt></tt>xyz set<br>

<tt></tt>%@%  ELSE %@%<br>

<tt></tt>xyz NOT set<br>

<tt></tt>%@%  END-IF %@%<br>

%@% ELSE %@%<br>

<tt></tt>abc NOT set<br>

<tt></tt>%@%  IF xyz || !XYZ %@%<br>

<tt></tt>xyz OR !XYZ set<br>

<tt></tt>%@%  ELSE %@%<br>

<tt></tt>xyz OR !XYZ NOT set<br>

<tt></tt>%@%  END-IF %@%<br>

%@% END-IF %@%
<p>
Run this manual page through <font class="progname">latex2man</font>
with e.g.  
<font class="optstyle">-C</font><font class="argstyle">'abc XYZ'</font>
and have a look to the generated output. 
(If simply running the LaTeX-document through LaTeX,all lines are shown in the 
.dvi file).<br>

abc NOT set<br>

xyz OR !XYZ set<br>

<p>
To check the conditional text feature, when <font class="progname">latex2man</font>
is called with 
<dl compact>
<dt><font class="optstyle">-C</font><font class="argstyle">HTML</font>
</dt>
<dd> the lines 1a, 2b, 3b, and 4b; 
</dd>
<dt><font class="optstyle">-C</font><font class="argstyle">TEXI</font>
</dt>
<dd> the lines 1b, 2a, 3b, and 4b; 
</dd>
<dt><font class="optstyle">-C</font><font class="argstyle">MAN</font>
</dt>
<dd> the lines 1b, 2b, 3a, and 4b; 
</dd>
<dt><font class="optstyle">-C</font><font class="argstyle">LATEX</font>
</dt>
<dd> the lines 1b, 2b, 3b, and 4a; 
</dd>
<dt>calling LaTeX without preprocessing</dt>
<dd> all lines 
</dd>
</dl>
should be shown: 
<p>
1a. This text occurs only when viewing the HTML output. 
<p>
2b. The TEXI conditional was not set. 
<p>
3b. The MAN conditional was not set. 
<p>
4b. The LATEX conditional was not set. 
<p>
<h4 class="subsectionname"><a name="section_14">Translation of User Defined Macros</a></h4>

<p>
The user macro translation file (given by the [<font class="optstyle">-t</font><font class="argstyle">transfile</font>])
contains 
<font class="progname">Perl</font>
commands specifying the translation of LaTeX macros defined by 
the user. These macros may have none, one or two arguments. The following code 
is expected: 
<p>
<ul compact>
<li>Comments start with a # up to the end of the line. 
</li>
<li>For a macro <tt>\foo</tt> with no arguments, the following code must be 
specified: 
<dl compact>
<dt>Translation to Man-Pages</dt>
<dd> 
<tt>$manMacro{'foo'} = '...';</tt> 
</dd>
<dt>Translation to HTML</dt>
<dd> 
<tt>$htmlMacro{'foo'} = '...';</tt> 
</dd>
<dt>Translation to TexInfo</dt>
<dd> 
<tt>$texiMacro{'foo'} = '...';</tt> 
</dd>
</dl>
<p>
where <tt>...</tt> is the translation. 
<p>
</li>
<li>For a macro <tt>\foo{..}</tt> with one argument, the following code must be 
specified: 
<dl compact>
<dt>Translation to Man-Pages</dt>
<dd> 
<tt>$manMacro1a{'foo'} = '...';</tt><br>
 
<tt>$manMacro1b{'foo'} = '...';</tt> 
</dd>
<dt>Translation to HTML</dt>
<dd> 
<tt>$htmlMacro1a{'foo'} = '...';</tt><br>
 
<tt>$htmlMacro1b{'foo'} = '...';</tt> 
<p>
</dd>
<dt>Translation to TexInfo</dt>
<dd> 
<tt>$texiMacro1a{'foo'} = '...';</tt><br>
 
<tt>$texiMacro1b{'foo'} = '...';</tt> 
</dd>
</dl>
<p>
where <tt>...</tt> is the translation. The <tt>1a</tt> code is used before the 
argument, while <tt>1b</tt> is typeset after the argument is set. 
<p>
</li>
<li>For a macro <tt>\foo{..}{..}</tt> with two arguments, the following code 
must be specified: 
<dl compact>
<dt>Translation to Man-Pages</dt>
<dd> 
<tt>$manMacro2a{'foo'} = '...';</tt><br>
 
<tt>$manMacro2b{'foo'} = '...';</tt><br>
 
<tt>$manMacro2c{'foo'} = '...';</tt> 
</dd>
<dt>Translation to HTML</dt>
<dd> 
<tt>$htmlMacro2a{'foo'} = '...';</tt><br>
 
<tt>$htmlMacro2b{'foo'} = '...';</tt><br>
 
<tt>$htmlMacro2c{'foo'} = '...';</tt> 
</dd>
<dt>Translation to TexInfo</dt>
<dd> 
<tt>$texiMacro2a{'foo'} = '...';</tt><br>
 
<tt>$texiMacro2b{'foo'} = '...';</tt><br>
 
<tt>$texiMacro2c{'foo'} = '...';</tt> 
</dd>
</dl>
<p>
where <tt>...</tt> is the translation. The <tt>2a</tt> code is used before the 
first argument, <tt>2b</tt> between the two arguments and <tt>2c</tt> is 
typeset after the second argument is set. 
</li>
<li>The file <font class="filename">latex2man.trans</font> contains some example code.
</li>
</ul>
<p>
<h4 class="subsectionname"><a name="section_15">Verbatim Environment</a></h4>

<p>
<pre>
This
    {is}
        \texttt{a}
                  $test$
                         _of_
verbatim
&lt;this is no HTML tag&gt; and no @* TexInfo command
</pre>
<p>
<h4 class="subsectionname"><a name="section_16">Subsection works</a></h4>

<p>
This is a <tt>\subsection</tt>. 
<p>
<h5 class="subsubsectionname"><a name="section_17">Subsubsection works</a></h5>

<p>
This is a <tt>\subsubsection</tt>. 
<p>
<h5 class="subsubsectionname"><a name="section_18">Subsubsection still works</a></h5>

<p>
This is another <tt>\subsubsection</tt>. 
<p>
<h4 class="subsectionname"><a name="section_19">General Remarks</a></h4>

<p>
<ol compact>
<li value =1>Empty lines are typeset as paragraph separators. 
</li>
<li value =2>The arguments of the LaTeX commands must not be split over several 
lines. 
</li>
<li value =3>Do not nest calls to macros. 
</li>
<li value =4>Except the mentioned environment and macros, the usage of other LaTeX  
environments or macros are not translated. Their usage will cause garbage 
in the output. 
</li>
<li value =5><font class="progname">latex2man</font> requires Perl version &gt;= 5.0004_03.
</li>
<li value =6>If you want to install the system with the distributed <font class="filename">Makefile</font>,
you need GNU-<font class="progname">make</font>.
If you don't have it, you should execute the 
steps shown in the <font class="filename">Makefile</font>
manually. 
</li>
</ol>
<p>
<h2 class="sectionname"><a name="section_20">CSS classnames</a></h2>

<p>
The table below shows the names of CSS classes that will be included in the HTML tags as attributes. 
You can specify the CSS style properties in the <font class="argstyle">CSSfile</font>
for these classes: 
<p>
<table summary="table" class="tablestyle">
<tr class="rowstyle">
<td class="cellstyle"><strong>HTML tag</strong>
</td>
<td class="cellstyle"> <strong>Class</strong>
</td>
<td class="cellstyle"> <strong>Style applies to</strong></td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">body </td>
<td class="cellstyle"> </td>
<td class="cellstyle"> the body of the HTML page </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">h1 </td>
<td class="cellstyle"> titlehead </td>
<td class="cellstyle"> the title at the top of the HTML page specified as an argument to the <em>Name</em>
environment </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">h4 </td>
<td class="cellstyle"> authorhead </td>
<td class="cellstyle"> the author at the top of the HTML page specified as an argument to the <em>Name</em>
environment </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">h4 </td>
<td class="cellstyle"> datehead </td>
<td class="cellstyle"> the date at the top of the HTML page </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">h4 </td>
<td class="cellstyle"> versionhead </td>
<td class="cellstyle"> the man page version at the top of the HTML page specified as an argument to the <em>setVersion</em>
macro </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">h2 </td>
<td class="cellstyle"> sectionname </td>
<td class="cellstyle"> a section title specified as an argument to the <em>section</em>
macro </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">h4 </td>
<td class="cellstyle"> subsectionname </td>
<td class="cellstyle"> a subsection title specified as an argument to the <em>subsection</em>
macro </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">h5 </td>
<td class="cellstyle"> subsubsectionname </td>
<td class="cellstyle"> a subsubsection title specified as an argument to the <em>subsubsection</em>
macro </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">font </td>
<td class="cellstyle"> progname </td>
<td class="cellstyle"> a program name specified as an argument to the <em>Prog</em>
macro </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">font </td>
<td class="cellstyle"> filename </td>
<td class="cellstyle"> a file name specified as an argument to the <em>File</em>
macro </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">font </td>
<td class="cellstyle"> commandname </td>
<td class="cellstyle"> a command name specified as an argument to the <em>Cmd</em>
macro </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">font </td>
<td class="cellstyle"> textstyle </td>
<td class="cellstyle"> all text that is not an argument to some LaTeX or latex2man macro </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">font </td>
<td class="cellstyle"> optstyle </td>
<td class="cellstyle"> a name of an option specified as an argument to the <em>Opt</em>,
<em>oOpt</em>,
<em>OptArg</em>,
<em>oOptArg</em>
or <em>oOptoArg</em>
macros </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">font </td>
<td class="cellstyle"> argstyle </td>
<td class="cellstyle"> a name of an argument specified as an argument to the <em>Arg</em>,
<em>oArg</em>,
<em>OptArg</em>,
<em>oOptArg</em>
or <em>oOptoArg</em>
macros </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">a, font </td>
<td class="cellstyle"> urlstyle </td>
<td class="cellstyle"> a URL specified as an argument to the <em>URL</em>
macro </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">a, font </td>
<td class="cellstyle"> urlstyle.link </td>
<td class="cellstyle"> subclass of urlstyle class </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">a, font </td>
<td class="cellstyle"> urlstyle.visited </td>
<td class="cellstyle"> subclass of urlstyle class </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">a, font </td>
<td class="cellstyle"> urlstyle.hover </td>
<td class="cellstyle"> subclass of urlstyle class </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">a, font </td>
<td class="cellstyle"> emailstyle </td>
<td class="cellstyle"> an email specified as an argument to the <em>Email</em>
macro </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">a, font </td>
<td class="cellstyle"> emailstyle.link </td>
<td class="cellstyle"> subclass of emailstyle class </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">a, font </td>
<td class="cellstyle"> emailstyle.visited </td>
<td class="cellstyle"> subclass of emailstyle class </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">a, font </td>
<td class="cellstyle"> emailstyle.hover </td>
<td class="cellstyle"> subclass of emailstyle class </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">table </td>
<td class="cellstyle"> tablestyle </td>
<td class="cellstyle"> a table specified as a <em>Table</em>
environment </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">tr </td>
<td class="cellstyle"> rowstyle </td>
<td class="cellstyle"> a row of a table specified as a <em>Table</em>
environment </td>
</tr>

<tr class="rowstyle">
<td class="cellstyle">td </td>
<td class="cellstyle"> cellstyle </td>
<td class="cellstyle"> a cell of a table specified as a <em>Table</em>
environment </td>
</tr>

</table>
<p>
<h2 class="sectionname"><a name="section_21">Some Bug Fix Tests</a></h2>

<p>
<dl compact>
<dt>Leading . and '</dt>
<dd> 
Now leading . and ' in generation troff output should work propperly, 
since a <tt>\&amp;</tt> is added. Therfore the <tt>\Dot</tt> macro has been deleted.<br>

Thanks to <a class="emailstyle" href ="mailto:Frank.Schilder@Mathematik.Tu-Ilmenau.De">Frank.Schilder@Mathematik.Tu-Ilmenau.De</a>.<br>

Testcase 1: 
<dl compact>
<dt>'\n'</dt>
<dd> ... 
</dd>
</dl>
Testcase 2:<br>

<font class="filename">.foobar</font>
Testcase 3:<br>

...<p>
abc ...abc . efg ' 123 
<p>
</dd>
<dt>% in verbatim</dt>
<dd> A % in a \verb and verbatim-environment was not 
emitted correctly. Thanks to Aleksey Nogin <a class="emailstyle" href ="mailto:nogin@cs.caltech.edu">nogin@cs.caltech.edu</a>
for the bug report and bug fix. 
<p>
<tt>% abc</tt> 
<p>
<pre>
   % abc %
</pre>
<p>
but ignore comments following this: 
<p>
</dd>
</dl>
<p>
<h2 class="sectionname"><a name="section_22">Requirements</a></h2>

<p>
<dl compact>
<dt>Perl</dt>
<dd> <font class="progname">latex2man</font>
requires Perl version &gt;= 5.0004_03. 
</dd>
<dt>Make</dt>
<dd> If you want to install the system with the distributed 
<font class="filename">Makefile</font>,
you need GNU-<font class="progname">make</font>.
If you don't have it, you 
should execute the steps shown in the <font class="filename">Makefile</font>
manually. 
</dd>
<dt>LaTeX</dt>
<dd> LaTeX2e is required. 
</dd>
</dl>
<p>
<!-- *********************************** start of \input{latex2man.inc} -->
<h2 class="sectionname"><a name="section_23">Changes</a></h2>

Please check the file <a class="urlstyle" href ="latex2man-CHANGES.html"><tt>latex2man-CHANGES.html</tt></a>
for the list of changes and 
acknowledgment to people contributing bugfixes or enhancements. 
<!-- *********************************** end of \input{latex2man.inc} -->
<p>
<h2 class="sectionname"><a name="section_24">Version</a></h2>

<p>
Version: 1.27 of 2018/06/05.
<p>
<h2 class="sectionname"><a name="section_25">License and Copyright</a></h2>

<p>
<dl compact>
<dt>Copyright</dt>
<dd> &copy; 1998, Dr.&nbsp;J&uuml;rgen Vollmer, Am Rennbuckel 21, 
D-76185 Karlsruhe, Germany,<br>

<a class="emailstyle" href ="mailto:Juergen.Vollmer@informatik-vollmer.de">Juergen.Vollmer@informatik-vollmer.de</a>
<p>
The most recent version of <font class="progname">Latex2man</font>
may be found on my homepage<br>

<a class="urlstyle" href ="http://www.informatik-vollmer.de/software/latex2man.html"><tt>http://www.informatik-vollmer.de/software/latex2man.html</tt></a>.
<p>
</dd>
<dt>License</dt>
<dd> This program can be redistributed and/or modified under the 
terms of the LaTeX Project Public License Distributed from CTAN archives 
in directory <font class="filename">macros/latex/base/lppl.txt</font>;
either version 1 of the 
License, or any later version. 
<p>
</dd>
<dt>Misc</dt>
<dd> If you find this software useful, please send me a postcard from 
the place where you are living. 
</dd>
</dl>
<p>
<h2 class="sectionname"><a name="section_26">Author</a></h2>

<p>
Dr.&nbsp;J&uuml;rgen Vollmer <br>

Am Rennbuckel 21 <br>

D-76185 Karlsruhe <br>

Email: <a class="emailstyle" href ="mailto:Juergen.Vollmer@informatik-vollmer.de">Juergen.Vollmer@informatik-vollmer.de</a>
<br>
WWW: <a class="urlstyle" href ="http://www.informatik-vollmer.de"><tt>http://www.informatik-vollmer.de</tt></a>.
<p>
</body>
</html>
<!-- NOTE: This file is generated, DO NOT EDIT. -->