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
|
\input texinfo @c -*-texinfo-*-
@setfilename macro_in_misc.info
@hyphenation{some-where
be-low
may-be to-morow
}
@macro text
atext
@end macro
@node Top
@top top @text{}
@subheading Comment like: @text{}
Text line followed by a comment on the same line and another below @c comment @text{}
@c comment @text{}
@macro pagesizes_arg
200mm,150mm
@end macro
@macro afourpaper_macro
@afourpaper
@end macro
@pagesizes @pagesizes_arg{}
@afourpaper_macro{}
@headings on line following headings @text{}
@oddfooting some text ignored @text{}
@everyheading on line following everyheading @text{}
@macro need_arg
0.1
@end macro
@need @need_arg{}
@macro raisesections_macro
@raisesections
@end macro
@raisesections_macro{}
@macro lowersections_macro
@lowersections
@end macro
@lowersections_macro{}
@c tex error: Use of \ doesn't match its definition.
@ifnottex
@@definfoenclose phoo,//,\\ @definfoenclose phoo,//,\\
@phoo{bar}
@end ifnottex
@macro definfoenclose_name
phi
@end macro
@definfoenclose @definfoenclose_name{},:,:
@c this is required
@iftex
@global@let@phi=@i
@end iftex
@phi{bar}
@macro strong_macro
@strong
@end macro
@macro strong_name
strong
@end macro
@strong_macro{}{very strong}
@definfoenclose @strong_name{},(@strong_name{}:,:)
@strong_macro{}{ is it really strong? }
@kbd{something before kbdinputstyle}
@macro kbdinputstyle_arg
code
@end macro
@kbdinputstyle @kbdinputstyle_arg{}
@kbd{truc}
@example
@kbd{example}
@end example
@macro asis_arg
asis
@end macro
@macro zero
0
@end macro
@macro none_arg
none
@end macro
@macro four
4
@end macro
@macro six
6
@end macro
@paragraphindent @asis_arg{}
@paragraphindent @zero{}
@paragraphindent @none_arg{}
@paragraphindent @four{}
@firstparagraphindent @none_arg{}
@exampleindent @six{}
@macro end_arg
end
@end macro
@macro separate_arg
separate
@end macro
@footnotestyle @end_arg{}
@footnotestyle @separate_arg{}
@macro latin1
ISO-8859-1
@end macro
@documentencoding @latin1{}
@macro on_arg
on
@end macro
@macro off_arg
off
@end macro
@frenchspacing @on_arg{}
@frenchspacing @off_arg{}
@c accepts 10 or 11
@macro ten
10
@end macro
@fonttextsize @ten{}
@c accept false or true
@c makeinfo don't care about the arg and remove the remainiing of the line
@macro false_arg
false
@end macro
@macro true_arg
true
@end macro
@allowcodebreaks @false_arg{}
@code{false aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa}
@allowcodebreaks @true_arg{}
@code{true aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa}
@subheading command removed
@finalout
@macro page_macro
@page
@end macro
@macro noindent_macro
@noindent
@end macro
@macro refill_macro
@refill
@end macro
@@page @page_macro{} @@noindent @noindent_macro{} @@refill @refill_macro{} something
@noindent_macro{} noindent at beginning of line
@noindent_macro{}
noindent on the preceding line
@noindent_macro{} noindent after space at beginning of line
@page page at beginning of line
@page
After page on it's own line.
@@page @page_macro{} @@noindent @noindent_macro{} @@refill @refill_macro{}
@macro contents_macro
@contents
@end macro
@contents_macro{}
@subheading special
Only valid between iftex:
@c @@vskip @vskip @@cropmarks @cropmarks
Unknown ???
@c @@fillbreak @fillbreak eol
@macro exdent_macro
@exdent
@end macro
@exdent_macro{} line after exdent
And now sp:
@macro two
2
@end macro
@sp @two{}
@macro result_macro
@result
@end macro
@clickstyle @result_macro{}
@menu
* node @text{}::
* bidule::
* bidule2::
@end menu
@node node @text{}
@chapter chapter
@menu
* truc::
@end menu
@node truc
@section section
@contents_macro{}
@node bidule
@chapter bidule
@macro shortcontents_macro
@shortcontents
@end macro
@shortcontents_macro{}
@node bidule2
@chapter last
@bye
|