home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / texinfo-3.1-bin.lha / info / texi.info-8 < prev    next >
Encoding:
GNU Info File  |  1994-02-24  |  41.7 KB  |  1,057 lines

  1. This is Info file texi.info, produced by Makeinfo-1.55 from the input
  2. file texi.texi.
  3.  
  4.    This file documents Texinfo, a documentation system that uses a
  5. single source file to produce both on-line information and a printed
  6. manual.
  7.  
  8.    Copyright (C) 1988, 1990, 1991, 1992, 1993 Free Software Foundation,
  9. Inc.
  10.  
  11.    This is the second edition of the Texinfo documentation,
  12. and is consistent with version 2 of `texinfo.tex'.
  13.  
  14.    Permission is granted to make and distribute verbatim copies of this
  15. manual provided the copyright notice and this permission notice are
  16. preserved on all copies.
  17.  
  18.    Permission is granted to copy and distribute modified versions of
  19. this manual under the conditions for verbatim copying, provided that
  20. the entire resulting derived work is distributed under the terms of a
  21. permission notice identical to this one.
  22.  
  23.    Permission is granted to copy and distribute translations of this
  24. manual into another language, under the above conditions for modified
  25. versions, except that this permission notice may be stated in a
  26. translation approved by the Free Software Foundation.
  27.  
  28. 
  29. File: texi.info,  Node: Batch Formatting,  Next: Tag and Split Files,  Prev: texinfo-format commands,  Up: Create an Info File
  30.  
  31. Batch Formatting
  32. ================
  33.  
  34.    You can format Texinfo files for Info using `batch-texinfo-format'
  35. and Emacs Batch mode.  You can run Emacs in Batch mode from any shell,
  36. including a shell inside of Emacs.  (*Note Command Line Switches and
  37. Arguments: (emacs)Command Switches.)
  38.  
  39.    Here is the command to format all the files that end in `.texinfo'
  40. in the current directory (where `%' is the shell prompt):
  41.  
  42.      % emacs -batch -funcall batch-texinfo-format *.texinfo
  43.  
  44. Emacs processes all the files listed on the command line, even if an
  45. error occurs while attempting to format some of them.
  46.  
  47.    Run `batch-texinfo-format' only with Emacs in Batch mode as shown;
  48. it is not interactive.  It kills the Batch mode Emacs on completion.
  49.  
  50.    `batch-texinfo-format' is convenient if you lack `makeinfo' and want
  51. to format several Texinfo files at once.  When you use Batch mode, you
  52. create a new Emacs process.  This frees your current Emacs, so you can
  53. continue working in it.  (When you run `texinfo-format-region' or
  54. `texinfo-format-buffer', you cannot use that Emacs for anything else
  55. until the command finishes.)
  56.  
  57. 
  58. File: texi.info,  Node: Tag and Split Files,  Prev: Batch Formatting,  Up: Create an Info File
  59.  
  60. Tag Files and Split Files
  61. =========================
  62.  
  63.    If a Texinfo file has more than 30,000 bytes,
  64. `texinfo-format-buffer' automatically creates a tag table for its Info
  65. file;  `makeinfo' always creates a tag table.  With a "tag table", Info
  66. can jump to new nodes more quickly than it can otherwise.
  67.  
  68.    In addition, if the Texinfo file contains more than about 70,000
  69. bytes, `texinfo-format-buffer' and `makeinfo' split the large Info file
  70. into shorter "indirect" subfiles of about 50,000 bytes each.  Big files
  71. are split into smaller files so that Emacs does not need to make a
  72. large buffer to hold the whole of a large Info file; instead, Emacs
  73. allocates just enough memory for the small, split off file that is
  74. needed at the time.  This way, Emacs avoids wasting memory when you run
  75. Info.  (Before splitting was implemented, Info files were always kept
  76. short and "include files" were designed as a way to create a single,
  77. large printed manual out of the smaller Info files.  *Note Include
  78. Files::, for more information.  Include files are still used for very
  79. large documents, such as `The Emacs Lisp Reference Manual', in which
  80. each chapter is a separate file.)
  81.  
  82.    When a file is split, Info itself makes use of a shortened version of
  83. the original file that contains just the tag table and references to
  84. the files that were split off.  The split off files are called
  85. "indirect" files.
  86.  
  87.    The split off files have names that are created by appending `-1',
  88. `-2', `-3' and so on to the file name specified by the `@setfilename'
  89. command.  The shortened version of the original file continues to have
  90. the name specified by `@setfilename'.
  91.  
  92.    At one stage in writing this document, for example, the Info file
  93. was saved as `test-texinfo' and that file looked like this:
  94.  
  95.      Info file: test-texinfo,    -*-Text-*-
  96.      produced by texinfo-format-buffer
  97.      from file: new-texinfo-manual.texinfo
  98.      
  99.      ^_
  100.      Indirect:
  101.      test-texinfo-1: 102
  102.      test-texinfo-2: 50422
  103.      test-texinfo-3: 101300
  104.      ^_^L
  105.      Tag table:
  106.      (Indirect)
  107.      Node: overview^?104
  108.      Node: info file^?1271
  109.      Node: printed manual^?4853
  110.      Node: conventions^?6855
  111.      ...
  112.  
  113. (But `test-texinfo' had far more nodes than are shown here.)  Each of
  114. the split off, indirect files, `test-texinfo-1', `test-texinfo-2', and
  115. `test-texinfo-3', is listed in this file after the line that says
  116. `Indirect:'.  The tag table is listed after the line that says `Tag
  117. table:'.
  118.  
  119.    In the list of indirect files, the number following the file name
  120. records the cumulative number of bytes in the preceding indirect files,
  121. not counting the file list itself, the tag table, or the permissions
  122. text in each file.  In the tag table, the number following the node name
  123. records the location of the beginning of the node, in bytes from the
  124. beginning.
  125.  
  126.    If you are using `texinfo-format-buffer' to create Info files, you
  127. may want to run the `Info-validate' command.  (The `makeinfo' command
  128. does such a good job on its own, you do not need `Info-validate'.)
  129. However, you cannot run the `M-x Info-validate' node-checking command
  130. on indirect files.  For information on how to prevent files from being
  131. split and how to validate the structure of the nodes, see *Note Using
  132. Info-validate::.
  133.  
  134. 
  135. File: texi.info,  Node: Install an Info File,  Next: Command List,  Prev: Create an Info File,  Up: Top
  136.  
  137. Installing an Info File
  138. ***********************
  139.  
  140.    Info files are usually kept in the `info' directory.  (You can find
  141. the location of this directory within Emacs by typing `C-h i' to enter
  142. Info and then typing `C-x C-f' to see the full pathname to the `info'
  143. directory.)
  144.  
  145. * Menu:
  146.  
  147. * Directory file::              The top level menu for all Info files.
  148. * New Info File::               Listing a new info file.
  149. * Other Info Directories::      How to specify Info files that are
  150.                                   located in other directories.
  151.  
  152. 
  153. File: texi.info,  Node: Directory file,  Next: New Info File,  Up: Install an Info File
  154.  
  155. The `dir' File
  156. ==============
  157.  
  158.    For Info to work, the `info' directory must contain a file that
  159. serves as a top level directory for the Info system.  By convention,
  160. this file is called `dir'.  The `dir' file is itself an Info file.  It
  161. contains the top level menu for all the Info files in the system.  The
  162. menu looks like this:
  163.  
  164.      * Menu:
  165.      
  166.      * Info:    (info).     Documentation browsing system.
  167.      * Emacs:   (emacs).    The extensible, self-documenting
  168.                             text editor.
  169.      * Texinfo: (texinfo).  With one source file, make
  170.                             either a printed manual using
  171.                             TeX or an Info file.
  172.      ...
  173.  
  174.    Each of these menu entries points to the `Top' node of the Info file
  175. that is named in parentheses.  (The menu entry does not need to specify
  176. the `Top' node, since Info goes to the `Top' node if no node name is
  177. mentioned.  *Note Nodes in Other Info Files: Other Info Files.)
  178.  
  179.    Thus, the `Info' entry points to the `Top' node of the `info' file
  180. and the `Emacs' entry points to the `Top' node of the `emacs' file.
  181.  
  182.    In each of the Info files, the `Up' pointer of the `Top' node refers
  183. back to the `dir' file.  For example, the line for the `Top' node of
  184. the Emacs manual looks like this in Info:
  185.  
  186.      File: emacs  Node: Top, Up: (DIR), Next: Distrib
  187.  
  188. (Note that in this case, the `dir' file name is written in upper case
  189. letters--it can be written in either upper or lower case.  Info has a
  190. feature that it will change the case of the file name to lower case if
  191. it cannot find the name as written.)
  192.  
  193. 
  194. File: texi.info,  Node: New Info File,  Next: Other Info Directories,  Prev: Directory file,  Up: Install an Info File
  195.  
  196. Listing a New Info File
  197. =======================
  198.  
  199.    To add a new Info file to your system, write a menu entry for it in
  200. the menu in the `dir' file in the `info' directory.  Also, move the new
  201. Info file itself to the `info' directory.  For example, if you were
  202. adding documentation for GDB, you would write the following new entry:
  203.  
  204.      * GDB: (gdb).           The source-level C debugger.
  205.  
  206. The first part of the menu entry is the menu entry name, followed by a
  207. colon.  The second part is the name of the Info file, in parentheses,
  208. followed by a period.  The third part is the description.
  209.  
  210.    Conventionally, the name of an Info file has a `.info' extension.
  211. Thus, you might list the name of the file like this:
  212.  
  213.      * GDB: (gdb.info).           The source-level C debugger.
  214.  
  215. However, Info will look for a file with a `.info' extension if it does
  216. not find the file under the name given in the menu.  This means that
  217. you can refer to the file `gdb.info' as `gdb', as shown in the first
  218. example.  This looks better.
  219.  
  220. 
  221. File: texi.info,  Node: Other Info Directories,  Prev: New Info File,  Up: Install an Info File
  222.  
  223. Info Files in Other Directories
  224. ===============================
  225.  
  226.    If an Info file is not in the `info' directory, there are two ways
  227. to specify its location:
  228.  
  229.    * Write the pathname as the menu's second part, or;
  230.  
  231.    * Specify the `info' directory name in an environment variable in
  232.      your `.profile' or `.cshrc' initialization file.  (Only you and
  233.      others with the same environment variable will be able to find Info
  234.      files whose location is specified this way.)
  235.  
  236.    For example, to reach a test file in the `~bob/manuals' directory,
  237. you could add an entry like this to the menu in the `dir' file:
  238.  
  239.      * Test: (~bob/manuals/info-test).  Bob's own test file.
  240.  
  241. In this case, the absolute file name of the `info-test' file is written
  242. as the second part of the menu entry.
  243.  
  244.    Alternatively, you can tell Info where to look by setting the
  245. `INFOPATH' environment variable in your `.cshrc' or `.profile' file.
  246.  
  247.    If you use `sh' or `bash' for your shell command interpreter, you
  248. must set the `INFOPATH' environment variable in the `.profile'
  249. initialization file; but if you use `csh', you must set the variable in
  250. the `.cshrc' initialization file.  The two files require slightly
  251. different command formats.
  252.  
  253.    * In a `.cshrc' file, you could set the `INFOPATH' variable as
  254.      follows:
  255.  
  256.           setenv INFOPATH .:~bob/manuals:/gnu/emacs/info
  257.  
  258.    * In a `.profile' file, you would achieve the same effect by writing:
  259.  
  260.           INFOPATH=.:~bob/manuals:/gnu/emacs/info
  261.           export INFOPATH
  262.  
  263. Either form would cause Info to look first in the current directory,
  264. indicated by the `.', then in the `~bob/manuals' directory, and finally
  265. in the `/gnu/emacs/info' directory (which is a common location for the
  266. standard Info directory).
  267.  
  268. 
  269. File: texi.info,  Node: Command List,  Next: Tips,  Prev: Install an Info File,  Up: Top
  270.  
  271. @-Command List
  272. **************
  273.  
  274.    Here is an alphabetical list of the @-commands in Texinfo.  Square
  275. brackets, [ ], indicate optional arguments; an ellipsis, `...',
  276. indicates repeated text.
  277.  
  278. `@*'
  279.      Force a line break. Do not end a paragraph that uses `@*' with an
  280.      `@refill' command.  *Note Line Breaks::.
  281.  
  282. `@.'
  283.      Stands for a period that really does end a sentence (usually after
  284.      an end-of-sentence capital letter).  *Note Controlling Spacing::.
  285.  
  286. `@:'
  287.      Indicate to TeX that an immediately preceding period, question
  288.      mark, exclamation mark, or colon does not end a sentence.  Prevent
  289.      TeX from inserting extra whitespace as it does at the end of a
  290.      sentence.  The command has no effect on the Info file output.
  291.      *Note Controlling Spacing::.
  292.  
  293. `@@'
  294.      Stands for `@'.  *Note Inserting `@': Braces Atsigns Periods.
  295.  
  296. `@{'
  297.      Stands for a left-hand brace, `{'.  *Note Inserting @ braces and
  298.      periods: Braces Atsigns Periods.
  299.  
  300. `@}'
  301.      Stands for a right-hand brace, `}'.  *Note Inserting @ braces and
  302.      periods: Braces Atsigns Periods.
  303.  
  304. `@appendix TITLE'
  305.      Begin an appendix.  The title appears in the table of contents of
  306.      a printed manual.  In Info, the title is underlined with
  307.      asterisks.  *Note The `@unnumbered' and `@appendix' Commands:
  308.      unnumbered & appendix.
  309.  
  310. `@appendixsec TITLE'
  311. `@appendixsection TITLE'
  312.      Begin an appendix section within an appendix.  The section title
  313.      appears in the table of contents of a printed manual.  In Info,
  314.      the title is underlined with equal signs.  `@appendixsection' is a
  315.      longer spelling of the `@appendixsec' command.  *Note Section
  316.      Commands: unnumberedsec appendixsec heading.
  317.  
  318. `@appendixsubsec TITLE'
  319.      Begin an appendix subsection within an appendix.  The title appears
  320.      in the table of contents of a printed manual.  In Info, the title
  321.      is underlined with hyphens.  *Note Subsection Commands:
  322.      unnumberedsubsec appendixsubsec subheading.
  323.  
  324. `@appendixsubsubsec TITLE'
  325.      Begin an appendix subsubsection within a subappendix.  The title
  326.      appears in the table of contents of a printed manual.  In Info, the
  327.      title is underlined with periods.  *Note The `subsub' Commands:
  328.      subsubsection.
  329.  
  330. `@asis'
  331.      Used following `@table', `@ftable', and `@vtable' to print the
  332.      table's first column without highlighting ("as is").  *Note Making
  333.      a Two-column Table: Two-column Tables.
  334.  
  335. `@author AUTHOR'
  336.      Typeset AUTHOR flushleft and underline it.  *Note The `@title' and
  337.      `@author' Commands: title subtitle author.
  338.  
  339. `@b{TEXT}'
  340.      Print TEXT in bold font.  No effect in Info.  *Note Fonts::.
  341.  
  342. `@bullet{}'
  343.      Generate a large round dot, or the closest possible thing to one.
  344.      *Note `@bullet': bullet.
  345.  
  346. `@bye'
  347.      Stop formatting a file.  The formatters do not see the contents of
  348.      a file following an `@bye' command.  *Note Ending a File::.
  349.  
  350. `@c COMMENT'
  351.      Begin a comment in Texinfo.  The rest of the line does not appear
  352.      in either the Info file or the printed manual.  A synonym for
  353.      `@comment'.  *Note General Syntactic Conventions: Conventions.
  354.  
  355. `@cartouche'
  356.      Highlight an example or quotation by drawing a box with rounded
  357.      corners around it.  Pair with `@end cartouche'.  No effect in
  358.      Info.  *Note Drawing Cartouches Around Examples: cartouche.)
  359.  
  360. `@center LINE-OF-TEXT'
  361.      Center the line of text following the command.  *Note `@center':
  362.      titlefont center sp.
  363.  
  364. `@chapheading TITLE'
  365.      Print a chapter-like heading in the text, but not in the table of
  366.      contents of a printed manual.  In Info, the title is underlined
  367.      with asterisks.  *Note `@majorheading' and `@chapheading':
  368.      majorheading & chapheading.
  369.  
  370. `@chapter TITLE'
  371.      Begin a chapter.  The chapter title appears in the table of
  372.      contents of a printed manual.  In Info, the title is underlined
  373.      with asterisks.  *Note `@chapter': chapter.
  374.  
  375. `@cindex ENTRY'
  376.      Add ENTRY to the index of concepts.  *Note Defining the Entries of
  377.      an Index: Index Entries.
  378.  
  379. `@cite{REFERENCE}'
  380.      Highlight the name of a book or other reference that lacks a
  381.      companion Info file.  *Note `@cite': cite.
  382.  
  383. `@clear FLAG'
  384.      Unset FLAG, preventing the Texinfo formatting commands from
  385.      formatting text between subsequent pairs of `@ifset FLAG' and
  386.      `@end ifset' commands, and preventing `@value{FLAG}' from
  387.      expanding to the value to which FLAG is set.  *Note `@set'
  388.      `@clear' `@value': set clear value.
  389.  
  390. `@code{SAMPLE-CODE}'
  391.      Highlight text that is an expression, a syntactically complete
  392.      token of a program, or a program name.  *Note `@code': code.
  393.  
  394. `@comment COMMENT'
  395.      Begin a comment in Texinfo.  The rest of the line does not appear
  396.      in either the Info file or the printed manual.  A synonym for `@c'.
  397.      *Note General Syntactic Conventions: Conventions.
  398.  
  399. `@contents'
  400.      Print a complete table of contents.  Has no effect in Info, which
  401.      uses menus instead.  *Note Generating a Table of Contents:
  402.      Contents.
  403.  
  404. `@copyright{}'
  405.      Generate a copyright symbol.  *Note `@copyright': copyright symbol.
  406.  
  407. `@defcodeindex INDEX-NAME'
  408.      Define a new index and its indexing command.  Print entries in an
  409.      `@code' font.  *Note Defining New Indices: New Indices.
  410.  
  411. `@defcv CATEGORY CLASS NAME'
  412.      Format a description for a variable associated with a class in
  413.      object-oriented programming.  Takes three arguments: the category
  414.      of thing being defined, the class to which it belongs, and its
  415.      name.  *Note Definition Commands::.
  416.  
  417. `@deffn CATEGORY NAME ARGUMENTS...'
  418.      Format a description for a function, interactive command, or
  419.      similar entity that may take arguments.  `@deffn' takes as
  420.      arguments the category of entity being described, the name of this
  421.      particular entity, and its arguments, if any.  *Note Definition
  422.      Commands::.
  423.  
  424. `@defindex INDEX-NAME'
  425.      Define a new index and its indexing command.  Print entries in a
  426.      roman font.  *Note Defining New Indices: New Indices.
  427.  
  428. `@defivar CLASS INSTANCE-VARIABLE-NAME'
  429.      Format a description for an instance variable in object-oriented
  430.      programming.  The command is equivalent to `@defcv {Instance
  431.      Variable} ...'.  *Note Definition Commands::.
  432.  
  433. `@defmac MACRO-NAME ARGUMENTS...'
  434.      Format a description for a macro.  The command is equivalent to
  435.      `@deffn Macro ...'.  *Note Definition Commands::.
  436.  
  437. `@defmethod CLASS METHOD-NAME ARGUMENTS...'
  438.      Format a description for a method in object-oriented programming.
  439.      The command is equivalent to `@defop Method ...'.  Takes as
  440.      arguments the name of the class of the method, the name of the
  441.      method, and its arguments, if any.  *Note Definition Commands::.
  442.  
  443. `@defop CATEGORY CLASS NAME ARGUMENTS...'
  444.      Format a description for an operation in object-oriented
  445.      programming.  `@defop' takes as arguments the overall name of the
  446.      category of operation, the name of the class of the operation, the
  447.      name of the operation, and its arguments, if any.  *Note
  448.      Definition Commands::.
  449.  
  450. `@defopt OPTION-NAME'
  451.      Format a description for a user option.  The command is equivalent
  452.      to `@defvr {User Option} ...'.  *Note Definition Commands::.
  453.  
  454. `@defspec SPECIAL-FORM-NAME ARGUMENTS...'
  455.      Format a description for a special form.  The command is
  456.      equivalent to `@deffn {Special Form} ...'.  *Note Definition
  457.      Commands::.
  458.  
  459. `@deftp CATEGORY NAME-OF-TYPE ATTRIBUTES...'
  460.      Format a description for a data type.  `@deftp' takes as arguments
  461.      the category, the name of the type (which is a word like `int' or
  462.      `float'), and then the names of attributes of objects of that
  463.      type.  *Note Definition Commands::.
  464.  
  465. `@deftypefn CLASSIFICATION DATA-TYPE NAME ARGUMENTS...'
  466.      Format a description for a function or similar entity that may take
  467.      arguments and that is typed.  `@deftypefn' takes as arguments the
  468.      classification of entity being described, the type, the name of
  469.      the entity, and its arguments, if any.  *Note Definition
  470.      Commands::.
  471.  
  472. `@deftypefun DATA-TYPE FUNCTION-NAME ARGUMENTS...'
  473.      Format a description for a function in a typed language.  The
  474.      command is equivalent to `@deftypefn Function ...'.  *Note
  475.      Definition Commands::.
  476.  
  477. `@deftypevr CLASSIFICATION DATA-TYPE NAME'
  478.      Format a description for something like a variable in a typed
  479.      language--an entity that records a value.  Takes as arguments the
  480.      classification of entity being described, the type, and the name of
  481.      the entity.  *Note Definition Commands::.
  482.  
  483. `@deftypevar DATA-TYPE VARIABLE-NAME'
  484.      Format a description for a variable in a typed language.  The
  485.      command is equivalent to `@deftypevr Variable ...'.  *Note
  486.      Definition Commands::.
  487.  
  488. `@defun FUNCTION-NAME ARGUMENTS...'
  489.      Format a description for functions.  The command is equivalent to
  490.      `@deffn Function ...'.  *Note Definition Commands::.
  491.  
  492. `@defvar VARIABLE-NAME'
  493.      Format a description for variables.  The command is equivalent to
  494.      `@defvr Variable ...'.  *Note Definition Commands::.
  495.  
  496. `@defvr CATEGORY NAME'
  497.      Format a description for any kind of variable.  `@defvr' takes as
  498.      arguments the category of the entity and the name of the entity.
  499.      *Note Definition Commands::.
  500.  
  501. `@dfn{TERM}'
  502.      Highlight the introductory or defining use of a term.  *Note
  503.      `@dfn': dfn.
  504.  
  505. `@display'
  506.      Begin a kind of example.  Indent text, do not fill, do not select a
  507.      new font.  Pair with `@end display'.  *Note `@display': display.
  508.  
  509. `@dmn{DIMENSION}'
  510.      Format a dimension.  Cause TeX to insert a narrow space before
  511.      DIMENSION.  No effect in Info.  Use for writing a number followed
  512.      by an abbreviation of a dimension name, such as `12pt', written as
  513.      `12@dmn{pt}', with no space between the number and the `@dmn'
  514.      command.  *Note `@dmn': dmn.
  515.  
  516. `@dots{}'
  517.      Insert an ellipsis: `...'.  *Note `@dots': dots.
  518.  
  519. `@emph{TEXT}'
  520.      Highlight TEXT; text is displayed in *italics* in printed output,
  521.      and surrounded by asterisks in Info.  *Note Emphasizing Text:
  522.      Emphasis.
  523.  
  524. `@enumerate [NUMBER-OR-LETTER]'
  525.      Begin a numbered list, using `@item' for each entry.  Optionally,
  526.      start list with NUMBER-OR-LETTER.  Pair with `@end enumerate'.
  527.      *Note `@enumerate': enumerate.
  528.  
  529. `@equiv{}'
  530.      Indicate to the reader the exact equivalence of two forms with a
  531.      glyph: `=='.  *Note Equivalence::.
  532.  
  533. `@error{}'
  534.      Indicate to the reader with a glyph that the following text is an
  535.      error message: `error-->'.  *Note Error Glyph::.
  536.  
  537. `@evenfooting [LEFT] @| [CENTER] @| [RIGHT]'
  538.      Specify page footings for even-numbered (left-hand) pages.  Not
  539.      relevant to Info.  *Note How to Make Your Own Headings: Custom
  540.      Headings.
  541.  
  542. `@evenheading [LEFT] @| [CENTER] @| [RIGHT]'
  543.      Specify page headings for even-numbered (left-hand) pages.  Not
  544.      relevant to Info.  *Note How to Make Your Own Headings: Custom
  545.      Headings.
  546.  
  547. `@everyfooting [LEFT] @| [CENTER] @| [RIGHT]'
  548.      Specify page footings for every page.  Not relevant to Info.
  549.      *Note How to Make Your Own Headings: Custom Headings.
  550.  
  551. `@everyheading [LEFT] @| [CENTER] @| [RIGHT]'
  552.      Specify page headings for every page.  Not relevant to Info.
  553.      *Note How to Make Your Own Headings: Custom Headings.
  554.  
  555. `@example'
  556.      Begin an example.  Indent text, do not fill, and select
  557.      fixed-width font.  Pair with `@end example'.  *Note `@example':
  558.      example.
  559.  
  560. `@exdent LINE-OF-TEXT'
  561.      Remove any indentation a line might have.  *Note Undoing the
  562.      Indentation of a Line: exdent.
  563.  
  564. `@expansion{}'
  565.      Indicate the result of a macro expansion to the reader with a
  566.      special glyph: `==>'.  *Note ==> Indicating an Expansion:
  567.      expansion.
  568.  
  569. `@file{FILENAME}'
  570.      Highlight the name of a file, buffer, node, or directory.  *Note
  571.      `@file': file.
  572.  
  573. `@finalout'
  574.      Prevent TeX from printing large black warning rectangles beside
  575.      over-wide lines.  *Note Overfull hboxes::.
  576.  
  577. `@findex ENTRY'
  578.      Add ENTRY to the index of functions.  *Note Defining the Entries
  579.      of an Index: Index Entries.
  580.  
  581. `@flushleft'
  582.      Left justify every line but leave the right end ragged.  Leave
  583.      font as is.  Pair with `@end flushleft'.  *Note `@flushleft' and
  584.      `@flushright': flushleft & flushright.
  585.  
  586. `@flushright'
  587.      Right justify every line but leave the left end ragged.  Leave
  588.      font as is.  Pair with `@end flushright'.  *Note `@flushleft' and
  589.      `@flushright': flushleft & flushright.
  590.  
  591. `@footnote{TEXT-OF-FOOTNOTE}'
  592.      Enter a footnote.  Footnote text is printed at the bottom of the
  593.      page by TeX; Info may format in either `End' node or `Separate'
  594.      node style.  *Note Footnotes::.
  595.  
  596. `@footnotestyle STYLE'
  597.      Specify an Info file's footnote style, either `end' for the end
  598.      node style or `separate' for the separate node style.  *Note
  599.      Footnotes::.
  600.  
  601. `@format'
  602.      Begin a kind of example.  Like `@example' or `@display', but do
  603.      not narrow the margins and do not select the fixed-width font.
  604.      Pair with `@end format'.  *Note `@example': example.
  605.  
  606. `@ftable FORMATTING-COMMAND'
  607.      Begin a two-column table, using `@item' for each entry.
  608.      Automatically enter each of the items in the first column into the
  609.      index of functions.  Pair with `@end ftable'.  The same as
  610.      `@table', except for indexing.  *Note `@ftable' and `@vtable':
  611.      ftable vtable.
  612.  
  613. `@group'
  614.      Hold text together that must appear on one printed page.  Pair with
  615.      `@end group'.  Not relevant to Info.  *Note `@group': group.
  616.  
  617. `@heading TITLE'
  618.      Print an unnumbered section-like heading in the text, but not in
  619.      the table of contents of a printed manual.  In Info, the title is
  620.      underlined with equal signs.  *Note Section Commands:
  621.      unnumberedsec appendixsec heading.
  622.  
  623. `@headings ON-OFF-SINGLE-DOUBLE'
  624.      Turn page headings on or off, or specify single-sided or
  625.      double-sided page headings for printing.  `@headings on' is
  626.      synonymous with `@headings double'.  *Note The `@headings'
  627.      Command: headings on off.
  628.  
  629. `@i{TEXT}'
  630.      Print TEXT in italic font.  No effect in Info.  *Note Fonts::.
  631.  
  632. `@ifclear FLAG'
  633.      If FLAG is cleared, the Texinfo formatting commands format text
  634.      between `@ifclear FLAG' and the following `@end ifclear' command.
  635.      *Note `@set' `@clear' `@value': set clear value.
  636.  
  637. `@ifinfo'
  638.      Begin a stretch of text that will be ignored by TeX when it
  639.      typesets the printed manual.  The text appears only in the Info
  640.      file.  Pair with `@end ifinfo'.  *Note Conditionally Visible Text:
  641.      Conditionals.
  642.  
  643. `@ifset FLAG'
  644.      If FLAG is set, the Texinfo formatting commands format text
  645.      between `@ifset FLAG' and the following `@end ifset' command.
  646.      *Note `@set' `@clear' `@value': set clear value.
  647.  
  648. `@iftex'
  649.      Begin a stretch of text that will not appear in the Info file, but
  650.      will be processed only by TeX.  Pair with `@end iftex'.  *Note
  651.      Conditionally Visible Text: Conditionals.
  652.  
  653. `@ignore'
  654.      Begin a stretch of text that will not appear in either the Info
  655.      file or the printed output.  Pair with `@end ignore'.  *Note
  656.      Comments and Ignored Text: Comments.
  657.  
  658. `@include FILENAME'
  659.      Incorporate the contents of the file FILENAME into the Info file
  660.      or printed document.  *Note Include Files::.
  661.  
  662. `@inforef{NODE-NAME, [ENTRY-NAME], INFO-FILE-NAME}'
  663.      Make a cross reference to an Info file for which there is no
  664.      printed manual.  *Note Cross references using `@inforef': inforef.
  665.  
  666. `\input MACRO-DEFINITIONS-FILE'
  667.      Use the specified macro definitions file.  This command is used
  668.      only in the first line of a Texinfo file to cause TeX to make use
  669.      of the `texinfo' macro definitions file.  The backslash in `\input'
  670.      is used instead of an `@' because TeX does not properly recognize
  671.      `@' until after it has read the definitions file.  *Note The
  672.      Texinfo File Header: Header.
  673.  
  674. `@item'
  675.      Indicate the beginning of a marked paragraph for `@itemize' and
  676.      `@enumerate'; indicate the beginning of the text of a first column
  677.      entry for `@table', `@ftable', and `@vtable'.  *Note Lists and
  678.      Tables::.
  679.  
  680. `@itemize  MARK-GENERATING-CHARACTER-OR-COMMAND'
  681.      Produce a sequence of indented paragraphs, with a mark inside the
  682.      left margin at the beginning of each paragraph.  Pair with `@end
  683.      itemize'.  *Note `@itemize': itemize.
  684.  
  685. `@itemx'
  686.      Like `@item' but do not generate extra vertical space above the
  687.      item text.  *Note `@itemx': itemx.
  688.  
  689. `@kbd{KEYBOARD-CHARACTERS}'
  690.      Indicate text that consists of characters of input to be typed by
  691.      users.  *Note `@kbd': kbd.
  692.  
  693. `@key{KEY-NAME}'
  694.      Highlight KEY-NAME, a conventional name for a key on a keyboard.
  695.      *Note `@key': key.
  696.  
  697. `@kindex ENTRY'
  698.      Add ENTRY to the index of keys.  *Note Defining the Entries of an
  699.      Index: Index Entries.
  700.  
  701. `@lisp'
  702.      Begin an example of Lisp code.  Indent text, do not fill, and
  703.      select fixed-width font.  Pair with `@end lisp'.  *Note `@lisp':
  704.      Lisp Example.
  705.  
  706. `@majorheading  TITLE'
  707.      Print a chapter-like heading in the text, but not in the table of
  708.      contents of a printed manual.  Generate more vertical whitespace
  709.      before the heading than the `@chapheading' command.  In Info, the
  710.      chapter heading line is underlined with asterisks.  *Note
  711.      `@majorheading' and `@chapheading': majorheading & chapheading.
  712.  
  713. `@menu'
  714.      Mark the beginning of a menu of nodes in Info.  No effect in a
  715.      printed manual.  Pair with `@end menu'.  *Note Menus::.
  716.  
  717. `@minus{}'
  718.      Generate a minus sign.  *Note `@minus': minus.
  719.  
  720. `@need N'
  721.      Start a new page in a printed manual if fewer than N mils
  722.      (thousandths of an inch) remain on the current page.  *Note
  723.      `@need': need.
  724.  
  725. `@node NAME, NEXT, PREVIOUS, UP'
  726.      Define the beginning of a new node in Info, and serve as a locator
  727.      for references for TeX.  *Note `@node': node.
  728.  
  729. `@noindent'
  730.      Prevent text from being indented as if it were a new paragraph.
  731.      *Note `@noindent': noindent.
  732.  
  733. `@oddfooting [LEFT] @| [CENTER] @| [RIGHT]'
  734.      Specify page footings for odd-numbered (right-hand) pages.  Not
  735.      relevant to Info.  *Note How to Make Your Own Headings: Custom
  736.      Headings.
  737.  
  738. `@oddheading [LEFT] @| [CENTER] @| [RIGHT]'
  739.      Specify page headings for odd-numbered (right-hand) pages.  Not
  740.      relevant to Info.  *Note How to Make Your Own Headings: Custom
  741.      Headings.
  742.  
  743. `@page'
  744.      Start a new page in a printed manual.  No effect in Info.  *Note
  745.      `@page': page.
  746.  
  747. `@paragraphindent INDENT'
  748.      Indent paragraphs by INDENT number of spaces; delete indentation
  749.      if the value of INDENT is 0; and do not change indentation if
  750.      INDENT is `asis'. *Note Paragraph Indenting: paragraphindent.
  751.  
  752. `@pindex ENTRY'
  753.      Add ENTRY to the index of programs.  *Note Defining the Entries of
  754.      an Index: Index Entries.
  755.  
  756. `@point{}'
  757.      Indicate the position of point in a buffer to the reader with a
  758.      glyph: `-!-'.  *Note Indicating Point in a Buffer: Point Glyph.
  759.  
  760. `@print{}'
  761.      Indicate printed output to the reader with a glyph: `-|'.  *Note
  762.      Print Glyph::.
  763.  
  764. `@printindex INDEX-NAME'
  765.      Print an alphabetized two-column index in a printed manual or
  766.      generate an alphabetized menu of index entries for Info.  *Note
  767.      Printing Indices & Menus::.
  768.  
  769. `@pxref{NODE-NAME, [ENTRY], [TOPIC-OR-TITLE], [INFO-FILE], [MANUAL]}'
  770.      Make a reference that starts with a lower case `see' in a printed
  771.      manual.  Use within parentheses only.  Do not follow command with a
  772.      punctuation mark.  The Info formatting commands automatically
  773.      insert terminating punctuation as needed, which is why you do not
  774.      need to insert punctuation.  Only the first argument is mandatory.
  775.      *Note `@pxref': pxref.
  776.  
  777. `@quotation'
  778.      Narrow the margins to indicate text that is quoted from another
  779.      real or imaginary work.  Write command on a line of its own.  Pair
  780.      with `@end quotation'.  *Note `@quotation': quotation.
  781.  
  782. `@r{TEXT}'
  783.      Print TEXT in roman font.  No effect in Info.  *Note Fonts::.
  784.  
  785. `@ref{NODE-NAME, [ENTRY], [TOPIC-OR-TITLE], [INFO-FILE], [MANUAL]}'
  786.      Make a reference.  In a printed manual, the reference does not
  787.      start with a `See'.  Follow command with a punctuation mark.  Only
  788.      the first argument is mandatory.  *Note `@ref': ref.
  789.  
  790. `@refill'
  791.      In Info, refill and indent the paragraph after all the other
  792.      processing has been done.  No effect on TeX, which always refills.
  793.      This command is no longer needed, since all formatters now
  794.      automatically refill.  *Note Refilling Paragraphs::.
  795.  
  796. `@result{}'
  797.      Indicate the result of an expression to the reader with a special
  798.      glyph: `=>'.  *Note `@result': result.
  799.  
  800. `@samp{TEXT}'
  801.      Highlight TEXT that is a literal example of a sequence of
  802.      characters.  Used for single characters, for statements, and often
  803.      for entire shell commands.  *Note `@samp': samp.
  804.  
  805. `@sc{TEXT}'
  806.      Set TEXT in a printed output in THE SMALL CAPS FONT and set text
  807.      in the Info file in uppercase letters.  *Note Smallcaps::.
  808.  
  809. `@section TITLE'
  810.      Begin a section within a chapter.  In a printed manual, the section
  811.      title is numbered and appears in the table of contents.  In Info,
  812.      the title is underlined with equal signs.  *Note `@section':
  813.      section.
  814.  
  815. `@set FLAG [STRING]'
  816.      Make FLAG active, causing the Texinfo formatting commands to
  817.      format text between subsequent pairs of `@ifset FLAG' and `@end
  818.      ifset' commands.  Optionally, set value of FLAG to STRING.  *Note
  819.      `@set' `@clear' `@value': set clear value.
  820.  
  821. `@setchapternewpage ON-OFF-ODD'
  822.      Specify whether chapters start on new pages, and if so, whether on
  823.      odd-numbered (right-hand) new pages.  *Note `@setchapternewpage':
  824.      setchapternewpage.
  825.  
  826. `@setfilename INFO-FILE-NAME'
  827.      Provide a name for the Info file.  *Note General Syntactic
  828.      Conventions: Conventions.
  829.  
  830. `@settitle TITLE'
  831.      Provide a title for page headers in a printed manual.  *Note
  832.      General Syntactic Conventions: Conventions.
  833.  
  834. `@shortcontents'
  835.      Print a short table of contents.  Not relevant to Info, which uses
  836.      menus rather than tables of contents.  A synonym for
  837.      `@summarycontents'.  *Note Generating a Table of Contents:
  838.      Contents.
  839.  
  840. `@smallbook'
  841.      Cause TeX to produce a printed manual in a 7 by 9.25 inch format
  842.      rather than the regular 8.5 by 11 inch format.  *Note Printing
  843.      Small Books: smallbook.  Also, see *Note `@smallexample' and
  844.      `@smalllisp': smallexample & smalllisp.
  845.  
  846. `@smallexample'
  847.      Indent text to indicate an example.  Do not fill, select
  848.      fixed-width font.  In `@smallbook' format, print text in a smaller
  849.      font than with `@example'.  Pair with `@end smallexample'.  *Note
  850.      `@smallexample' and `@smalllisp': smallexample & smalllisp.
  851.  
  852. `@smalllisp'
  853.      Begin an example of Lisp code.  Indent text, do not fill, select
  854.      fixed-width font.  In `@smallbook' format, print text in a smaller
  855.      font.  Pair with `@end smalllisp'.  *Note `@smallexample' and
  856.      `@smalllisp': smallexample & smalllisp.
  857.  
  858. `@sp N'
  859.      Skip N blank lines.  *Note `@sp': sp.
  860.  
  861. `@strong TEXT'
  862.      Emphasize TEXT by typesetting it in a *bold* font for the printed
  863.      manual and by surrounding it with asterisks for Info.  *Note
  864.      Emphasizing Text: emph & strong.
  865.  
  866. `@subheading TITLE'
  867.      Print an unnumbered subsection-like heading in the text, but not in
  868.      the table of contents of a printed manual.  In Info, the title is
  869.      underlined with hyphens.  *Note `@unnumberedsubsec'
  870.      `@appendixsubsec' `@subheading': unnumberedsubsec appendixsubsec
  871.      subheading.
  872.  
  873. `@subsection TITLE'
  874.      Begin a subsection within a section.  In a printed manual, the
  875.      subsection title is numbered and appears in the table of contents.
  876.      In Info, the title is underlined with hyphens.  *Note
  877.      `@subsection': subsection.
  878.  
  879. `@subsubheading TITLE'
  880.      Print an unnumbered subsubsection-like heading in the text, but
  881.      not in the table of contents of a printed manual.  In Info, the
  882.      title is underlined with periods.  *Note The `subsub' Commands:
  883.      subsubsection.
  884.  
  885. `@subsubsection TITLE'
  886.      Begin a subsubsection within a subsection.  In a printed manual,
  887.      the subsubsection title is numbered and appears in the table of
  888.      contents.  In Info, the title is underlined with periods.  *Note
  889.      The `subsub' Commands: subsubsection.
  890.  
  891. `@subtitle TITLE'
  892.      In a printed manual, set a subtitle in a normal sized font flush to
  893.      the right-hand side of the page.  Not relevant to Info, which does
  894.      not have title pages.  *Note `@title' `@subtitle' and `@author'
  895.      Commands: title subtitle author.
  896.  
  897. `@summarycontents'
  898.      Print a short table of contents.  Not relevant to Info, which uses
  899.      menus rather than tables of contents.  A synonym for
  900.      `@shortcontents'.  *Note Generating a Table of Contents: Contents.
  901.  
  902. `@syncodeindex FROM-INDEX INTO-INDEX'
  903.      Merge the index named in the first argument into the index named in
  904.      the second argument, printing the entries from the first index in
  905.      `@code' font.  *Note Combining Indices::.
  906.  
  907. `@synindex FROM-INDEX INTO-INDEX'
  908.      Merge the index named in the first argument into the index named in
  909.      the second argument.  Do not change the font of FROM-INDEX
  910.      entries.  *Note Combining Indices::.
  911.  
  912. `@t{TEXT}'
  913.      Print TEXT in a fixed-width, typewriter-like font.  No effect in
  914.      Info.  *Note Fonts::.
  915.  
  916. `@table FORMATTING-COMMAND'
  917.      Begin a two-column table, using `@item' for each entry.  Write
  918.      each first column entry on the same line as `@item'.  First column
  919.      entries are printed in the font resulting from FORMATTING-COMMAND.
  920.      Pair with `@end table'.  *Note Making a Two-column Table:
  921.      Two-column Tables.  Also see *Note `@ftable' and `@vtable': ftable
  922.      vtable, and *Note `@itemx': itemx.
  923.  
  924. `@TeX{}'
  925.      Insert the logo TeX.  *Note Inserting TeX and (C): TeX and
  926.      copyright.
  927.  
  928. `@tex'
  929.      Enter TeX completely.  Pair with `@end tex'.  *Note Using Ordinary
  930.      TeX Commands: Using Ordinary TeX Commands.
  931.  
  932. `@thischapter'
  933.      In a heading or footing, stands for the number and name of the
  934.      current chapter, in the format `Chapter 1: Title'.  *Note How to
  935.      Make Your Own Headings: Custom Headings.
  936.  
  937. `@thischaptername'
  938.      In a heading or footing, stands for the name of the current
  939.      chapter.  *Note How to Make Your Own Headings: Custom Headings.
  940.  
  941. `@thisfile'
  942.      In a heading or footing, stands for the name of the current
  943.      `@include' file.  Does not insert anything if not within an
  944.      `@include' file.  *Note How to Make Your Own Headings: Custom
  945.      Headings.
  946.  
  947. `@thispage'
  948.      In a heading or footing, stands for the current page number.
  949.      *Note How to Make Your Own Headings: Custom Headings.
  950.  
  951. `@thistitle'
  952.      In a heading or footing, stands for the name of the document, as
  953.      specified by the `@settitle' command.  *Note How to Make Your Own
  954.      Headings: Custom Headings.
  955.  
  956. `@tindex ENTRY'
  957.      Add ENTRY to the index of data types.  *Note Defining the Entries
  958.      of an Index: Index Entries.
  959.  
  960. `@title TITLE'
  961.      In a printed manual, set a title flush to the left-hand side of the
  962.      page in a larger than normal font and underline it with a black
  963.      rule.  Not relevant to Info, which does not have title pages.
  964.      *Note The `@title' `@subtitle' and `@author' Commands: title
  965.      subtitle author.
  966.  
  967. `@titlefont{TEXT}'
  968.      In a printed manual, print TEXT in a larger than normal font.  Not
  969.      relevant to Info, which does not have title pages.  *Note The
  970.      `@titlefont' `@center' and `@sp' Commands: titlefont center sp.
  971.  
  972. `@titlepage'
  973.      Indicate to Texinfo the beginning of the title page.  Write
  974.      command on a line of its own.  Pair with `@end titlepage'.
  975.      Nothing between `@titlepage' and `@end titlepage' appears in Info.
  976.      *Note `@titlepage': titlepage.
  977.  
  978. `@today{}'
  979.      Insert the current date, in `1 Jan 1900' style.  *Note How to Make
  980.      Your Own Headings: Custom Headings.
  981.  
  982. `@top TITLE'
  983.      In a Texinfo file to be formatted with `makeinfo', identify the
  984.      topmost `@node' line in the file, which must be written on the line
  985.      immediately preceding the `@top' command.  Used for `makeinfo''s
  986.      node pointer insertion feature.  The title is underlined with
  987.      asterisks.  Both the `@node' line and the `@top' line normally
  988.      should be enclosed by `@ifinfo' and `@end ifinfo'.  In TeX and
  989.      `texinfo-format-buffer', the `@top' command is merely a synonym
  990.      for `@unnumbered'.  *Note Creating Pointers with `makeinfo':
  991.      makeinfo Pointer Creation.
  992.  
  993. `@unnumbered TITLE'
  994.      In a printed manual, begin a chapter that appears without chapter
  995.      numbers of any kind.  The title appears in the table of contents
  996.      of a printed manual.  In Info, the title is underlined with
  997.      asterisks.  *Note `@unnumbered' and `@appendix': unnumbered &
  998.      appendix.
  999.  
  1000. `@unnumberedsec TITLE'
  1001.      In a printed manual, begin a section that appears without section
  1002.      numbers of any kind.  The title appears in the table of contents
  1003.      of a printed manual.  In Info, the title is underlined with equal
  1004.      signs.  *Note Section Commands: unnumberedsec appendixsec heading.
  1005.  
  1006. `@unnumberedsubsec TITLE'
  1007.      In a printed manual, begin an unnumbered subsection within a
  1008.      chapter.  The title appears in the table of contents of a printed
  1009.      manual.  In Info, the title is underlined with hyphens.  *Note
  1010.      `@unnumberedsubsec' `@appendixsubsec' `@subheading':
  1011.      unnumberedsubsec appendixsubsec subheading.
  1012.  
  1013. `@unnumberedsubsubsec TITLE'
  1014.      In a printed manual, begin an unnumbered subsubsection within a
  1015.      chapter.  The title appears in the table of contents of a printed
  1016.      manual.  In Info, the title is underlined with periods.  *Note The
  1017.      `subsub' Commands: subsubsection.
  1018.  
  1019. `@value{FLAG}'
  1020.      Replace FLAG with the value to which it is set by `@set FLAG'.
  1021.      *Note `@set' `@clear' `@value': set clear value.
  1022.  
  1023. `@var{METASYNTACTIC-VARIABLE}'
  1024.      Highlight a metasyntactic variable, which is something that stands
  1025.      for another piece of text.  *Note Indicating Metasyntactic
  1026.      Variables: var.
  1027.  
  1028. `@vindex ENTRY'
  1029.      Add ENTRY to the index of variables.  *Note Defining the Entries
  1030.      of an Index: Index Entries.
  1031.  
  1032. `@vskip AMOUNT'
  1033.      In a printed manual, insert whitespace so as to push text on the
  1034.      remainder of the page towards the bottom of the page.  Used in
  1035.      formatting the copyright page with the argument `0pt plus 1filll'.
  1036.      (Note spelling of `filll'.)  `@vskip' may be used only in
  1037.      contexts ignored for Info.  *Note The Copyright Page and Printed
  1038.      Permissions: Copyright & Permissions.
  1039.  
  1040. `@vtable FORMATTING-COMMAND'
  1041.      Begin a two-column table, using `@item' for each entry.
  1042.      Automatically enter each of the items in the first column into the
  1043.      index of variables.  Pair with `@end vtable'.  The same as
  1044.      `@table', except for indexing.  *Note `@ftable' and `@vtable':
  1045.      ftable vtable.
  1046.  
  1047. `@w{TEXT}'
  1048.      Prevent TEXT from being split across two lines.  Do not end a
  1049.      paragraph that uses `@w' with an `@refill' command.  In the
  1050.      Texinfo file, keep TEXT on one line.  *Note `@w': w.
  1051.  
  1052. `@xref{NODE-NAME, [ENTRY], [TOPIC-OR-TITLE], [INFO-FILE], [MANUAL]}'
  1053.      Make a reference that starts with `See' in a printed manual.
  1054.      Follow command with a punctuation mark.  Only the first argument is
  1055.      mandatory.  *Note `@xref': xref.
  1056.  
  1057.