summaryrefslogtreecommitdiff
path: root/macros/texinfo/texinfo/tp/tests/coverage_macro.texi
blob: 61625a3101217ae5668a46ea705c4e9ad489e631 (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
@macro mymacro

<
>
"
&
'
`

``simple-double--three---four----''@*
code: @code{``simple-double--three---four----''} @*
asis: @asis{``simple-double--three---four----''} @*
strong: @strong{``simple-double--three---four----''} @*
kbd: @kbd{``simple-double--three---four----''} @*

`@w{}`simple-double-@w{}-three---four----'@w{}'@*

@cindex --option
@cindex ``
@findex ``
@findex --foption

@@"u @"u 
@@"@{U@} @"{U} 
@@~n @~n
@@^a @^a
@@'e @'e
@@=o @=o
@@`i @`i
@@'@{e@} @'{e}
@@'@{@@dotless@{i@}@} @'{@dotless{i}} 
@@dotless@{i@} @dotless{i}
@@dotless@{j@} @dotless{j}
@@`@{@@=E@} @`{@=E} 
@@l@{@} @l{}
@@,@{@@'C@} @,{@'C}
@@,c @,c
@@,c@@"u @,c@"u @*

@@U@{0075@} @U{0075}

@@* @*
@@ followed by a space
@ 
@@ followed by a tab
@	
@@ followed by a new line
@
@code{@@-} @-
@code{@@:} @:
@code{@@!} @!
@code{@@?} @?
@code{@@.} @.
@code{@@@@} @@
@code{@@@}} @}
@code{@@@{} @{
@code{@@/} @/

foo vs.@: bar. 
colon :@:And something else.
semi colon ;@:.
And ? ?@:.
Now ! !@:@@
but , ,@:

@@TeX @TeX{}
@@LaTeX @LaTeX{}
@@bullet @bullet{}
@@copyright @copyright{}
@@dots @dots{}
@@enddots @enddots{}
@@equiv @equiv{}
@@error @error{}
@@expansion @expansion{}
@@minus @minus{}
@@point @point{}
@@print @print{}
@@result @result{}
@@today @today{}

@@aa @aa{}
@@AA @AA{}
@@ae @ae{}
@@oe @oe{}
@@AE @AE{}
@@OE @OE{}
@@o @o{}
@@O @O{}
@@ss @ss{}
@@l @l{}
@@L @L{}
@@DH @DH{}
@@TH @TH{}
@@dh @dh{}
@@th @th{}

@@exclamdown @exclamdown{}
@@questiondown @questiondown{}
@@pounds @pounds{}
@@registeredsymbol @registeredsymbol{}
@@ordf @ordf{}
@@ordm @ordm{}
@@comma @comma{}
@@quotedblleft @quotedblleft{}
@@quotedblright @quotedblright{}
@@quoteleft @quoteleft{}
@@quoteright @quoteright{}
@@quotedblbase @quotedblbase{}
@@quotesinglbase @quotesinglbase{}
@@guillemetleft @guillemetleft{}
@@guillemetright @guillemetright{}
@@guillemotleft @guillemotleft{}
@@guillemotright @guillemotright{}
@@guilsinglleft @guilsinglleft{}
@@guilsinglright @guilsinglright{}

@@textdegree @textdegree{}
@@euro @euro{}
@@arrow @arrow{}
@@leq @leq{}
@@geq @geq{}
@@tie a@tie{}b

@code{@@acronym@{--a,an accronym@}} @acronym{--a,an accronym}
@code{@@acronym@{--a@}} @acronym{--a}
@code{@@abbr@{@@'E--. @@comma@{@}A., @@'Etude Autonome @}} @abbr{@'E--. @comma{}A., @'Etude Autonome }
@code{@@abbr@{@@'E--. @@comma@{@}A.@}} @abbr{@'E--. @comma{}A.}
@code{@@asis@{--a@}} @asis{--a}
@code{@@b@{--a@}} @b{--a}
@code{@@cite@{--a@}} @cite{--a}
@code{@@code@{--a@}} @code{--a}
@code{@@command@{--a@}} @command{--a}
@code{@@dfn@{--a@}} @dfn{--a}
@code{@@dmn@{--a@}} @dmn{--a}
@code{@@email@{--a,--b@}} @email{--a,--b}
@code{@@email@{,--b@}} @email{,--b}
@code{@@email@{--a@}} @email{--a}
@code{@@emph@{--a@}} @emph{--a}
@code{@@env@{--a@}} @env{--a}
@code{@@file@{--a@}} @file{--a}
@code{@@i@{--a@}} @i{--a}
@code{@@kbd@{--a@}} @kbd{--a}
@code{@@key@{--a@}} @key{--a}
@code{@@math@{--a @{\\frac@{1@}@{2@}@} @@minus@{@}@}} @math{--a {\\frac{1}{2}} @minus{}}
@code{@@option@{--a@}} @option{--a}
@code{@@r@{--a@}} @r{--a}
@code{@@samp@{--a@}} @samp{--a}
@code{@@sc@{--a@}} @sc{--a}
@code{@@strong@{--a@}} @strong{--a}
@code{@@t@{--a@}} @t{--a}
@code{@@sansserif@{--a@}} @sansserif{--a}
@code{@@slanted@{--a@}} @slanted{--a}
@code{@@titlefont@{--a@}} @titlefont{--a}
@code{@@indicateurl@{--a@}} @indicateurl{--a}
@code{@@uref@{--a,--b@}} @uref{--a,--b}
@code{@@uref@{--a@}} @uref{--a}
@code{@@uref@{,--b@}} @uref{,--b}
@code{@@uref@{--a,--b,--c@}} @uref{--a,--b,--c}
@code{@@uref@{,--b,--c@}} @uref{,--b,--c}
@code{@@uref@{--a,,--c@}} @uref{--a,,--c}
@code{@@uref@{,,--c@}} @uref{,,--c}
@code{@@url@{--a,--b@}} @url{--a,--b}
@code{@@url@{--a,@}} @url{--a,}
@code{@@url@{,--b@}} @url{,--b}
@code{@@var@{--a@}} @var{--a}
@code{@@verb@{:--a:@}} @verb{:--a:}
@code{@@verb@{:a  < & @@ % " --    b:@}} @verb{:a  < & @ % " --    b:}
@code{@@w@{a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a@}} @w{a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a}
@code{@@H@{a@}} @H{a}
@code{@@H@{--a@}} @H{--a}
@code{@@dotaccent@{a@}} @dotaccent{a}
@code{@@dotaccent@{--a@}} @dotaccent{--a}
@code{@@ringaccent@{a@}} @ringaccent{a}
@code{@@ringaccent@{--a@}} @ringaccent{--a}
@code{@@tieaccent@{a@}} @tieaccent{a}
@code{@@tieaccent@{--a@}} @tieaccent{--a}
@code{@@u@{a@}} @u{a}
@code{@@u@{--a@}} @u{--a}
@code{@@ubaraccent@{a@}} @ubaraccent{a}
@code{@@ubaraccent@{--a@}} @ubaraccent{--a}
@code{@@udotaccent@{a@}} @udotaccent{a}
@code{@@udotaccent@{--a@}} @udotaccent{--a}
@code{@@v@{a@}} @v{a}
@code{@@v@{--a@}} @v{--a}
@code{@@,@{c@}} @,{c}
@code{@@,@{--c@}} @,{--c}
@code{@@ogonek@{a@}} @ogonek{a}
@code{@@ogonek@{--a@}} @ogonek{--a}
@code{a@@sup@{h@}@@sub@{l@}} a@sup{h}@sub{l}
@code{@@footnote@{in footnote@}} @footnote{in footnote}
@code{@@footnote@{in footnote2@}} @footnote{in footnote2}

@code{@@sp 2}@*
@sp 2
@code{@@page}@*
@page

@code{need 1002}
@need 1002

@code{@@clicksequence@{click @@click@{@} A@}} @clicksequence{click @click{} A}
@clickstyle @result
After clickstyle @result{}
@code{@@clicksequence@{click @@click@{@} A@}} @clicksequence{click @click{} A}
@clickstyle @arrow

@c test most commands that could happen in math mode

@c TeX does not like @displamath in @example, the error is
@c  Missing $ inserted.
@c Therefore, if inexample is set, condition on valid.  Not that
@c This type of nesting may not be valid.
@ifset inexample
@ifclear valid
@end ifset
@ignore
in the displaymath below, as in math, backslash are doubled because 
we are in a macro.
@end ignore
@displaymath
disp--laymath
f(x) = {1 \\over \\sigma \\sqrt{2\\pi}}e@sup{-{1 \\over 2}\\left({x-\\mu \\over \\sigma}\\right)^2}
@end displaymath

@displaymath
@strong{``simple-double--three---four----''} @w{aa}
`@w{}`simple-double-@w{}-three---four----'@w{}'@*
@end displaymath

@displaymath
@dotless{i} @dotless{j}
@l{} @,c
@ubaraccent{a} @udotaccent{a} @ogonek{a} a@sup{h}@sub{l}
@* @ @  @
@- @| @! @@ @} @{ @/
@today{}
@end displaymath

@displaymath
@click{}
@U{0075}
@bullet{} @copyright{} @dots{} @enddots{} @equiv{}
@error{} @expansion{} @minus{} @print{} @result{}
@AA{} @ae{} @oe{} @AE{} @OE{} @o{} @O{} @ss{} @l{} @L{} @DH{}
@TH{} @dh{} @th{} @exclamdown{} @questiondown{} @pounds{}
@ordf{} @ordm{} @comma{} 
@end displaymath

@displaymath
@quotedblleft{} @quotedblright{} 
@quoteleft{} @quoteright{} @quotedblbase{} @quotesinglbase{} @guillemetleft{}
@guillemetright{} @guillemotleft{} @guillemotright{} @guilsinglleft{}
@guilsinglright{} @euro{} @arrow{} @leq{} @geq{}
@end displaymath

@displaymath
@b{b} @i{i} @r{r} @sc{sc} @sansserif{sansserif} @slanted{slanted}
@end displaymath
@ifset inexample
@end ifclear
@end ifset

@c as documented, TeX does not like @vtable in @example
@c  This command won't work in this context; perhaps the 
@c  problem is that we are in environment @example.
@kbd{default kbdinputstyle}
@c when called in @example
@ifset inexample
@ifclear valid
@end ifset
@vtable @kbd
@item vtable i--tem default kbdinputstyle
@end vtable
@ifset inexample
@end ifclear
@end ifset
@example
@kbd{in example default kbdinputstyle}
@c no @vtable in @example
@ifclear valid
@vtable @kbd
@item vtable i--tem in example default kbdinputstyle
@end vtable
@end ifclear
@end example

@kbdinputstyle code
@kbd{code kbdinputstyle}
@ifset inexample
@ifclear valid
@end ifset
@vtable @kbd
@item vtable i--tem code kbdinputstyle
@end vtable
@ifset inexample
@end ifclear
@end ifset
@example
@kbd{in example code kbdinputstyle}
@c no @vtable in @example
@ifclear valid
@vtable @kbd
@item vtable i--tem in example code kbdinputstyle
@end vtable
@end ifclear
@end example

@kbdinputstyle example
@kbd{example kbdinputstyle}
@ifset inexample
@ifclear valid
@end ifset
@vtable @kbd
@item vtable i--tem example kbdinputstyle
@end vtable
@ifset inexample
@end ifclear
@end ifset
@example
@kbd{in example example kbdinputstyle}
@c no @vtable in @example
@ifclear valid
@vtable @kbd
@item vtable i--tem in example example kbdinputstyle
@end vtable
@end ifclear
@end example

@kbdinputstyle distinct
@kbd{distinct kbdinputstyle}
@ifset inexample
@ifclear valid
@end ifset
@vtable @kbd
@item vtable i--tem distinct kbdinputstyle
@end vtable
@ifset inexample
@end ifclear
@end ifset
@example
@kbd{in example distinct kbdinputstyle}
@c no @vtable in @example
@ifclear valid
@vtable @kbd
@item vtable i--tem in example distinct kbdinputstyle
@end vtable
@end ifclear
@end example

@quotation 
A quot---ation
@end quotation

@quotation Note
A Note
@end quotation

@quotation note
A note
@end quotation

@quotation Caution
Caution
@end quotation

@quotation Important
Important
@end quotation

@quotation Tip
a Tip
@end quotation

@quotation Warning
a Warning.
@end quotation

@quotation something @'e @TeX{}
The something @'e @TeX{} is here.
@end quotation

@quotation @@ at the end of line @
A @@ at the end of the @@quotation line.
@end quotation

@quotation something, other thing
something, other thing
@end quotation

@quotation Note, the note
Note, the note
@end quotation

@quotation
@end quotation

@quotation Empty
@end quotation

@quotation @asis{}
@end quotation

@quotation @*
@end quotation

@quotation
aaa @author quotation author
quotation
@end quotation

@quotation
@indent
indent in quotation
@end quotation

@quotation
@exdent exdented quotation line   and dash --- in quotation
@end quotation

@quotation
Not exdented followed by exdented
@exdent  exdented quotation line
@end quotation

@quotation
@exdent  exdented quotation line
Followed by not exdented 
@end quotation

@quotation
quotation1
@exdent in exdented protected eol @
following
@exdent in exdented a @@* @* and following
after exdented
@end quotation

@smallquotation 
A small quot---ation
@end smallquotation

@smallquotation Note
A small Note
@end smallquotation

@smallquotation something, other thing
something, other thing
@end smallquotation

@itemize
@item i--temize
@end itemize

@itemize +
@item i--tem +
@end itemize

@itemize @bullet
@item b--ullet
@end itemize

@itemize @minus
@item minu--s
@end itemize

@itemize @emph{after emph}
@c comment in itemize
@item e--mph item
@end itemize

@itemize @bullet{} a--n itemize line
@cindex index entry within itemize
@item i--tem 1
@item i--tem 2
@end itemize

@itemize @w{}
@item with w a--b
@item with w c--d
@end itemize

@itemize @w{} on a line
@item line w a--b
@item line with w c--d
@end itemize

@enumerate
@item e--numerate
@end enumerate

@enumerate 3
@item first third
@item second third
@end enumerate

@enumerate a
@item e--numerate
@end enumerate

@enumerate c
@item first c
@item second c
@end enumerate

@multitable @columnfractions 0.4 0.6 
@headitem mu--ltitable headitem @tab another tab
@item mu--ltitable item @tab multitable tab
@c comment in multitable
@item mu--ltitable item 2 @tab multitable tab 2
@cindex index entry within multitable
@item lone mu--ltitable item
@end multitable

@multitable {truc} {bidule}
@item truc @tab bidule
@end multitable

@example
e--xample  some
   text
@end example

@example first arg
example one arg
@end example

@example first arg, second arg
example two args
@end example

@example first arg, second arg, third arg
example three args
@end example

@example first arg, second arg, third arg, fourth arg
example four args
@end example

@example first arg, second arg, third arg, fourth arg, fifth arg
example five args
@end example

@example something @'e @TeX{}
The something @'e @TeX{} is here.
@end example

@example @@ at the end of line @
A @@ at the end of the @@example line.
@end example

@example ,,,,,,
example with empty args
@end example

@example ,,,nonempty,,,
example with empty and non empty args mix
@end example

@example
Exam---ple

@exdent Other li---ne
not exdented
@end example

@example
@exdent exdented  and dash --- in example
Not exdented one
@exdent exdented two
Not exdented two
@end example

@example
Example   Hoho.
@example
Nested Other line
@exdent exdented nested other line
@end example
@end example

@smallexample
s--mallexample
@end smallexample

@code{@@noindent} after smallexample.
@smallexample
$ wget 'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.guess?rev=HEAD&content-type=text/plain'
$ wget 'http://savannah.gnu.org/cgi-bin/viewcvs/config/config/config.sub?rev=HEAD&content-type=text/plain'
@end smallexample
@noindent
Less recent versions are also present.

@display 
d--isplay
@end display

@smalldisplay
s--malldisplay
@end smalldisplay

@lisp
l--isp
@end lisp

@smalllisp
s--malllisp
@end smalllisp

@format
f--ormat
@end format

@smallformat
s--mallformat
@end smallformat

@deffn c--ategory d--effn_name a--rguments...
d--effn
@end deffn

@deffn cate--gory de--ffn_name ar--guments @
   more args @* even more so
def--fn
@end deffn
 
@deffn fset @var{i} a g
@cindex index entry within deffn
@deffnx {cmde} truc {}
@deffnx Command {log trap} {}
@deffnx Command { log trap1} {}  
@deffnx Command {log trap2 } {}
@deffnx cmde @b{id ule} truc
@deffnx cmde2 @b{id @samp{i} ule} truc
@deffnx {} {}
@deffnx{} machin
@deffnx{} {bidule machin}
@deffnx{truc} machin
@deffnx{truc} { }
@deffnx{truc} followed by a comment
@c comment
@deffnx{} {}
@deffnx {truc} a b c d e @b{f g} {h i}
@deffnx {truc} deffnx before end deffn
@end deffn

@deftypefnnewline off

@deffn empty deffn
@end deffn

@deffn empty deffn with deffnx
@c comment between deffn and deffnx
@deffnx empty deffnx
@end deffn

@deffn fset @var{i} a g
@deffnx {cmde} truc {}
@c comment
text in def item for second def item
@end deffn

@c from t/19def.t all_commands

@defvr c--ategory d--efvr_name
d--efvr
@end defvr

@deffn c--ategory n--ame a--rguments...
d--effn
@end deffn

@deffn c--ategory n--ame
d--effn no arg
@end deffn

@deftypefn c--ategory t--ype d--eftypefn_name a--rguments...
d--eftypefn
@end deftypefn

@deftypefn c--ategory t--ype d--eftypefn_name
d--eftypefn no arg
@end deftypefn

@deftypeop c--ategory c--lass t--ype d--eftypeop_name a--rguments...
d--eftypeop
@end deftypeop

@deftypeop c--ategory c--lass t--ype d--eftypeop_name
d--eftypeop no arg
@end deftypeop

@deftypevr c--ategory t--ype d--eftypevr_name
d--eftypevr
@end deftypevr

@defcv c--ategory c--lass d--efcv_name
d--efcv
@end defcv

@defcv c--ategory c--lass d--efcv_name a--rguments...
d--efcv with arguments
@end defcv

@deftypecv c--ategory c--lass t--ype d--eftypecv_name
d--eftypecv
@end deftypecv

@deftypecv c--ategory c--lass t--ype d--eftypecv_name a--rguments...
d--eftypecv with arguments
@end deftypecv

@defop c--ategory c--lass d--efop_name a--rguments...
d--efop
@end defop

@defop c--ategory c--lass d--efop_name
d--efop no arg
@end defop

@deftp c--ategory d--eftp_name a--ttributes...
d--eftp
@end deftp

@defun d--efun_name a--rguments...
d--efun
@end defun

@defmac d--efmac_name a--rguments...
d--efmac
@end defmac

@defspec d--efspec_name a--rguments...
d--efspec
@end defspec

@defvar d--efvar_name
d--efvar
@end defvar

@defvar d--efvar_name arg--var arg--var1
d--efvar with args
@end defvar

@defopt d--efopt_name
d--efopt
@end defopt

@deftypefun t--ype d--eftypefun_name a--rguments...
d--eftypefun
@end deftypefun

@deftypevar t--ype d--eftypevar_name
d--eftypevar
@end deftypevar

@defivar c--lass d--efivar_name
d--efivar
@end defivar

@deftypeivar c--lass t--ype d--eftypeivar_name
d--eftypeivar
@end deftypeivar

@defmethod c--lass d--efmethod_name a--rguments...
d--efmethod
@end defmethod

@deftypemethod c--lass t--ype d--eftypemethod_name a--rguments...
d--eftypemethod
@end deftypemethod

@deftypefnnewline on

@deftypefun data-type2 name2 arguments2...
aaa2
@end deftypefun

@deftypefn c--ategory2 t--ype2 d--eftypefn_name2
d--eftypefn no arg2
@end deftypefn

@deftypeop c--ategory2 c--lass2 t--ype2 d--eftypeop_name2 a--rguments2...
d--eftypeop2
@end deftypeop

@deftypeop c--ategory2 c--lass2 t--ype2 d--eftypeop_name2
d--eftypeop no arg2
@end deftypeop

@deftypecv c--ategory2 c--lass2 t--ype2 d--eftypecv_name2
d--eftypecv2
@end deftypecv

@deftypecv c--ategory2 c--lass2 t--ype2 d--eftypecv_name2 a--rguments2...
d--eftypecv with arguments2
@end deftypecv

@deffn fun2 arg2
fff2
@end deffn

@deftypefnnewline off

@code{@@xref@{c---hapter@@@@, cross r---ef name@@@@, t---itle@@@@, file n---ame@@@@, ma---nual@@@@@}} @xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@, ma---nual@@}.
@code{@@ref@{chapter, cross ref name, title, file name, manual@}} @ref{chapter, cross ref name, title, file name, manual}
@code{@@pxref@{chapter, cross ref name, title, file name, manual@}} @pxref{chapter, cross ref name, title, file name, manual}
@code{@@inforef@{chapter, cross ref name, file name@}} @inforef{chapter, cross ref name, file name}

@code{@@ref@{chapter@}} @ref{chapter}
@code{@@xref@{chapter@}} @xref{chapter}.
@code{@@pxref@{chapter@}} @pxref{chapter}
@code{@@ref@{s--ect@@comma@{@}ion@}} @ref{s--ect@comma{}ion}

@code{@@ref@{s--ect@@comma@{@}ion, a @@comma@{@} in cross
ref, a comma@@comma@{@} in title, a comma@@comma@{@} in file, a @@comma@{@} in manual name @}}
@ref{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in title, a comma@comma{} in file, a @comma{} in manual name }

@code{@@ref@{chapter,cross ref name@}} @ref{chapter,cross ref name}
@code{@@ref@{chapter,,title@}} @ref{chapter,,title}
@code{@@ref@{chapter,,,file name@}} @ref{chapter,,,file name}
@code{@@ref@{chapter,,,,manual@}} @ref{chapter,,,,manual}
@code{@@ref@{chapter,cross ref name,title,@}} @ref{chapter,cross ref name,title,}
@code{@@ref@{chapter,cross ref name,,file name@}} @ref{chapter,cross ref name,,file name}
@code{@@ref@{chapter,cross ref name,,,manual@}} @ref{chapter,cross ref name,,,manual}
@code{@@ref@{chapter,cross ref name,title,file name@}} @ref{chapter,cross ref name,title,file name}
@code{@@ref@{chapter,cross ref name,title,,manual@}} @ref{chapter,cross ref name,title,,manual}
@code{@@ref@{chapter,cross ref name,title, file name, manual@}} @ref{chapter,cross ref name,title, file name, manual}
@code{@@ref@{chapter,,title,file name@}} @ref{chapter,,title,file name}
@code{@@ref@{chapter,,title,,manual@}} @ref{chapter,,title,,manual}
@code{@@ref@{chapter,,title, file name, manual@}} @ref{chapter,,title, file name, manual}
@code{@@ref@{chapter,,,file name,manual@}} @ref{chapter,,,file name,manual}


@code{@@ref@{(pman)anode,cross ref name@}} @ref{(pman)anode,cross ref name}
@code{@@ref@{(pman)anode,,title@}} @ref{(pman)anode,,title}
@code{@@ref@{(pman)anode,,,file name@}} @ref{(pman)anode,,,file name}
@code{@@ref@{(pman)anode,,,,manual@}} @ref{(pman)anode,,,,manual}
@code{@@ref@{(pman)anode,cross ref name,title,@}} @ref{(pman)anode,cross ref name,title,}
@code{@@ref@{(pman)anode,cross ref name,,file name@}} @ref{(pman)anode,cross ref name,,file name}
@code{@@ref@{(pman)anode,cross ref name,,,manual@}} @ref{(pman)anode,cross ref name,,,manual}
@code{@@ref@{(pman)anode,cross ref name,title,file name@}} @ref{(pman)anode,cross ref name,title,file name}
@code{@@ref@{(pman)anode,cross ref name,title,,manual@}} @ref{(pman)anode,cross ref name,title,,manual}
@code{@@ref@{(pman)anode,cross ref name,title, file name, manual@}} @ref{(pman)anode,cross ref name,title, file name, manual}
@code{@@ref@{(pman)anode,,title,file name@}} @ref{(pman)anode,,title,file name}
@code{@@ref@{(pman)anode,,title,,manual@}} @ref{(pman)anode,,title,,manual}
@code{@@ref@{(pman)anode,,title, file name, manual@}} @ref{(pman)anode,,title, file name, manual}
@code{@@ref@{(pman)anode,,,file name,manual@}} @ref{(pman)anode,,,file name,manual}


@code{@@inforef@{chapter, cross ref name, file name@}} @inforef{chapter, cross ref name, file name}
@code{@@inforef@{chapter@}} @inforef{chapter}
@code{@@inforef@{chapter, cross ref name@}} @inforef{chapter, cross ref name}
@code{@@inforef@{chapter,,file name@}} @inforef{chapter,,file name}
@code{@@inforef@{node, cross ref name, file name@}} @inforef{node, cross ref name, file name}
@code{@@inforef@{node@}} @inforef{node}
@code{@@inforef@{node, cross ref name@}} @inforef{node, cross ref name}
@code{@@inforef@{node,,file name@}} @inforef{node,,file name}
@code{@@inforef@{chapter, cross ref name, file name, spurious arg@}} @inforef{chapter, cross ref name, file name, spurious arg}

@code{@@inforef@{s--ect@@comma@{@}ion, a @@comma@{@} in cross
ref, a comma@@comma@{@} in file@}}
@inforef{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in file}

@c special cases with @uref
@samp{@ref{chapter}}.

@ref{ext, cross ref with uref @uref{href://http/myhost.com/index.html,uref1}, title with uref2 @uref{href://http/myhost.com/index2.html,uref2}, info file with uref3 @uref{href://http/myhost.com/index3.html,uref3}, printed manual with uref4 @uref{href://http/myhost.com/index4.html,uref4}}
@ref{chapter, cross ref with uref @uref{href://http/myhost.com/index.html,uref1}, title with uref2 @uref{href://http/myhost.com/index2.html,uref2}}

@c TeX does not like @table in @example
@c as documented The @table command is not supported inside @display
@c  This command won't work in this context; perhaps the 
@c  problem is that we are in environment @example.
@ifset inexample
@ifclear valid
@end ifset
@table @strong
@c comment in table
@item a--strong
l--ine
@end table

@vtable @asis
@item a--asis
@c comment between item and itemx
@itemx b
l--ine
@end vtable

@ftable @emph
@item a
@cindex index entry between item and itemx
@itemx b
l--ine
@end ftable

@table @code
Title
@item a--code
Value--table code
@end table

@table @samp
Title
@item a--samp
@itemx a2--samp
Value--table samp
@end table
@ifset inexample
@end ifclear
@end ifset

@cartouche
c--artouche
@end cartouche

@flushleft
f--lushleft
more text
@end flushleft

@flushright
f--lushright
more text
@end flushright

@center ce--ntered line

@raggedright
r--raggedright
more text
@end raggedright

@verbatiminclude simplest.texi

@verbatim
in verbatim ''
@end verbatim

@xml
<para> xml para </para> ''
@end xml

@html
html ''
@end html

@tex
$$\\partial_t \\eta (t) = g(\\eta(t),\\varphi(t))$$ ''
@end tex

@docbook
docbook ''
@end docbook

@latex
$\\frac{a < b @code{tex \\hbox{ code }}}{b}$ ``
@end latex

@majorheading majorheading

@chapheading chapheading

@heading heading

@subheading subheading

@subsubheading subsubheading


@code{@@acronym@{--a,an accronym @@comma@{@} @@enddots@{@}@}} @acronym{--a,an accronym @comma{} @enddots{}}
@code{@@abbr@{@@'E--. @@comma@{@}A., @@'Etude--@@comma@{@} @@b@{Autonome@} @}} @abbr{@'E--. @comma{}A., @'Etude--@comma{} @b{Autonome} }
@code{@@abbr@{@@'E--. @@comma@{@}A.@}} @abbr{@'E--. @comma{}A.}

@code{@@math@{--a@@minus@{@} @{\\frac@{1@}@{2@}@}@}} @math{--a@minus{} {\\frac{1}{2}}}



@ifclear valid
@c invalid texinfo

Somehow invalid use of @@,:@*
@@, @,
@*
@@,@@"u @,@"u

Invalid use of @@':@*
@@' @'
@*
@@'@@"u @'@"u

@c should only appear in @*heading
@code{@@|} @|

@c only i or j as arg
@@dotless@{truc@} @dotless{truc}
@@dotless@{ij@} @dotless{ij}
@code{@@dotless@{--a@}} @dotless{--a}
@code{@@dotless@{a@}} @dotless{a}

@c @U arg must be specified and within range
@@U, without braces @U
@@U@{@}, with empty arg @U{}
@@U@{z@}, with non-hex arg @U{z}
@ifnotlatex
@@U@{abc@}, with <4 hex digits @U{abc}
@end ifnotlatex
@@U@{FFFFFFFFFFFFFF@}, value much too large @U{FFFFFFFFFFFFFF}
@@U@{110000@}, value just beyond Unicode @U{110000}

@c braces missing
@@TeX, but without brace @TeX

@c unknown command
@code{@@#} @#

@c no arg
@code{@@w@{--a@}} @w{--a}

@c no file
@code{@@image@{,1--xt@}} @image{,1--xt}
@code{@@image@{,,2--xt@}} @image{,,2--xt}
@code{@@image@{,,,3--xt@}} @image{,,,3--xt}

@c The file does not exist.  There would be other errors too
@c  Could not find image file f-ile for pdf.
@code{@@image@{f-ile,aze,,a--lt@}} @image{f-ile,aze,,a--lt}
@code{@@image@{f-ile,,,alt@@verb@{:jk _" %@:@}@}} @image{f-ile,,,alt@verb{:jk _" %@:}}

@c TeX gives an error, probably because the file is not a real png file
@c  reading image file failed
@code{@@image@{f--ile@}} @image{f--ile}
@code{@@image@{f--ile,,,alt@}} @image{f--ile,,,alt}
@code{@@image@{f--ile,,,,.e-d-xt@}} @image{f--ile,,,,.e--xt}
@c TeX gives a legitimate error, rescaling argument should be numbers
@c  Missing number, treated as zero.
@code{@@image@{f--ile,l--i@}} @image{f--ile,l--i}
@code{@@image@{f--ile,,l--e@}} @image{f--ile,,l--e}
@code{@@image@{f--ile,aze,az,alt,.e--xt@}} @image{f--ile,aze,az,alt,.e--xt}
@code{@@image@{@@file@{f--ile@}@@@@@@.,aze,az,alt,@@file@{.file ext@} e--xt@@@}} @image{@file{f--ile}@@@.,aze,az,alt,@file{.file ext} e--xt@}}

@c It is not reliable to use @verb inside other Texinfo constructs
@c  Use of @doverb doesn't match its definition.
@code{@@image@{f--ile,aze,az,@@verb@{:jk _" %@@:@} @@b@{in b "@},e--xt@}} @image{f--ile,aze,az,@verb{:jk _" %@:} @b{in b "},e--xt}
@code{@@image@{file@@verb@{:jk _" %@@:@},,,alt@@verb@{:jk _" %@@:@}@}} @image{file@verb{:jk _" %@:},,,alt@verb{:jk _" %@:}}

@sp

@c  This command can appear only in environment @titlepage,
@c  not outside of any environment.
@author author

@c TeX does not like some accents in @displaymath:
@c  Please use @mathaccent for accents in math mode
@c TeX does not like @: and @? in @displaymath:
@c  You can't use `@spacefactor' in display math mode.
@c With @. the error is strangely about @mathaccent
@displaymath
@"u @"{U} @~n @^a @'e @=o @`i @'{e} @`{@=E}
@,{@'C} @,{@'C} @H{a} @dotaccent{a} @ringaccent{a} @tieaccent{a}
@u{a} @v{a}
@: @? @.
@end displaymath

@c TeX does not like @TeX{} in @displaymath:
@c  You can't use `@spacefactor' in display math mode.
@c TeX uses math for @point @registeredsymbol @textdegree which errors
@c  @point ->$@star 
@c  @registeredsymbol ->$^
@c  Display math should end with $$.
@displaymath
@TeX{} @LaTeX{} @point{} @aa{} @registeredsymbol{} @textdegree{} 
@end displaymath

@c TeX is confused by @t{t}
@c  Please use @mathaccent for accents in math mode.
@displaymath
@t{t} 
@end displaymath

@c style command in itemize
@itemize @emph
@item e--mph item
@end itemize

@c braces missing
@itemize @emph after emph
@item e--mph item
@end itemize

@c braces missing
@itemize @bullet a--n itemize line
@item i--tem 1
@item i--tem 2
@end itemize

@c braces missing
@c  Argument of @w has an extra }
@itemize @w
@item without brace w a--b
@item without brace w c--d
@end itemize

@c not style formatting
@table @bullet
@c comment in table
@item a
l--ine
@end table

@c missing style formatting
@table
@c comment in table
@item a--missing style formatting
l--ine
@end table

@c not style formatting
@ftable @minus
@item a
@cindex index entry between item and itemx
@itemx b
l--ine
@end ftable

@c deffnx after deff lines
@deffn fun
@deffnx truc machin bidule chose and }
@deffnx truc machin bidule chose and } after
@deffnx truc machin bidule chose and {
@deffnx truc machin bidule chose and { and after
@deffnx {truc} followed by a comment
@c comment
Various deff lines
@deffnx {truc} after a deff item
@end deffn

@c TeX requires 2 arguments minimum for @deffn
@c  Paragraph ended before @deffngeneral was complete.
@deffn fsetinv @var{invalid} a g
@deffnx @b{id @samp{i} ule}    
@deffnx 
@deffnx aaa
@deffnx{}
@deffnx{truc}
@end deffn

@c TeX require @group in a contexte where each line of input produces a line of output
@c  @group invalid in context where filling is enabled.
@group
g--roupe
@end group

@c node is non existent, or missing first arg
@code{@@ref@{node@}} @ref{node}

@code{@@ref@{,cross ref name@}} @ref{,cross ref name}
@code{@@ref@{,,title@}} @ref{,,title}
@code{@@ref@{,,,file name@}} @ref{,,,file name}
@code{@@ref@{,,,,manual@}} @ref{,,,,manual}
@code{@@ref@{node,cross ref name@}} @ref{node,cross ref name}
@code{@@ref@{node,,title@}} @ref{node,,title}
@code{@@ref@{node,,,file name@}} @ref{node,,,file name}
@code{@@ref@{node,,,,manual@}} @ref{node,,,,manual}
@code{@@ref@{node,cross ref name,title,@}} @ref{node,cross ref name,title,}
@code{@@ref@{node,cross ref name,,file name@}} @ref{node,cross ref name,,file name}
@code{@@ref@{node,cross ref name,,,manual@}} @ref{node,cross ref name,,,manual}
@code{@@ref@{node,cross ref name,title,file name@}} @ref{node,cross ref name,title,file name}
@code{@@ref@{node,cross ref name,title,,manual@}} @ref{node,cross ref name,title,,manual}
@code{@@ref@{node,cross ref name,title, file name, manual@}} @ref{node,cross ref name,title, file name, manual}
@code{@@ref@{node,,title,file name@}} @ref{node,,title,file name}
@code{@@ref@{node,,title,,manual@}} @ref{node,,title,,manual}
@code{@@ref@{chapter,,title, file name, manual@}} @ref{chapter,,title, file name, manual}
@code{@@ref@{node,,title, file name, manual@}} @ref{node,,title, file name, manual}
@code{@@ref@{node,,,file name,manual@}} @ref{node,,,file name,manual}
@code{@@ref@{,cross ref name,title,@}} @ref{,cross ref name,title,}
@code{@@ref@{,cross ref name,,file name@}} @ref{,cross ref name,,file name}
@code{@@ref@{,cross ref name,,,manual@}} @ref{,cross ref name,,,manual}
@code{@@ref@{,cross ref name,title,file name@}} @ref{,cross ref name,title,file name}
@code{@@ref@{,cross ref name,title,,manual@}} @ref{,cross ref name,title,,manual}
@code{@@ref@{,cross ref name,title, file name, manual@}} @ref{,cross ref name,title, file name, manual}
@code{@@ref@{,,title,file name@}} @ref{,,title,file name}
@code{@@ref@{,,title,,manual@}} @ref{,,title,,manual}
@code{@@ref@{,,title, file name, manual@}} @ref{,,title, file name, manual}
@code{@@ref@{,,,file name,manual@}} @ref{,,,file name,manual}

@code{@@inforef@{,cross ref name @}} @inforef{,cross ref name }
@code{@@inforef@{,,file name@}} @inforef{,,file name}
@code{@@inforef@{,cross ref name, file name@}} @inforef{,cross ref name, file name}
@code{@@inforef@{@}} @inforef{}

@end ifclear

@end macro