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