home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / texinfo-3.7-bin.lha / info / texinfo.info-6 (.txt) < prev    next >
GNU Info File  |  1996-10-12  |  48KB  |  955 lines

  1. This is Info file texinfo.info, produced by Makeinfo-1.64 from the
  2. input file /ade-src/fsf/texinfo/texinfo.texi.
  3.   This file documents Texinfo, a documentation system that uses a single
  4. source file to produce both on-line information and a printed manual.
  5.   Copyright (C) 1988, 1990, 1991, 1992, 1993, 1995 Free Software
  6. Foundation, Inc.
  7.   This is the second edition of the Texinfo documentation,
  8. and is consistent with version 2 of `texinfo.tex'.
  9.   Permission is granted to make and distribute verbatim copies of this
  10. manual provided the copyright notice and this permission notice are
  11. preserved on all copies.
  12.   Permission is granted to copy and distribute modified versions of this
  13. manual under the conditions for verbatim copying, provided that the
  14. entire resulting derived work is distributed under the terms of a
  15. permission notice identical to this one.
  16.   Permission is granted to copy and distribute translations of this
  17. manual into another language, under the above conditions for modified
  18. versions, except that this permission notice may be stated in a
  19. translation approved by the Free Software Foundation.
  20. File: texinfo.info,  Node: syncodeindex,  Next: synindex,  Prev: Combining Indices,  Up: Combining Indices
  21. `@syncodeindex'
  22. ---------------
  23.   When you want to combine functions and concepts into one index, you
  24. should index the functions with `@findex' and index the concepts with
  25. `@cindex', and use the `@syncodeindex' command to redirect the function
  26. index entries into the concept index.
  27.   The `@syncodeindex' command takes two arguments; they are the name of
  28. the index to redirect, and the name of the index to redirect it to.
  29. The template looks like this:
  30.      @syncodeindex FROM TO
  31.   For this purpose, the indices are given two-letter names:
  32.      concept index
  33.      function index
  34.      variable index
  35.      key index
  36.      program index
  37.      data type index
  38.   Write an `@syncodeindex' command before or shortly after the
  39. end-of-header line at the beginning of a Texinfo file.  For example, to
  40. merge a function index with a concept index, write the following:
  41.      @syncodeindex fn cp
  42. This will cause all entries designated for the function index to merge
  43. in with the concept index instead.
  44.   To merge both a variables index and a function index into a concept
  45. index, write the following:
  46.      @syncodeindex vr cp
  47.      @syncodeindex fn cp
  48.   The `@syncodeindex' command puts all the entries from the `from'
  49. index (the redirected index) into the `@code' font, overriding whatever
  50. default font is used by the index to which the entries are now
  51. directed.  This way, if you direct function names from a function index
  52. into a concept index, all the function names are printed in the `@code'
  53. font as you would expect.
  54. File: texinfo.info,  Node: synindex,  Prev: syncodeindex,  Up: Combining Indices
  55. `@synindex'
  56. -----------
  57.   The `@synindex' command is nearly the same as the `@syncodeindex'
  58. command, except that it does not put the `from' index  entries into the
  59. `@code' font; rather it puts them in the roman font.  Thus, you use
  60. `@synindex' when you merge a concept index into a function index.
  61.   *Note Printing Indices & Menus::, for information about printing an
  62. index at the end of a book or creating an index menu in an Info file.
  63. File: texinfo.info,  Node: New Indices,  Prev: Combining Indices,  Up: Indices
  64. Defining New Indices
  65. ====================
  66.   In addition to the predefined indices, you may use the `@defindex'
  67. and `@defcodeindex' commands to define new indices.  These commands
  68. create new indexing @-commands with which you mark index entries.  The
  69. `@defindex 'command is used like this:
  70.      @defindex NAME
  71.   The name of an index should be a two letter word, such as `au'.  For
  72. example:
  73.      @defindex au
  74.   This defines a new index, called the `au' index.  At the same time,
  75. it creates a new indexing command, `@auindex', that you can use to make
  76. index entries.  Use the new indexing command just as you would use a
  77. predefined indexing command.
  78.   For example, here is a section heading followed by a concept index
  79. entry and two `au' index entries.
  80.      @section Cognitive Semantics
  81.      @cindex kinesthetic image schemas
  82.      @auindex Johnson, Mark
  83.      @auindex Lakoff, George
  84. (Evidently, `au' serves here as an abbreviation for "author".) Texinfo
  85. constructs the new indexing command by concatenating the name of the
  86. index with `index'; thus, defining an `au' index leads to the automatic
  87. creation of an `@auindex' command.
  88.   Use the `@printindex' command to print the index, as you do with the
  89. predefined indices.  For example:
  90.      @node Author Index, Subject Index, , Top
  91.      @unnumbered Author Index
  92.      
  93.      @printindex au
  94.   The `@defcodeindex' is like the `@defindex' command, except that, in
  95. the printed output, it prints entries in an `@code' font instead of a
  96. roman font.  Thus, it parallels the `@findex' command rather than the
  97. `@cindex' command.
  98.   You should define new indices within or right after the end-of-header
  99. line of a Texinfo file, before any `@synindex' or `@syncodeindex'
  100. commands (*note Header::.).
  101. File: texinfo.info,  Node: Insertions,  Next: Glyphs,  Prev: Indices,  Up: Top
  102. Special Insertions
  103. ******************
  104.   Texinfo provides several commands for formatting dimensions, for
  105. inserting single characters that have special meaning in Texinfo, such
  106. as braces, and for inserting special graphic symbols that do not
  107. correspond to characters, such as dots and bullets.
  108. * Menu:
  109. * Braces Atsigns Periods::      How to insert braces, `@' and periods.
  110. * dmn::                         How to format a dimension.
  111. * Dots Bullets::                How to insert dots and bullets.
  112. * TeX and copyright::           How to insert the TeX logo
  113.                                   and the copyright symbol.
  114. * minus::                       How to insert a minus sign.
  115. * math::                        How to format a mathematical expression.
  116. File: texinfo.info,  Node: Braces Atsigns Periods,  Next: dmn,  Prev: Insertions,  Up: Insertions
  117. Inserting `@', Braces, and Periods
  118. ==================================
  119.   `@' and curly braces are special characters in Texinfo.  To insert
  120. these characters so they appear in text, you must put an `@' in front
  121. of these characters to prevent Texinfo from misinterpreting them.
  122.   Periods are also special.  Depending on whether the period is inside
  123. or at the end of a sentence, less or more space is inserted after a
  124. period in a typeset manual.  Since it is not always possible for
  125. Texinfo to determine when a period ends a sentence and when it is used
  126. in an abbreviation, special commands are needed in some circumstances.
  127. (Usually, Texinfo can guess how to handle periods, so you do not need
  128. to use the special commands; you just enter a period as you would if
  129. you were using a typewriter, which means you put two spaces after the
  130. period, question mark, or exclamation mark that ends a sentence.)
  131.   Do not put braces after any of these commands; they are not necessary.
  132. * Menu:
  133. * Inserting An Atsign::
  134. * Inserting Braces::            How to insert `{' and `}'
  135. * Controlling Spacing::         How to insert the right amount of space
  136.                                   after punctuation within a sentence.
  137. File: texinfo.info,  Node: Inserting An Atsign,  Next: Inserting Braces,  Prev: Braces Atsigns Periods,  Up: Braces Atsigns Periods
  138. Inserting `@' with @@
  139. ---------------------
  140.   `@@' stands for a single `@' in either printed or Info output.
  141.   Do not put braces after an `@@' command.
  142. File: texinfo.info,  Node: Inserting Braces,  Next: Controlling Spacing,  Prev: Inserting An Atsign,  Up: Braces Atsigns Periods
  143. Inserting `{' and `}'with @{ and @}
  144. -----------------------------------
  145.   `@{' stands for a single `{' in either printed or Info output.
  146.   `@}' stands for a single `}' in either printed or Info output.
  147.   Do not put braces after either an `@{' or an `@}' command.
  148. File: texinfo.info,  Node: Controlling Spacing,  Prev: Inserting Braces,  Up: Braces Atsigns Periods
  149. Spacing After Colons and Periods
  150. --------------------------------
  151.   Use the `@:' command after a period, question mark, exclamation mark,
  152. or colon that should not be followed by extra space.  For example, use
  153. `@:' after periods that end abbreviations which are not at the ends of
  154. sentences.  `@:' has no effect on the Info file output.
  155.   For example,
  156.      The s.o.p.@: has three parts ...
  157.      The s.o.p. has three parts ...
  158. produces
  159.      The s.o.p. has three parts ...
  160.      The s.o.p. has three parts ...
  161. `@:' has no effect on the Info output.  (`s.o.p' is an acronym for
  162. "Standard Operating Procedure".)
  163.   Use `@.' instead of a period at the end of a sentence that ends with
  164. a single capital letter.  Otherwise, TeX will think the letter is an
  165. abbreviation and will not insert the correct end-of-sentence spacing.
  166. Here is an example:
  167.      Give it to M.I.B. and to M.E.W@.  Also, give it to R.J.C@.
  168.      Give it to M.I.B. and to M.E.W.  Also, give it to R.J.C.
  169. produces
  170.      Give it to M.I.B. and to M.E.W
  171.   Also, give it to R.J.C
  172.      Give it to M.I.B. and to M.E.W.  Also, give it to R.J.C.
  173.   In the Info file output, `@.' is equivalent to a simple `.'.
  174.   The meanings of `@:' and `@.' in Texinfo are designed to work well
  175. with the Emacs sentence motion commands.  This made it necessary for
  176. them to be incompatible with some other formatting systems that use
  177. @-commands.
  178.   Do not put braces after either an `@:' or an `@.' command.
  179. File: texinfo.info,  Node: dmn,  Next: Dots Bullets,  Prev: Braces Atsigns Periods,  Up: Insertions
  180. `@dmn'{DIMENSION}: Format a Dimension
  181. =====================================
  182.   At times, you may want to write `12pt' or `8.5in' with little or no
  183. space between the number and the abbreviation for the dimension.  You
  184. can use the `@dmn' command to do this.  On seeing the command, TeX
  185. inserts just enough space for proper typesetting; the Info formatting
  186. commands insert no space at all, since the Info file does not require
  187.   To use the `@dmn' command, write the number and then follow it
  188. immediately, with no intervening space, by `@dmn', and then by the
  189. dimension within braces.
  190. For example,
  191.      A4 paper is 8.27@dmn{in} wide.
  192. produces
  193.      A4 paper is 8.27in wide.
  194.   Not everyone uses this style.  Instead of writing `8.27@dmn{in}' in
  195. the Texinfo file, you may write `8.27 in.' or `8.27 inches'.  (In these
  196. cases, the formatters may insert a line break between the number and the
  197. dimension.  Also, if you write a period after an abbreviation within a
  198. sentence, you should write `@:' after the period to prevent TeX from
  199. inserting extra whitespace.  *Note Spacing After Colons and Periods:
  200. Controlling Spacing.)
  201. File: texinfo.info,  Node: Dots Bullets,  Next: TeX and copyright,  Prev: dmn,  Up: Insertions
  202. Inserting Ellipsis, Dots, and Bullets
  203. =====================================
  204.   An "ellipsis" (a line of dots) is not typeset as a string of periods,
  205. so a special command is used for ellipsis in Texinfo.  The `@bullet'
  206. command is special, too.  Each of these commands is followed by a pair
  207. of braces, `{}', without any whitespace between the name of the command
  208. and the braces.  (You need to use braces with these commands because
  209. you can use them next to other text; without the braces, the formatters
  210. would be confused.  *Note @-Command Syntax: Command Syntax, for further
  211. information.)
  212. * Menu:
  213. * dots::                        How to insert dots ...
  214. * bullet::                      How to insert a bullet.
  215. File: texinfo.info,  Node: dots,  Next: bullet,  Prev: Dots Bullets,  Up: Dots Bullets
  216. `@dots'{}
  217. ---------
  218.   Use the `@dots{}' command to generate an ellipsis, which is three
  219. dots in a row, appropriately spaced, like this: `...'.  Do not simply
  220. write three periods in the input file; that would work for the Info
  221. file output, but would produce the wrong amount of space between the
  222. periods in the printed manual.
  223.   Similarly, the `@enddots{}' command helps you correctly set an
  224. end-of-sentence ellipsis (four dots).
  225. File: texinfo.info,  Node: bullet,  Prev: dots,  Up: Dots Bullets
  226. `@bullet'{}
  227. -----------
  228.   Use the `@bullet{}' command to generate a large round dot, or the
  229. closest possible thing to one.  In Info, an asterisk is used.
  230.   Here is a bullet: *
  231.   When you use `@bullet' in `@itemize', you do not need to type the
  232. braces, because `@itemize' supplies them.  (*Note `@itemize': itemize.)
  233. File: texinfo.info,  Node: TeX and copyright,  Next: minus,  Prev: Dots Bullets,  Up: Insertions
  234. Inserting TeX and the Copyright Symbol
  235. ======================================
  236.   The logo `TeX' is typeset in a special fashion and it needs an
  237. @-command.  The copyright symbol, `(C)', is also special.  Each of
  238. these commands is followed by a pair of braces, `{}', without any
  239. whitespace between the name of the command and the braces.
  240. * Menu:
  241. * tex::                         How to insert the TeX logo.
  242. * copyright symbol::            How to use `@copyright'{}.
  243. File: texinfo.info,  Node: tex,  Next: copyright symbol,  Prev: TeX and copyright,  Up: TeX and copyright
  244. `@TeX'{}
  245. --------
  246.   Use the `@TeX{}' command to generate `TeX'.  In a printed manual,
  247. this is a special logo that is different from three ordinary letters.
  248. In Info, it just looks like `TeX'.  The `@TeX{}' command is unique
  249. among Texinfo commands in that the T and the X are in upper case.
  250. File: texinfo.info,  Node: copyright symbol,  Prev: tex,  Up: TeX and copyright
  251. `@copyright'{}
  252. --------------
  253.   Use the `@copyright{}' command to generate `(C)'.  In a printed
  254. manual, this is a `c' inside a circle, and in Info, this is `(C)'.
  255. File: texinfo.info,  Node: minus,  Next: math,  Prev: TeX and copyright,  Up: Insertions
  256. `@minus'{}: Inserting a Minus Sign
  257. ==================================
  258.   Use the `@minus{}' command to generate a minus sign.  In a
  259. fixed-width font, this is a single hyphen, but in a proportional font,
  260. the symbol is the customary length for a minus sign--a little longer
  261. than a hyphen.
  262.   You can compare the two forms:
  263.      `-' is a minus sign generated with `@minus{}',
  264.      
  265.      `-' is a hyphen generated with the character `-'.
  266. In the fixed-width font used by Info, `@minus{}' is the same as a
  267. hyphen.
  268.   You should not use `@minus{}' inside `@code' or `@example' because
  269. the width distinction is not made in the fixed-width font they use.
  270.   When you use `@minus' to specify the mark beginning each entry in an
  271. itemized list, you do not need to type the braces (*note `@itemize':
  272. itemize..)
  273. File: texinfo.info,  Node: math,  Prev: minus,  Up: Insertions
  274. `@math': Inserting Mathematical Expressions
  275. ===========================================
  276.   You can write a short mathematical expression with the `@math'
  277. command.  Write the mathematical expression between braces, like this:
  278.      @math{(a + b)(a + b) = a^2 + 2ab + b^2}
  279. This produces the following in Info:
  280.      (a + b)(a + b) = a^2 + 2ab + b^2
  281.   The `@math' command has no effect on the Info output.  Currently, it
  282. has limited effect on typeset output.  However, this may change since
  283. TeX itself is designed for mathematical typesetting and does a splendid
  284.   Certainly, for complex mathematical expressions, you could use TeX
  285. directly.  *Note Using Ordinary TeX Commands: Using Ordinary TeX
  286. Commands.  When you use TeX directly, remember to write the
  287. mathematical expression between one or two `$' (dollar-signs) as
  288. appropriate.
  289. File: texinfo.info,  Node: Glyphs,  Next: Breaks,  Prev: Insertions,  Up: Top
  290. Glyphs for Examples
  291. *******************
  292.   In Texinfo, code is often illustrated in examples that are delimited
  293. by `@example' and `@end example', or by `@lisp' and `@end lisp'.  In
  294. such examples, you can indicate the results of evaluation or an
  295. expansion using `=>' or `==>'.  Likewise, there are commands to insert
  296. glyphs to indicate printed output, error messages, equivalence of
  297. expressions, and the location of point.
  298.   The glyph-insertion commands do not need to be used within an
  299. example, but most often they are.  Every  glyph-insertion command is
  300. followed by a pair of left- and right-hand braces.
  301. * Menu:
  302. * Glyphs Summary::
  303. * result::                      How to show the result of expression.
  304. * expansion::                   How to indicate an expansion.
  305. * Print Glyph::                 How to indicate printed output.
  306. * Error Glyph::                 How to indicate an error message.
  307. * Equivalence::                 How to indicate equivalence.
  308. * Point Glyph::                 How to indicate the location of point.
  309. File: texinfo.info,  Node: Glyphs Summary,  Next: result,  Prev: Glyphs,  Up: Glyphs
  310. Glyphs Summary
  311. ==============
  312.   Here are the different glyph commands:
  313.      `@result{}' points to the result of an expression.
  314.      `@expansion{}' shows the results of a macro expansion.
  315.      `@print{}' indicates printed output.
  316. error-->
  317.      `@error{}' indicates that the following text is an error message.
  318.      `@equiv{}' indicates the exact equivalence of two forms.
  319.      `@point{}' shows the location of point.
  320. File: texinfo.info,  Node: result,  Next: expansion,  Prev: Glyphs Summary,  Up: Glyphs
  321. =>: Indicating Evaluation
  322. =========================
  323.   Use the `@result{}' command to indicate the result of evaluating an
  324. expression.
  325.   The `@result{}' command is displayed as `=>' in Info and as a double
  326. stemmed arrow in the printed output.
  327.   Thus, the following,
  328.      (cdr '(1 2 3))
  329.           => (2 3)
  330. may be read as "`(cdr '(1 2 3))' evaluates to `(2 3)'".
  331. File: texinfo.info,  Node: expansion,  Next: Print Glyph,  Prev: result,  Up: Glyphs
  332. ==>: Indicating an Expansion
  333. ============================
  334.   When an expression is a macro call, it expands into a new expression.
  335. You can indicate the result of the expansion with the `@expansion{}'
  336. command.
  337.   The `@expansion{}' command is displayed as `==>' in Info and as a
  338. long arrow with a flat base in the printed output.
  339.   For example, the following
  340.      @lisp
  341.      (third '(a b c))
  342.           @expansion{} (car (cdr (cdr '(a b c))))
  343.           @result{} c
  344.      @end lisp
  345. produces
  346.      (third '(a b c))
  347.           ==> (car (cdr (cdr '(a b c))))
  348.           => c
  349. which may be read as:
  350.      `(third '(a b c))' expands to `(car (cdr (cdr '(a b c))))'; the
  351.      result of evaluating the expression is `c'.
  352. Often, as in this case, an example looks better if the `@expansion{}'
  353. and `@result{}' commands are indented five spaces.
  354. File: texinfo.info,  Node: Print Glyph,  Next: Error Glyph,  Prev: expansion,  Up: Glyphs
  355. -|: Indicating Printed Output
  356. =============================
  357.   Sometimes an expression will print output during its execution.  You
  358. can indicate the printed output with the `@print{}' command.
  359.   The `@print{}' command is displayed as `-|' in Info and similarly, as
  360. a horizontal dash butting against a vertical bar, in the printed output.
  361.   In the following example, the printed text is indicated with `-|',
  362. and the value of the expression follows on the last line.
  363.      (progn (print 'foo) (print 'bar))
  364.           -| foo
  365.           -| bar
  366.           => bar
  367. In a Texinfo source file, this example is written as follows:
  368.      @lisp
  369.      (progn (print 'foo) (print 'bar))
  370.           @print{} foo
  371.           @print{} bar
  372.           @result{} bar
  373.      @end lisp
  374. File: texinfo.info,  Node: Error Glyph,  Next: Equivalence,  Prev: Print Glyph,  Up: Glyphs
  375. error-->: Indicating an Error Message
  376. =====================================
  377.   A piece of code may cause an error when you evaluate it.  You can
  378. designate the error message with the `@error{}' command.
  379.   The `@error{}' command is displayed as `error-->' in Info and as the
  380. word `error' in a box in the printed output.
  381.   Thus,
  382.      @lisp
  383.      (+ 23 'x)
  384.      @error{} Wrong type argument: integer-or-marker-p, x
  385.      @end lisp
  386. produces
  387.      (+ 23 'x)
  388.      error--> Wrong type argument: integer-or-marker-p, x
  389. This indicates that the following error message is printed when you
  390. evaluate the expression:
  391.      Wrong type argument: integer-or-marker-p, x
  392.   Note that `error-->' itself is not part of the error message.
  393. File: texinfo.info,  Node: Equivalence,  Next: Point Glyph,  Prev: Error Glyph,  Up: Glyphs
  394. ==: Indicating Equivalence
  395. ==========================
  396.   Sometimes two expressions produce identical results.  You can
  397. indicate the exact equivalence of two forms with the `@equiv{}' command.
  398.   The `@equiv{}' command is displayed as `==' in Info and as a three
  399. parallel horizontal lines in the printed output.
  400.   Thus,
  401.      @lisp
  402.      (make-sparse-keymap) @equiv{} (list 'keymap)
  403.      @end lisp
  404. produces
  405.      (make-sparse-keymap) == (list 'keymap)
  406. This indicates that evaluating `(make-sparse-keymap)' produces
  407. identical results to evaluating `(list 'keymap)'.
  408. File: texinfo.info,  Node: Point Glyph,  Prev: Equivalence,  Up: Glyphs
  409. Indicating Point in a Buffer
  410. ============================
  411.   Sometimes you need to show an example of text in an Emacs buffer.  In
  412. such examples, the convention is to include the entire contents of the
  413. buffer in question between two lines of dashes containing the buffer
  414. name.
  415.   You can use the `@point{}' command to show the location of point in
  416. the text in the buffer.  (The symbol for point, of course, is not part
  417. of the text in the buffer; it indicates the place *between* two
  418. characters where point is located.)
  419.   The `@point{}' command is displayed as `-!-' in Info and as a small
  420. five pointed star in the printed output.
  421.   The following example shows the contents of buffer `foo' before and
  422. after evaluating a Lisp command to insert the word `changed'.
  423.      ---------- Buffer: foo ----------
  424.      This is the -!-contents of foo.
  425.      ---------- Buffer: foo ----------
  426.      (insert "changed ")
  427.           => nil
  428.      ---------- Buffer: foo ----------
  429.      This is the changed -!-contents of foo.
  430.      ---------- Buffer: foo ----------
  431.   In a Texinfo source file, the example is written like this:
  432.      @example
  433.      ---------- Buffer: foo ----------
  434.      This is the @point{}contents of foo.
  435.      ---------- Buffer: foo ----------
  436.      
  437.      (insert "changed ")
  438.           @result{} nil
  439.      ---------- Buffer: foo ----------
  440.      This is the changed @point{}contents of foo.
  441.      ---------- Buffer: foo ----------
  442.      @end example
  443. File: texinfo.info,  Node: Breaks,  Next: Definition Commands,  Prev: Glyphs,  Up: Top
  444. Making and Preventing Breaks
  445. ****************************
  446.   Usually, a Texinfo file is processed both by TeX and by one of the
  447. Info formatting commands.  Line, paragraph, or page breaks sometimes
  448. occur in the `wrong' place in one or other form of output.  You must
  449. ensure that text looks right both in the printed manual and in the Info
  450. file.
  451.   For example, in a printed manual, page breaks may occur awkwardly in
  452. the middle of an example; to prevent this, you can hold text together
  453. using a grouping command that keeps the text from being split across
  454. two pages.  Conversely, you may want to force a page break where none
  455. would occur normally.  Fortunately, problems like these do not often
  456. arise.  When they do, use the break, break prevention, or pagination
  457. commands.
  458. * Menu:
  459. * Break Commands::              Cause and prevent splits.
  460. * Line Breaks::                 How to force a single line to use two lines.
  461. * w::                           How to prevent unwanted line breaks.
  462. * sp::                          How to insert blank lines.
  463. * page::                        How to force the start of a new page.
  464. * group::                       How to prevent unwanted page breaks.
  465. * need::                        Another way to prevent unwanted page breaks.
  466. File: texinfo.info,  Node: Break Commands,  Next: Line Breaks,  Prev: Breaks,  Up: Breaks
  467. The Break Commands
  468. ==================
  469.   The break commands create line and paragraph breaks:
  470.      Force a line break.
  471. `@sp N'
  472.      Skip N blank lines.
  473.   The line-break-prevention command holds text together all on one line:
  474. `@w{TEXT}'
  475.      Prevent TEXT from being split and hyphenated across two lines.
  476.   The pagination commands apply only to printed output, since Info
  477. files do not have pages.
  478. `@page'
  479.      Start a new page in the printed manual.
  480. `@group'
  481.      Hold text together that must appear on one printed page.
  482. `@need MILS'
  483.      Start a new printed page if not enough space on this one.
  484. File: texinfo.info,  Node: Line Breaks,  Next: w,  Prev: Break Commands,  Up: Breaks
  485. `@*': Generate Line Breaks
  486. ==========================
  487.   The `@*' command forces a line break in both the printed manual and
  488. in Info.
  489.   For example,
  490.      This line @* is broken @*in two places.
  491. produces
  492.      This line
  493.       is broken
  494.      in two places.
  495. (Note that the space after the first `@*' command is faithfully carried
  496. down to the next line.)
  497.   The `@*' command is often used in a file's copyright page:
  498.      This is edition 2.0 of the Texinfo documentation,@*
  499.      and is for ...
  500. In this case, the `@*' command keeps TeX from stretching the line
  501. across the whole page in an ugly manner.
  502.      *Please note:* Do not write braces after an `@*' command; they are
  503.      not needed.
  504.      Do not write an `@refill' command at the end of a paragraph
  505.      containing an `@*' command; it will cause the paragraph to be
  506.      refilled after the line break occurs, negating the effect of the
  507.      line break.
  508. File: texinfo.info,  Node: w,  Next: sp,  Prev: Line Breaks,  Up: Breaks
  509. `@w'{TEXT}: Prevent Line Breaks
  510. ===============================
  511.   `@w{TEXT}' outputs TEXT and prohibits line breaks within TEXT.
  512.   You can use the `@w' command to prevent TeX from automatically
  513. hyphenating a long name or phrase that accidentally falls near the end
  514. of a line.
  515.      You can copy GNU software from @w{@file{prep.ai.mit.edu}}.
  516. produces
  517.      You can copy GNU software from `prep.ai.mit.edu'.
  518.   In the Texinfo file, you must write the `@w' command and its argument
  519. (all the affected text) all on one line.
  520.      *Caution:* Do not write an `@refill' command at the end of a
  521.      paragraph containing an `@w' command; it will cause the paragraph
  522.      to be refilled and may thereby negate the effect of the `@w'
  523.      command.
  524. File: texinfo.info,  Node: sp,  Next: page,  Prev: w,  Up: Breaks
  525. `@sp' N: Insert Blank Lines
  526. ===========================
  527.   A line beginning with and containing only `@sp N' generates N blank
  528. lines of space in both the printed manual and the Info file.  `@sp'
  529. also forces a paragraph break.  For example,
  530.      @sp 2
  531. generates two blank lines.
  532.   The `@sp' command is most often used in the title page.
  533. File: texinfo.info,  Node: page,  Next: group,  Prev: sp,  Up: Breaks
  534. `@page': Start a New Page
  535. =========================
  536.   A line containing only `@page' starts a new page in a printed manual.
  537. The command has no effect on Info files since they are not paginated.
  538. An `@page' command is often used in the `@titlepage' section of a
  539. Texinfo file to start the copyright page.
  540. File: texinfo.info,  Node: group,  Next: need,  Prev: page,  Up: Breaks
  541. `@group': Prevent Page Breaks
  542. =============================
  543.   The `@group' command (on a line by itself) is used inside an
  544. `@example' or similar construct to begin an unsplittable vertical
  545. group, which will appear entirely on one page in the printed output.
  546. The group is terminated by a line containing only `@end group'.  These
  547. two lines produce no output of their own, and in the Info file output
  548. they have no effect at all.
  549.   Although `@group' would make sense conceptually in a wide variety of
  550. contexts, its current implementation works reliably only within
  551. `@example' and variants, and within `@display', `@format', `@flushleft'
  552. and `@flushright'.  *Note Quotations and Examples::.  (What all these
  553. commands have in common is that each line of input produces a line of
  554. output.)  In other contexts, `@group' can cause anomalous vertical
  555. spacing.
  556.   This formatting requirement means that you should write:
  557.      @example
  558.      @group
  559.      ...
  560.      @end group
  561.      @end example
  562. with the `@group' and `@end group' commands inside the `@example' and
  563. `@end example' commands.
  564.   The `@group' command is most often used to hold an example together
  565. on one page.  In this Texinfo manual, more than 100 examples contain
  566. text that is enclosed between `@group' and `@end group'.
  567.   If you forget to end a group, you may get strange and unfathomable
  568. error messages when you run TeX.  This is because TeX keeps trying to
  569. put the rest of the Texinfo file onto the one page and does not start
  570. to generate error messages until it has processed considerable text.
  571. It is a good rule of thumb to look for a missing `@end group' if you
  572. get incomprehensible error messages in TeX.
  573. File: texinfo.info,  Node: need,  Prev: group,  Up: Breaks
  574. `@need MILS': Prevent Page Breaks
  575. =================================
  576.   A line containing only `@need N' starts a new page in a printed
  577. manual if fewer than N mils (thousandths of an inch) remain on the
  578. current page.  Do not use braces around the argument N.  The `@need'
  579. command has no effect on Info files since they are not paginated.
  580.   This paragraph is preceded by an `@need' command that tells TeX to
  581. start a new page if fewer than 800 mils (eight-tenths inch) remain on
  582. the page.  It looks like this:
  583.      @need 800
  584.      This paragraph is preceded by ...
  585.   The `@need' command is useful for preventing orphans (single lines at
  586. the bottoms of printed pages).
  587. File: texinfo.info,  Node: Definition Commands,  Next: Footnotes,  Prev: Breaks,  Up: Top
  588. Definition Commands
  589. *******************
  590.   The `@deffn' command and the other "definition commands" enable you
  591. to describe functions, variables, macros, commands, user options,
  592. special forms and other such artifacts in a uniform format.
  593.   In the Info file, a definition causes the entity
  594. category--`Function', `Variable', or whatever--to appear at the
  595. beginning of the first line of the definition, followed by the entity's
  596. name and arguments.  In the printed manual, the command causes TeX to
  597. print the entity's name and its arguments on the left margin and print
  598. the category next to the right margin.  In both output formats, the
  599. body of the definition is indented.  Also, the name of the entity is
  600. entered into the appropriate index: `@deffn' enters the name into the
  601. index of functions, `@defvr' enters it into the index of variables, and
  602. so on.
  603.   A manual need not and should not contain more than one definition for
  604. a given name.  An appendix containing a summary should use `@table'
  605. rather than the definition commands.
  606. * Menu:
  607. * Def Cmd Template::            How to structure a description using a
  608.                                   definition command.
  609. * Optional Arguments::          How to handle optional and repeated arguments.
  610. * deffnx::                      How to group two or more `first' lines.
  611. * Def Cmds in Detail::          All the definition commands.
  612. * Def Cmd Conventions::         Conventions for writing definitions.
  613. * Sample Function Definition::
  614. File: texinfo.info,  Node: Def Cmd Template,  Next: Optional Arguments,  Prev: Definition Commands,  Up: Definition Commands
  615. The Template for a Definition
  616. =============================
  617.   The `@deffn' command is used for definitions of entities that
  618. resemble functions.  To write a definition using the `@deffn' command,
  619. write the `@deffn' command at the beginning of a line and follow it on
  620. the same line by the category of the entity, the name of the entity
  621. itself, and its arguments (if any).  Then write the body of the
  622. definition on succeeding lines.  (You may embed examples in the body.)
  623. Finally, end the definition with an `@end deffn' command written on a
  624. line of its own.  (The other definition commands follow the same
  625. format.)
  626.   The template for a definition looks like this:
  627.      @deffn CATEGORY NAME ARGUMENTS...
  628.      BODY-OF-DEFINITION
  629.      @end deffn
  630. For example,
  631.      @deffn Command forward-word count
  632.      This command moves point forward @var{count} words
  633.      (or backward if @var{count} is negative). ...
  634.      @end deffn
  635. produces
  636.       - Command: forward-word COUNT
  637.           This function moves point forward COUNT words (or backward if
  638.           COUNT is negative). ...
  639.   Capitalize the category name like a title.  If the name of the
  640. category contains spaces, as in the phrase `Interactive Command', write
  641. braces around it.  For example:
  642.      @deffn {Interactive Command} isearch-forward
  643.      ...
  644.      @end deffn
  645. Otherwise, the second word will be mistaken for the name of the entity.
  646.   Some of the definition commands are more general than others.  The
  647. `@deffn' command, for example, is the general definition command for
  648. functions and the like--for entities that may take arguments.  When you
  649. use this command, you specify the category to which the entity belongs.
  650. The `@deffn' command possesses three predefined, specialized
  651. variations, `@defun', `@defmac', and `@defspec', that specify the
  652. category for you: "Function", "Macro", and "Special Form" respectively.
  653. The `@defvr' command also is accompanied by several predefined,
  654. specialized variations for describing particular kinds of variables.
  655.   The template for a specialized definition, such as `@defun', is
  656. similar to the template for a generalized definition, except that you
  657. do not need to specify the category:
  658.      @defun NAME ARGUMENTS...
  659.      BODY-OF-DEFINITION
  660.      @end defun
  661. Thus,
  662.      @defun buffer-end flag
  663.      This function returns @code{(point-min)} if @var{flag}
  664.      is less than 1, @code{(point-max)} otherwise.
  665.      ...
  666.      @end defun
  667. produces
  668.       - Function: buffer-end FLAG
  669.           This function returns `(point-min)' if FLAG is less than 1,
  670.           `(point-max)' otherwise.  ...
  671. *Note Sample Function Definition: Sample Function Definition, for a
  672. more detailed example of a function definition, including the use of
  673. `@example' inside the definition.
  674.   The other specialized commands work like `@defun'.
  675. File: texinfo.info,  Node: Optional Arguments,  Next: deffnx,  Prev: Def Cmd Template,  Up: Definition Commands
  676. Optional and Repeated Arguments
  677. ===============================
  678.   Some entities take optional or repeated arguments, which may be
  679. specified by a distinctive glyph that uses square brackets and
  680. ellipses.  For example, a special form often breaks its argument list
  681. into separate arguments in more complicated ways than a straightforward
  682. function.
  683.   An argument enclosed within square brackets is optional.  Thus,
  684. [OPTIONAL-ARG] means that OPTIONAL-ARG is optional.  An argument
  685. followed by an ellipsis is optional and may be repeated more than once.
  686. Thus, REPEATED-ARGS... stands for zero or more arguments.  Parentheses
  687. are used when several arguments are grouped into additional levels of
  688. list structure in Lisp.
  689.   Here is the `@defspec' line of an example of an imaginary special
  690. form:
  691.       - Special Form: foobar (VAR [FROM TO [INC]]) BODY...
  692. In this example, the arguments FROM and TO are optional, but must both
  693. be present or both absent.  If they are present, INC may optionally be
  694. specified as well.  These arguments are grouped with the argument VAR
  695. into a list, to distinguish them from BODY, which includes all
  696. remaining elements of the form.
  697.   In a Texinfo source file, this `@defspec' line is written like this
  698. (except it would not be split over two lines, as it is in this example).
  699.      @defspec foobar (@var{var} [@var{from} @var{to}
  700.           [@var{inc}]]) @var{body}@dots{}
  701. The function is listed in the Command and Variable Index under `foobar'.
  702. File: texinfo.info,  Node: deffnx,  Next: Def Cmds in Detail,  Prev: Optional Arguments,  Up: Definition Commands
  703. Two or More `First' Lines
  704. =========================
  705.   To create two or more `first' or header lines for a definition, follow
  706. the first `@deffn' line by a line beginning with `@deffnx'.  The
  707. `@deffnx' command works exactly like `@deffn' except that it does not
  708. generate extra vertical white space between it and the preceding line.
  709.   For example,
  710.      @deffn {Interactive Command} isearch-forward
  711.      @deffnx {Interactive Command} isearch-backward
  712.      These two search commands are similar except ...
  713.      @end deffn
  714. produces
  715.  - Interactive Command: isearch-forward
  716.  - Interactive Command: isearch-backward
  717.      These two search commands are similar except ...
  718.   Each of the other definition commands has an `x' form: `@defunx',
  719. `@defvrx', `@deftypefunx', etc.
  720.   The `x' forms work just like `@itemx'; see *Note `@itemx': itemx.
  721. File: texinfo.info,  Node: Def Cmds in Detail,  Next: Def Cmd Conventions,  Prev: deffnx,  Up: Definition Commands
  722. The Definition Commands
  723. =======================
  724.   Texinfo provides more than a dozen definition commands, all of which
  725. are described in this section.
  726.   The definition commands automatically enter the name of the entity in
  727. the appropriate index: for example, `@deffn', `@defun', and `@defmac'
  728. enter function names in the index of functions; `@defvr' and `@defvar'
  729. enter variable names in the index of variables.
  730.   Although the examples that follow mostly illustrate Lisp, the commands
  731. can be used for other programming languages.
  732. * Menu:
  733. * Functions Commands::          Commands for functions and similar entities.
  734. * Variables Commands::          Commands for variables and similar entities.
  735. * Typed Functions::             Commands for functions in typed languages.
  736. * Typed Variables::             Commands for variables in typed languages.
  737. * Abstract Objects::            Commands for object-oriented programming.
  738. * Data Types::                  The definition command for data types.
  739. File: texinfo.info,  Node: Functions Commands,  Next: Variables Commands,  Prev: Def Cmds in Detail,  Up: Def Cmds in Detail
  740. Functions and Similar Entities
  741. ------------------------------
  742.   This section describes the commands for describing functions and
  743. similar entities:
  744. `@deffn CATEGORY NAME ARGUMENTS...'
  745.      The `@deffn' command is the general definition command for
  746.      functions, interactive commands, and similar entities that may take
  747.      arguments.  You must choose a term to describe the category of
  748.      entity being defined; for example, "Function" could be used if the
  749.      entity is a function.  The `@deffn' command is written at the
  750.      beginning of a line and is followed on the same line by the
  751.      category of entity being described, the name of this particular
  752.      entity, and its arguments, if any.  Terminate the definition with
  753.      `@end deffn' on a line of its own.
  754.      For example, here is a definition:
  755.           @deffn Command forward-char nchars
  756.           Move point forward @var{nchars} characters.
  757.           @end deffn
  758.      This shows a rather terse definition for a "command" named
  759.      `forward-char' with one argument, NCHARS.
  760.      `@deffn' prints argument names such as NCHARS in italics or upper
  761.      case, as if `@var' had been used, because we think of these names
  762.      as metasyntactic variables--they stand for the actual argument
  763.      values.  Within the text of the description, write an argument name
  764.      explicitly with `@var' to refer to the value of the argument.  In
  765.      the example above, we used `@var{nchars}' in this way.
  766.      The template for `@deffn' is:
  767.           @deffn CATEGORY NAME ARGUMENTS...
  768.           BODY-OF-DEFINITION
  769.           @end deffn
  770. `@defun NAME ARGUMENTS...'
  771.      The `@defun' command is the definition command for functions.
  772.      `@defun' is equivalent to `@deffn Function ...'.
  773.      For example,
  774.           @defun set symbol new-value
  775.           Change the value of the symbol @var{symbol}
  776.           to @var{new-value}.
  777.           @end defun
  778.      shows a rather terse definition for a function `set' whose
  779.      arguments are SYMBOL and NEW-VALUE.  The argument names on the
  780.      `@defun' line automatically appear in italics or upper case as if
  781.      they were enclosed in `@var'.  Terminate the definition with `@end
  782.      defun' on a line of its own.
  783.      The template is:
  784.           @defun FUNCTION-NAME ARGUMENTS...
  785.           BODY-OF-DEFINITION
  786.           @end defun
  787.      `@defun' creates an entry in the index of functions.
  788. `@defmac NAME ARGUMENTS...'
  789.      The `@defmac' command is the definition command for macros.
  790.      `@defmac' is equivalent to `@deffn Macro ...' and works like
  791.      `@defun'.
  792. `@defspec NAME ARGUMENTS...'
  793.      The `@defspec' command is the definition command for special
  794.      forms.  (In Lisp, a special form is an entity much like a
  795.      function.) `@defspec' is equivalent to `@deffn {Special Form} ...'
  796.      and works like `@defun'.
  797. File: texinfo.info,  Node: Variables Commands,  Next: Typed Functions,  Prev: Functions Commands,  Up: Def Cmds in Detail
  798. Variables and Similar Entities
  799. ------------------------------
  800.   Here are the commands for defining variables and similar entities:
  801. `@defvr CATEGORY NAME'
  802.      The `@defvr' command is a general definition command for something
  803.      like a variable--an entity that records a value.  You must choose
  804.      a term to describe the category of entity being defined; for
  805.      example, "Variable" could be used if the entity is a variable.
  806.      Write the `@defvr' command at the beginning of a line and followed
  807.      it on the same line by the category of the entity and the name of
  808.      the entity.
  809.      Capitalize the category name like a title.  If the name of the
  810.      category contains spaces, as in the name `User Option', write
  811.      braces around it.  Otherwise, the second word will be mistaken for
  812.      the name of the entity, for example:
  813.           @defvr {User Option} fill-column
  814.           This buffer-local variable specifies
  815.           the maximum width of filled lines.
  816.           ...
  817.           @end defvr
  818.      Terminate the definition with `@end defvr' on a line of its own.
  819.      The template is:
  820.           @defvr CATEGORY NAME
  821.           BODY-OF-DEFINITION
  822.           @end defvr
  823.      `@defvr' creates an entry in the index of variables for NAME.
  824. `@defvar NAME'
  825.      The `@defvar' command is the definition command for variables.
  826.      `@defvar' is equivalent to `@defvr Variable ...'.
  827.      For example:
  828.           @defvar kill-ring
  829.           ...
  830.           @end defvar
  831.      The template is:
  832.           @defvar NAME
  833.           BODY-OF-DEFINITION
  834.           @end defvar
  835.      `@defvar' creates an entry in the index of variables for NAME.
  836. `@defopt NAME'
  837.      The `@defopt' command is the definition command for user options.
  838.      `@defopt' is equivalent to `@defvr {User Option} ...' and works
  839.      like `@defvar'.
  840. File: texinfo.info,  Node: Typed Functions,  Next: Typed Variables,  Prev: Variables Commands,  Up: Def Cmds in Detail
  841. Functions in Typed Languages
  842. ----------------------------
  843.   The `@deftypefn' command and its variations are for describing
  844. functions in C or any other language in which you must declare types of
  845. variables and functions.
  846. `@deftypefn CATEGORY DATA-TYPE NAME ARGUMENTS...'
  847.      The `@deftypefn' command is the general definition command for
  848.      functions and similar entities that may take arguments and that are
  849.      typed.  The `@deftypefn' command is written at the beginning of a
  850.      line and is followed on the same line by the category of entity
  851.      being described, the type of the returned value, the name of this
  852.      particular entity, and its arguments, if any.
  853.      For example,
  854.           @deftypefn {Library Function} int foobar
  855.              (int @var{foo}, float @var{bar})
  856.           ...
  857.           @end deftypefn
  858.      (where the text before the "...", shown above as two lines, would
  859.      actually be a single line in a real Texinfo file) produces the
  860.      following in Info:
  861.           -- Library Function: int foobar (int FOO, float BAR)
  862.           ...
  863.      This means that `foobar' is a "library function" that returns an
  864.      `int', and its arguments are FOO (an `int') and BAR (a `float').
  865.      The argument names that you write in `@deftypefn' are not subject
  866.      to an implicit `@var'--since the actual names of the arguments in
  867.      `@deftypefn' are typically scattered among data type names and
  868.      keywords, Texinfo cannot find them without help.  Instead, you
  869.      must write `@var' explicitly around the argument names.  In the
  870.      example above, the argument names are `foo' and `bar'.
  871.      The template for `@deftypefn' is:
  872.           @deftypefn CATEGORY DATA-TYPE NAME ARGUMENTS ...
  873.           BODY-OF-DESCRIPTION
  874.           @end deftypefn
  875.      Note that if the CATEGORY or DATA TYPE is more than one word then
  876.      it must be enclosed in braces to make it a single argument.
  877.      If you are describing a procedure in a language that has packages,
  878.      such as Ada, you might consider using `@deftypefn' in a manner
  879.      somewhat contrary to the convention described in the preceding
  880.      paragraphs.
  881.      For example:
  882.           @deftypefn stacks private push
  883.                   (@var{s}:in out stack;
  884.                   @var{n}:in integer)
  885.           ...
  886.           @end deftypefn
  887.      (The `@deftypefn' arguments are shown split into three lines, but
  888.      would be a single line in a real Texinfo file.)
  889.      In this instance, the procedure is classified as belonging to the
  890.      package `stacks' rather than classified as a `procedure' and its
  891.      data type is described as `private'.  (The name of the procedure
  892.      is `push', and its arguments are S and N.)
  893.      `@deftypefn' creates an entry in the index of functions for NAME.
  894. `@deftypefun DATA-TYPE NAME ARGUMENTS...'
  895.      The `@deftypefun' command is the specialized definition command
  896.      for functions in typed languages.  The command is equivalent to
  897.      `@deftypefn Function ...'.
  898.      Thus,
  899.           @deftypefun int foobar (int @var{foo}, float @var{bar})
  900.           ...
  901.           @end deftypefun
  902.      produces the following in Info:
  903.           -- Function: int foobar (int FOO, float BAR)
  904.           ...
  905.      The template is:
  906.           @deftypefun TYPE NAME ARGUMENTS...
  907.           BODY-OF-DESCRIPTION
  908.           @end deftypefun
  909.      `@deftypefun' creates an entry in the index of functions for NAME.
  910. File: texinfo.info,  Node: Typed Variables,  Next: Abstract Objects,  Prev: Typed Functions,  Up: Def Cmds in Detail
  911. Variables in Typed Languages
  912. ----------------------------
  913.   Variables in typed languages are handled in a manner similar to
  914. functions in typed languages.  *Note Typed Functions::.  The general
  915. definition command `@deftypevr' corresponds to `@deftypefn' and the
  916. specialized definition command `@deftypevar' corresponds to
  917. `@deftypefun'.
  918. `@deftypevr CATEGORY DATA-TYPE NAME'
  919.      The `@deftypevr' command is the general definition command for
  920.      something like a variable in a typed language--an entity that
  921.      records a value.  You must choose a term to describe the category
  922.      of the entity being defined; for example, "Variable" could be used
  923.      if the entity is a variable.
  924.      The `@deftypevr' command is written at the beginning of a line and
  925.      is followed on the same line by the category of the entity being
  926.      described, the data type, and the name of this particular entity.
  927.      For example:
  928.           @deftypevr {Global Flag} int enable
  929.           ...
  930.           @end deftypevr
  931.      produces the following in Info:
  932.           -- Global Flag: int enable
  933.           ...
  934.      The template is:
  935.           @deftypevr CATEGORY DATA-TYPE NAME
  936.           BODY-OF-DESCRIPTION
  937.           @end deftypevr
  938.      `@deftypevr' creates an entry in the index of variables for NAME.
  939. `@deftypevar DATA-TYPE NAME'
  940.      The `@deftypevar' command is the specialized definition command
  941.      for variables in typed languages.  `@deftypevar' is equivalent to
  942.      `@deftypevr Variable ...'.
  943.      For example:
  944.           @deftypevar int fubar
  945.           ...
  946.           @end deftypevar
  947.      produces the following in Info:
  948.           -- Variable: int fubar
  949.           ...
  950.      The template is:
  951.           @deftypevar DATA-TYPE NAME
  952.           BODY-OF-DESCRIPTION
  953.           @end deftypevar
  954.      `@deftypevar' creates an entry in the index of variables for NAME.
  955.