home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / texinfo-3.7-bin.lha / info / texinfo.info-2 (.txt) < prev    next >
GNU Info File  |  1996-10-12  |  51KB  |  968 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: Acknowledgements,  Prev: Short Sample,  Up: Overview
  21. Acknowledgements
  22. ================
  23.   Richard M. Stallman wrote Edition 1.0 of this manual.
  24. Robert J. Chassell revised and extended it, starting with Edition 1.1.
  25.   Our thanks go out to all who helped improve this work, particularly to
  26. Francois Pinard and David D. Zuhn, who tirelessly recorded and reported
  27. mistakes and obscurities; our special thanks go to Melissa Weisshaus
  28. for her frequent and often tedious reviews of nearly similar editions.
  29. Our mistakes are our own.
  30.   Please send suggestions and corrections to:
  31.      Internet address:
  32.          bug-texinfo@prep.ai.mit.edu
  33. Please include the manual's edition number in your messages.
  34. File: texinfo.info,  Node: Texinfo Mode,  Next: Beginning a File,  Prev: Overview,  Up: Top
  35. Using Texinfo Mode
  36. ******************
  37.   You may edit a Texinfo file with any text editor you choose.  A
  38. Texinfo file is no different from any other ASCII file.  However, GNU
  39. Emacs comes with a special mode, called Texinfo mode, that provides
  40. Emacs commands and tools to help ease your work.
  41.   This chapter describes features of GNU Emacs' Texinfo mode but not any
  42. features of the Texinfo formatting language.  If you are reading this
  43. manual straight through from the beginning, you may want to skim through
  44. this chapter briefly and come back to it after reading succeeding
  45. chapters which describe the Texinfo formatting language in detail.
  46. * Menu:
  47. * Texinfo Mode Overview::       How Texinfo mode can help you.
  48. * Emacs Editing::               Texinfo mode adds to GNU Emacs' general
  49.                                   purpose editing features.
  50. * Inserting::                   How to insert frequently used @-commands.
  51. * Showing the Structure::       How to show the structure of a file.
  52. * Updating Nodes and Menus::    How to update or create new nodes and menus.
  53. * Info Formatting::             How to format for Info.
  54. * Printing::                    How to format and print part or all of a file.
  55. * Texinfo Mode Summary::        Summary of all the Texinfo mode commands.
  56. File: texinfo.info,  Node: Texinfo Mode Overview,  Next: Emacs Editing,  Prev: Texinfo Mode,  Up: Texinfo Mode
  57. Texinfo Mode Overview
  58. =====================
  59.   Texinfo mode provides special features for working with Texinfo files:
  60.    * Insert frequently used @-commands.
  61.    * Automatically create `@node' lines.
  62.    * Show the structure of a Texinfo source file.
  63.    * Automatically create or update the `Next',
  64.      `Previous', and `Up' pointers of a node.
  65.    * Automatically create or update menus.
  66.    * Automatically create a master menu.
  67.    * Format a part or all of a file for Info.
  68.    * Typeset and print part or all of a file.
  69.   Perhaps the two most helpful features are those for inserting
  70. frequently used @-commands and for creating node pointers and menus.
  71. File: texinfo.info,  Node: Emacs Editing,  Next: Inserting,  Prev: Texinfo Mode Overview,  Up: Texinfo Mode
  72. The Usual GNU Emacs Editing Commands
  73. ====================================
  74.   In most cases, the usual Text mode commands work the same in Texinfo
  75. mode as they do in Text mode.  Texinfo mode adds new editing commands
  76. and tools to GNU Emacs' general purpose editing features.  The major
  77. difference concerns filling.  In Texinfo mode, the paragraph separation
  78. variable and syntax table are redefined so that Texinfo commands that
  79. should be on lines of their own are not inadvertently included in
  80. paragraphs.  Thus, the `M-q' (`fill-paragraph') command will refill a
  81. paragraph but not mix an indexing command on a line adjacent to it into
  82. the paragraph.
  83.   In addition, Texinfo mode sets the `page-delimiter' variable to the
  84. value of `texinfo-chapter-level-regexp'; by default, this is a regular
  85. expression matching the commands for chapters and their equivalents,
  86. such as appendices.  With this value for the page delimiter, you can
  87. jump from chapter title to chapter title with the `C-x ]'
  88. (`forward-page') and `C-x [' (`backward-page') commands and narrow to a
  89. chapter with the `C-x p' (`narrow-to-page') command.  (*Note Pages:
  90. (emacs)Pages, for details about the page commands.)
  91.   You may name a Texinfo file however you wish, but the convention is to
  92. end a Texinfo file name with one of the three extensions `.texinfo',
  93. `.texi', or `.tex'.  A longer extension is preferred, since it is
  94. explicit, but a shorter extension may be necessary for operating
  95. systems that limit the length of file names.  GNU Emacs automatically
  96. enters Texinfo mode when you visit a file with a `.texinfo' or  `.texi'
  97. extension.  Also, Emacs switches to Texinfo mode when you visit a file
  98. that has `-*-texinfo-*-' in its first line.  If ever you are in another
  99. mode and wish to switch to Texinfo mode, type `M-x texinfo-mode'.
  100.   Like all other Emacs features, you can customize or enhance Texinfo
  101. mode as you wish.  In particular, the keybindings are very easy to
  102. change.  The keybindings described here are the default or standard
  103. ones.
  104. File: texinfo.info,  Node: Inserting,  Next: Showing the Structure,  Prev: Emacs Editing,  Up: Texinfo Mode
  105. Inserting Frequently Used Commands
  106. ==================================
  107.   Texinfo mode provides commands to insert various frequently used
  108. @-commands into the buffer.  You can use these commands to save
  109. keystrokes.
  110.   The insert commands are invoked by typing `C-c' twice and then the
  111. first letter of the @-command:
  112. `C-c C-c c'
  113. `M-x texinfo-insert-@code'
  114.      Insert `@code{}' and put the cursor between the braces.
  115. `C-c C-c d'
  116. `M-x texinfo-insert-@dfn'
  117.      Insert `@dfn{}' and put the cursor between the braces.
  118. `C-c C-c e'
  119. `M-x texinfo-insert-@end'
  120.      Insert `@end' and attempt to insert the correct following word,
  121.      such as `example' or `table'.  (This command does not handle
  122.      nested lists correctly, but inserts the word appropriate to the
  123.      immediately preceding list.)
  124. `C-c C-c i'
  125. `M-x texinfo-insert-@item'
  126.      Insert `@item' and put the cursor at the beginning of the next
  127.      line.
  128. `C-c C-c k'
  129. `M-x texinfo-insert-@kbd'
  130.      Insert `@kbd{}' and put the cursor between the braces.
  131. `C-c C-c n'
  132. `M-x texinfo-insert-@node'
  133.      Insert `@node' and a comment line listing the sequence for the
  134.      `Next', `Previous', and `Up' nodes.  Leave point after the `@node'.
  135. `C-c C-c o'
  136. `M-x texinfo-insert-@noindent'
  137.      Insert `@noindent' and put the cursor at the beginning of the next
  138.      line.
  139. `C-c C-c s'
  140. `M-x texinfo-insert-@samp'
  141.      Insert `@samp{}' and put the cursor between the braces.
  142. `C-c C-c t'
  143. `M-x texinfo-insert-@table'
  144.      Insert `@table' followed by a SPC and leave the cursor after the
  145.      SPC.
  146. `C-c C-c v'
  147. `M-x texinfo-insert-@var'
  148.      Insert `@var{}' and put the cursor between the braces.
  149. `C-c C-c x'
  150. `M-x texinfo-insert-@example'
  151.      Insert `@example' and put the cursor at the beginning of the next
  152.      line.
  153. `C-c C-c {'
  154. `M-x texinfo-insert-braces'
  155.      Insert `{}' and put the cursor between the braces.
  156. `C-c C-c }'
  157. `C-c C-c ]'
  158. `M-x up-list'
  159.      Move from between a pair of braces forward past the closing brace.
  160.      Typing `C-c C-c ]' is easier than typing `C-c C-c }', which is,
  161.      however, more mnemonic; hence the two keybindings.  (Also, you can
  162.      move out from between braces by typing `C-f'.)
  163.   To put a command such as `@code{...}' around an *existing* word,
  164. position the cursor in front of the word and type `C-u 1 C-c C-c c'.
  165. This makes it easy to edit existing plain text.  The value of the
  166. prefix argument tells Emacs how many words following point to include
  167. between braces--1 for one word, 2 for two words, and so on.  Use a
  168. negative argument to enclose the previous word or words.  If you do not
  169. specify a prefix argument, Emacs inserts the @-command string and
  170. positions the cursor between the braces.  This feature works only for
  171. those @-commands that operate on a word or words within one line, such
  172. as `@kbd' and `@var'.
  173.   This set of insert commands was created after analyzing the frequency
  174. with which different @-commands are used in the `GNU Emacs Manual' and
  175. the `GDB Manual'.  If you wish to add your own insert commands, you can
  176. bind a keyboard macro to a key, use abbreviations, or extend the code
  177. in `texinfo.el'.
  178.   `C-c C-c C-d' (`texinfo-start-menu-description') is an insert command
  179. that works differently from the other insert commands.  It inserts a
  180. node's section or chapter title in the space for the description in a
  181. menu entry line.  (A menu entry has three parts, the entry name, the
  182. node name, and the description.  Only the node name is required, but a
  183. description helps explain what the node is about.  *Note The Parts of a
  184. Menu: Menu Parts.)
  185.   To use `texinfo-start-menu-description', position point in a menu
  186. entry line and type `C-c C-c C-d'.  The command looks for and copies
  187. the title that goes with the node name, and inserts the title as a
  188. description; it positions point at beginning of the inserted text so you
  189. can edit it.  The function does not insert the title if the menu entry
  190. line already contains a description.
  191.   This command is only an aid to writing descriptions; it does not do
  192. the whole job.  You must edit the inserted text since a title tends to
  193. use the same words as a node name but a useful description uses
  194. different words.
  195. File: texinfo.info,  Node: Showing the Structure,  Next: Updating Nodes and Menus,  Prev: Inserting,  Up: Texinfo Mode
  196. Showing the Section Structure of a File
  197. =======================================
  198.   You can show the section structure of a Texinfo file by using the
  199. `C-c C-s' command (`texinfo-show-structure').  This command shows the
  200. section structure of a Texinfo file by listing the lines that begin
  201. with the @-commands for `@chapter', `@section', and the like.  It
  202. constructs what amounts to a table of contents.  These lines are
  203. displayed in another buffer called the `*Occur*' buffer.  In that
  204. buffer, you can position the cursor over one of the lines and use the
  205. `C-c C-c' command (`occur-mode-goto-occurrence'), to jump to the
  206. corresponding spot in the Texinfo file.
  207. `C-c C-s'
  208. `M-x texinfo-show-structure'
  209.      Show the `@chapter', `@section', and such lines of a Texinfo file.
  210. `C-c C-c'
  211. `M-x occur-mode-goto-occurrence'
  212.      Go to the line in the Texinfo file corresponding to the line under
  213.      the cursor in the `*Occur*' buffer.
  214.   If you call `texinfo-show-structure' with a prefix argument by typing
  215. `C-u C-c C-s', it will list not only those lines with the @-commands
  216. for `@chapter', `@section', and the like, but also the `@node' lines.
  217. (This is how the `texinfo-show-structure' command worked without an
  218. argument in the first version of Texinfo.  It was changed because
  219. `@node' lines clutter up the `*Occur*' buffer and are usually not
  220. needed.)  You can use `texinfo-show-structure' with a prefix argument
  221. to check whether the `Next', `Previous', and `Up' pointers of an
  222. `@node' line are correct.
  223.   Often, when you are working on a manual, you will be interested only
  224. in the structure of the current chapter.  In this case, you can mark
  225. off the region of the buffer that you are interested in by using the
  226. `C-x n n' (`narrow-to-region') command and `texinfo-show-structure'
  227. will work on only that region.  To see the whole buffer again, use
  228. `C-x n w' (`widen').  (*Note Narrowing: (emacs)Narrowing, for more
  229. information about the narrowing commands.)
  230.   In addition to providing the `texinfo-show-structure' command,
  231. Texinfo mode sets the value of the page delimiter variable to match the
  232. chapter-level @-commands.  This enables you to use the `C-x ]'
  233. (`forward-page') and `C-x [' (`backward-page') commands to move forward
  234. and backward by chapter, and to use the `C-x p' (`narrow-to-page')
  235. command to narrow to a chapter.  *Note Pages: (emacs)Pages, for more
  236. information about the page commands.
  237. File: texinfo.info,  Node: Updating Nodes and Menus,  Next: Info Formatting,  Prev: Showing the Structure,  Up: Texinfo Mode
  238. Updating Nodes and Menus
  239. ========================
  240.   Texinfo mode provides commands for automatically creating or updating
  241. menus and node pointers.  The commands are called "update" commands
  242. because their most frequent use is for updating a Texinfo file after
  243. you have worked on it; but you can use them to insert the `Next',
  244. `Previous', and `Up' pointers into an `@node' line that has none and to
  245. create menus in a file that has none.
  246.   If you do not use the updating commands, you need to write menus and
  247. node pointers by hand, which is a tedious task.
  248. * Menu:
  249. * Updating Commands::           Five major updating commands.
  250. * Updating Requirements::       How to structure a Texinfo file for
  251.                                   using the updating command.
  252. * Other Updating Commands::     How to indent descriptions, insert
  253.                                   missing nodes lines, and update
  254.                                   nodes in sequence.
  255. File: texinfo.info,  Node: Updating Commands,  Next: Updating Requirements,  Prev: Updating Nodes and Menus,  Up: Updating Nodes and Menus
  256. The Updating Commands
  257. ---------------------
  258.   You can use the updating commands
  259.    * to insert or update the `Next', `Previous', and `Up' pointers of a
  260.      node,
  261.    * to insert or update the menu for a section, and
  262.    * to create a master menu for a Texinfo source file.
  263.   You can also use the commands to update all the nodes and menus in a
  264. region or in a whole Texinfo file.
  265.   The updating commands work only with conventional Texinfo files, which
  266. are structured hierarchically like books.  In such files, a structuring
  267. command line must follow closely after each `@node' line, except for
  268. the `Top' `@node' line.  (A "structuring command line" is a line
  269. beginning with `@chapter', `@section', or other similar command.)
  270.   You can write the structuring command line on the line that follows
  271. immediately after an `@node' line or else on the line that follows
  272. after a single `@comment' line or a single `@ifinfo' line.  You cannot
  273. interpose more than one line between the `@node' line and the
  274. structuring command line; and you may interpose only an `@comment' line
  275. or an `@ifinfo' line.
  276.   Commands which work on a whole buffer require that the `Top' node be
  277. followed by a node with an `@chapter' or equivalent-level command.
  278. Note that the menu updating commands will not create a main or master
  279. menu for a Texinfo file that has only `@chapter'-level nodes!  The menu
  280. updating commands only create menus *within* nodes for lower level
  281. nodes.  To create a menu of chapters, you must provide a `Top' node.
  282.   The menu updating commands remove menu entries that refer to other
  283. Info files since they do not refer to nodes within the current buffer.
  284. This is a deficiency.  Rather than use menu entries, you can use cross
  285. references to refer to other Info files.  None of the updating commands
  286. affect cross references.
  287.   Texinfo mode has five updating commands that are used most often: two
  288. are for updating the node pointers or menu of a single node (or a
  289. region); two are for updating every node pointer and menu in a file;
  290. and one, the `texinfo-master-menu' command, is for creating a master
  291. menu for a complete file, and optionally, for updating every node and
  292. menu in the whole Texinfo file.
  293.   The `texinfo-master-menu' command is the primary command:
  294. `C-c C-u m'
  295. `M-x texinfo-master-menu'
  296.      Create or update a master menu that includes all the other menus
  297.      (incorporating the descriptions from pre-existing menus, if any).
  298.      With an argument (prefix argument, `C-u,' if interactive), first
  299.      create or update all the nodes and all the regular menus in the
  300.      buffer before constructing the master menu.  (*Note The Top Node
  301.      and Master Menu: The Top Node, for more about a master menu.)
  302.      For `texinfo-master-menu' to work, the Texinfo file must have a
  303.      `Top' node and at least one subsequent node.
  304.      After extensively editing a Texinfo file, you can type the
  305.      following:
  306.           C-u M-x texinfo-master-menu
  307.      or
  308.           C-u C-c C-u m
  309.      This updates all the nodes and menus completely and all at once.
  310.   The other major updating commands do smaller jobs and are designed for
  311. the person  who updates nodes and menus as he or she writes a Texinfo
  312. file.
  313.   The commands are:
  314. `C-c C-u C-n'
  315. `M-x texinfo-update-node'
  316.      Insert the `Next', `Previous', and `Up' pointers for the node that
  317.      point is within (i.e., for the `@node' line preceding point).  If
  318.      the `@node' line has pre-existing `Next', `Previous', or `Up'
  319.      pointers in it, the old pointers are removed and new ones inserted.
  320.      With an argument (prefix argument, `C-u', if interactive), this
  321.      command updates all `@node' lines in the region (which is the text
  322.      between point and mark).
  323. `C-c C-u C-m'
  324. `M-x texinfo-make-menu'
  325.      Create or update the menu in the node that point is within.  With
  326.      an argument (`C-u' as prefix argument, if interactive), the
  327.      command makes or updates menus for the nodes which are either
  328.      within or a part of the region.
  329.      Whenever `texinfo-make-menu' updates an existing menu, the
  330.      descriptions from that menu are incorporated into the new menu.
  331.      This is done by copying descriptions from the existing menu to the
  332.      entries in the new menu that have the same node names.  If the
  333.      node names are different, the descriptions are not copied to the
  334.      new menu.
  335. `C-c C-u C-e'
  336. `M-x texinfo-every-node-update'
  337.      Insert or update the `Next', `Previous', and `Up' pointers for
  338.      every node in the buffer.
  339. `C-c C-u C-a'
  340. `M-x texinfo-all-menus-update'
  341.      Create or update all the menus in the buffer.  With an argument
  342.      (`C-u' as prefix argument, if interactive), first insert or update
  343.      all the node pointers before working on the menus.
  344.      If a master menu exists, the `texinfo-all-menus-update' command
  345.      updates it; but the command does not create a new master menu if
  346.      none already exists.  (Use the `texinfo-master-menu' command for
  347.      that.)
  348.      When working on a document that does not merit a master menu, you
  349.      can type the following:
  350.           C-u C-c C-u C-a
  351.      or
  352.           C-u M-x texinfo-all-menus-update
  353.      This updates all the nodes and menus.
  354.   The `texinfo-column-for-description' variable specifies the column to
  355. which menu descriptions are indented.  By default, the value is 32
  356. although it is often useful to reduce it to as low as 24.  You can set
  357. the variable with the `M-x edit-options' command (*note Editing
  358. Variable Values: (emacs)Edit Options.) or with the `M-x set-variable'
  359. command (*note Examining and Setting Variables: (emacs)Examining.).
  360.   Also, the `texinfo-indent-menu-description' command may be used to
  361. indent existing menu descriptions to a specified column.  Finally, if
  362. you wish, you can use the `texinfo-insert-node-lines' command to insert
  363. missing `@node' lines into a file.  (*Note Other Updating Commands::,
  364. for more information.)
  365. File: texinfo.info,  Node: Updating Requirements,  Next: Other Updating Commands,  Prev: Updating Commands,  Up: Updating Nodes and Menus
  366. Updating Requirements
  367. ---------------------
  368.   To use the updating commands, you must organize the Texinfo file
  369. hierarchically with chapters, sections, subsections, and the like.
  370. When you construct the hierarchy of the manual, do not `jump down' more
  371. than one level at a time: you can follow the `Top' node with a chapter,
  372. but not with a section; you can follow a chapter with a section, but
  373. not with a subsection.  However, you may `jump up' any number of levels
  374. at one time--for example, from a subsection to a chapter.
  375.   Each `@node' line, with the exception of the line for the `Top' node,
  376. must be followed by a line with a structuring command such as
  377. `@chapter', `@section', or `@unnumberedsubsec'.
  378.   Each `@node' line/structuring-command line combination must look
  379. either like this:
  380.      @node     Comments,  Minimum, Conventions, Overview
  381.      @comment  node-name, next,    previous,    up
  382.      @section Comments
  383.   or like this (without the `@comment' line):
  384.      @node Comments, Minimum, Conventions, Overview
  385.      @section Comments
  386. In this example, `Comments' is the name of both the node and the
  387. section.  The next node is called `Minimum' and the previous node is
  388. called `Conventions'.  The `Comments' section is within the `Overview'
  389. node, which is specified by the `Up' pointer.  (Instead of an
  390. `@comment' line, you can write an `@ifinfo' line.)
  391.   If a file has a `Top' node, it must be called `top' or `Top' and be
  392. the first node in the file.
  393.   The menu updating commands create a menu of sections within a chapter,
  394. a menu of subsections within a section, and so on.  This means that you
  395. must have a `Top' node if you want a menu of chapters.
  396.   Incidentally, the `makeinfo' command will create an Info file for a
  397. hierarchically organized Texinfo file that lacks `Next', `Previous' and
  398. `Up' pointers.  Thus, if you can be sure that your Texinfo file will be
  399. formatted with `makeinfo', you have no need for the `update node'
  400. commands.  (*Note Creating an Info File: Create an Info File, for more
  401. information about `makeinfo'.)  However, both `makeinfo' and the
  402. `texinfo-format-...' commands require that you insert menus in the file.
  403. File: texinfo.info,  Node: Other Updating Commands,  Prev: Updating Requirements,  Up: Updating Nodes and Menus
  404. Other Updating Commands
  405. -----------------------
  406.   In addition to the five major updating commands, Texinfo mode
  407. possesses several less frequently used updating commands:
  408. `M-x texinfo-insert-node-lines'
  409.      Insert `@node' lines before the `@chapter', `@section', and other
  410.      sectioning commands wherever they are missing throughout a region
  411.      in a Texinfo file.
  412.      With an argument (`C-u' as prefix argument, if interactive), the
  413.      `texinfo-insert-node-lines' command not only inserts `@node' lines
  414.      but also inserts the chapter or section titles as the names of the
  415.      corresponding nodes.  In addition, it inserts the titles as node
  416.      names in pre-existing `@node' lines that lack names.  Since node
  417.      names should be more concise than section or chapter titles, you
  418.      must manually edit node names so inserted.
  419.      For example, the following marks a whole buffer as a region and
  420.      inserts `@node' lines and titles throughout:
  421.           C-x h C-u M-x texinfo-insert-node-lines
  422.      (Note that this command inserts titles as node names in `@node'
  423.      lines; the `texinfo-start-menu-description' command (*note
  424.      Inserting Frequently Used Commands: Inserting.) inserts titles as
  425.      descriptions in menu entries, a different action.  However, in both
  426.      cases, you need to edit the inserted text.)
  427. `M-x texinfo-multiple-files-update'
  428.      Update nodes and menus in a document built from several separate
  429.      files.  With `C-u' as a prefix argument, create and insert a
  430.      master menu in the outer file.  With a numeric prefix argument,
  431.      such as `C-u 2', first update all the menus and all the `Next',
  432.      `Previous', and `Up' pointers of all the included files before
  433.      creating and inserting a master menu in the outer file.  The
  434.      `texinfo-multiple-files-update' command is described in the
  435.      appendix on `@include' files.  *Note
  436.      texinfo-multiple-files-update::.
  437. `M-x texinfo-indent-menu-description'
  438.      Indent every description in the menu following point to the
  439.      specified column.  You can use this command to give yourself more
  440.      space for descriptions.  With an argument (`C-u' as prefix
  441.      argument, if interactive), the `texinfo-indent-menu-description'
  442.      command indents every description in every menu in the region.
  443.      However, this command does not indent the second and subsequent
  444.      lines of a multi-line description.
  445. `M-x texinfo-sequential-node-update'
  446.      Insert the names of the nodes immediately following and preceding
  447.      the current node as the `Next' or `Previous' pointers regardless
  448.      of those nodes' hierarchical level.  This means that the `Next'
  449.      node of a subsection may well be the next chapter.  Sequentially
  450.      ordered nodes are useful for novels and other documents that you
  451.      read through sequentially.  (However, in Info, the `g* RET'
  452.      command lets you look through the file sequentially, so
  453.      sequentially ordered nodes are not strictly necessary.)  With an
  454.      argument (prefix argument, if interactive), the
  455.      `texinfo-sequential-node-update' command sequentially updates all
  456.      the nodes in the region.
  457. File: texinfo.info,  Node: Info Formatting,  Next: Printing,  Prev: Updating Nodes and Menus,  Up: Texinfo Mode
  458. Formatting for Info
  459. ===================
  460.   Texinfo mode provides several commands for formatting part or all of a
  461. Texinfo file for Info.  Often, when you are writing a document, you
  462. want to format only part of a file--that is, a region.
  463.   You can use either the `texinfo-format-region' or the
  464. `makeinfo-region' command to format a region:
  465. `C-c C-e C-r'
  466. `M-x texinfo-format-region'
  467. `C-c C-m C-r'
  468. `M-x makeinfo-region'
  469.      Format the current region for Info.
  470.   You can use either the `texinfo-format-buffer' or the
  471. `makeinfo-buffer' command to format a whole buffer:
  472. `C-c C-e C-b'
  473. `M-x texinfo-format-buffer'
  474. `C-c C-m C-b'
  475. `M-x makeinfo-buffer'
  476.      Format the current buffer for Info.
  477.   For example, after writing a Texinfo file, you can type the following:
  478.      C-u C-c C-u m
  479.      C-u M-x texinfo-master-menu
  480. This updates all the nodes and menus.  Then type the following to create
  481. an Info file:
  482.      C-c C-m C-b
  483.      M-x makeinfo-buffer
  484.   For the Info formatting commands to work, the file *must* include a
  485. line that has `@setfilename' in its header.
  486.   Not all systems support the `makeinfo'-based formatting commands.
  487.   *Note Create an Info File::, for details about Info formatting.
  488. File: texinfo.info,  Node: Printing,  Next: Texinfo Mode Summary,  Prev: Info Formatting,  Up: Texinfo Mode
  489. Formatting and Printing
  490. =======================
  491.   Typesetting and printing a Texinfo file is a multi-step process in
  492. which you first create a file for printing (called a DVI file), and then
  493. print the file.  Optionally, you may also create indices.  To do this,
  494. you must run the `texindex' command after first running the `tex'
  495. typesetting command; and then you must run the `tex' command again.  Or
  496. else run the `texi2dvi' command which automatically creates indices as
  497. needed.
  498.   Often, when you are writing a document, you want to typeset and print
  499. only part of a file to see what it will look like.  You can use the
  500. `texinfo-tex-region' and related commands for this purpose.  Use the
  501. `texinfo-tex-buffer' command to format all of a buffer.
  502. `C-c C-t C-b'
  503. `M-x texinfo-tex-buffer'
  504.      Run `texi2dvi' on the buffer.  In addition to running TeX on the
  505.      buffer, this command automatically creates or updates indices as
  506.      needed.
  507. `C-c C-t C-r'
  508. `M-x texinfo-tex-region'
  509.      Run TeX on the region.
  510. `C-c C-t C-i'
  511. `M-x texinfo-texindex'
  512.      Run `texindex' to sort the indices of a Texinfo file formatted with
  513.      `texinfo-tex-region'.  The `texinfo-tex-region' command does not
  514.      run `texindex' automatically; it only runs the `tex' typesetting
  515.      command.  You must run the `texinfo-tex-region' command a second
  516.      time after sorting the raw index files with the `texindex'
  517.      command.  (Usually, you do not format an index when you format a
  518.      region, only when you format a buffer.  Now that the `texi2dvi'
  519.      command exists, there is no little need for this command.)
  520. `C-c C-t C-p'
  521. `M-x texinfo-tex-print'
  522.      Print the file (or the part of the file) previously formatted with
  523.      `texinfo-tex-buffer' or `texinfo-tex-region'.
  524.   For `texinfo-tex-region' or `texinfo-tex-buffer' to work, the file
  525. *must* start with a `\input texinfo' line and must include an
  526. `@settitle' line.  The file must end with `@bye' on a line by itself.
  527. (When you use `texinfo-tex-region', you must surround the `@settitle'
  528. line with start-of-header and end-of-header lines.)
  529.   *Note Format/Print Hardcopy::, for a description of the other TeX
  530. related commands, such as `tex-show-print-queue'.
  531. File: texinfo.info,  Node: Texinfo Mode Summary,  Prev: Printing,  Up: Texinfo Mode
  532. Texinfo Mode Summary
  533. ====================
  534.   In Texinfo mode, each set of commands has default keybindings that
  535. begin with the same keys.  All the commands that are custom-created for
  536. Texinfo mode begin with `C-c'.  The keys are somewhat mnemonic.
  537. Insert Commands
  538. ---------------
  539.   The insert commands are invoked by typing `C-c' twice and then the
  540. first letter of the @-command to be inserted.  (It might make more
  541. sense mnemonically to use `C-c C-i', for `custom insert', but `C-c C-c'
  542. is quick to type.)
  543.      C-c C-c c       Insert `@code'.
  544.      C-c C-c d       Insert `@dfn'.
  545.      C-c C-c e       Insert `@end'.
  546.      C-c C-c i       Insert `@item'.
  547.      C-c C-c n       Insert `@node'.
  548.      C-c C-c s       Insert `@samp'.
  549.      C-c C-c v       Insert `@var'.
  550.      C-c C-c {       Insert braces.
  551.      C-c C-c ]
  552.      C-c C-c }       Move out of enclosing braces.
  553.      
  554.      C-c C-c C-d     Insert a node's section title
  555.                      in the space for the description
  556.                      in a menu entry line.
  557. Show Structure
  558. --------------
  559.   The `texinfo-show-structure' command is often used within a narrowed
  560. region.
  561.      C-c C-s         List all the headings.
  562. The Master Update Command
  563. -------------------------
  564.   The `texinfo-master-menu' command creates a master menu; and can be
  565. used to update every node and menu in a file as well.
  566.      C-c C-u m
  567.      M-x texinfo-master-menu
  568.                      Create or update a master menu.
  569.      
  570.      C-u C-c C-u m   With `C-u' as a prefix argument, first
  571.                      create or update all nodes and regular
  572.                      menus, and then create a master menu.
  573. Update Pointers
  574. ---------------
  575.   The update pointer commands are invoked by typing `C-c C-u' and then
  576. either `C-n' for `texinfo-update-node' or `C-e' for
  577. `texinfo-every-node-update'.
  578.      C-c C-u C-n     Update a node.
  579.      C-c C-u C-e     Update every node in the buffer.
  580. Update Menus
  581. ------------
  582.   Invoke the  update menu commands by typing `C-c C-u' and then either
  583. `C-m' for `texinfo-make-menu' or `C-a' for `texinfo-all-menus-update'.
  584. To update both nodes and menus at the same time, precede `C-c C-u C-a'
  585. with `C-u'.
  586.      C-c C-u C-m     Make or update a menu.
  587.      
  588.      C-c C-u C-a     Make or update all
  589.                      menus in a buffer.
  590.      
  591.      C-u C-c C-u C-a With `C-u' as a prefix argument,
  592.                      first create or update all nodes and
  593.                      then create or update all menus.
  594. Format for Info
  595. ---------------
  596.   The Info formatting commands that are written in Emacs Lisp are
  597. invoked by typing `C-c C-e' and then either `C-r' for a region or `C-b'
  598. for the whole buffer.
  599.   The Info formatting commands that are written in C and based on the
  600. `makeinfo' program are invoked by typing `C-c C-m' and then either
  601. `C-r' for a region or `C-b' for the whole buffer.
  602. Use the `texinfo-format...' commands:
  603.      C-c C-e C-r     Format the region.
  604.      C-c C-e C-b     Format the buffer.
  605. Use `makeinfo':
  606.      C-c C-m C-r     Format the region.
  607.      C-c C-m C-b     Format the buffer.
  608.      C-c C-m C-l     Recenter the `makeinfo' output buffer.
  609.      C-c C-m C-k     Kill the `makeinfo' formatting job.
  610. Typeset and Print
  611. -----------------
  612.   The TeX typesetting and printing commands are invoked by typing `C-c
  613. C-t' and then another control command: `C-r' for `texinfo-tex-region',
  614. `C-b' for `texinfo-tex-buffer', and so on.
  615.      C-c C-t C-r     Run TeX on the region.
  616.      C-c C-t C-b     Run `texi2dvi' on the buffer.
  617.      C-c C-t C-i     Run `texindex'.
  618.      C-c C-t C-p     Print the DVI file.
  619.      C-c C-t C-q     Show the print queue.
  620.      C-c C-t C-d     Delete a job from the print queue.
  621.      C-c C-t C-k     Kill the current TeX formatting job.
  622.      C-c C-t C-x     Quit a currently stopped TeX formatting job.
  623.      C-c C-t C-l     Recenter the output buffer.
  624. Other Updating Commands
  625. -----------------------
  626.   The `other updating commands' do not have standard keybindings because
  627. they are rarely used.
  628.      M-x texinfo-insert-node-lines
  629.                      Insert missing `@node' lines in region.
  630.                      With `C-u' as a prefix argument,
  631.                      use section titles as node names.
  632.      
  633.      M-x texinfo-multiple-files-update
  634.                      Update a multi-file document.
  635.                      With `C-u 2' as a prefix argument,
  636.                      create or update all nodes and menus
  637.                      in all included files first.
  638.      
  639.      M-x texinfo-indent-menu-description
  640.                      Indent descriptions.
  641.      
  642.      M-x texinfo-sequential-node-update
  643.                      Insert node pointers in strict sequence.
  644. File: texinfo.info,  Node: Beginning a File,  Next: Ending a File,  Prev: Texinfo Mode,  Up: Top
  645. Beginning a Texinfo File
  646. ************************
  647.   Certain pieces of information must be provided at the beginning of a
  648. Texinfo file, such as the name of the file and the title of the
  649. document.
  650. * Menu:
  651. * Four Parts::                  Four parts begin a Texinfo file.
  652. * Sample Beginning::            Here is a sample beginning for a Texinfo file.
  653. * Header::                      The very beginning of a Texinfo file.
  654. * Info Summary and Permissions::  Summary and copying permissions for Info.
  655. * Titlepage & Copyright Page::  Creating the title and copyright pages.
  656. * The Top Node::                Creating the `Top' node and master menu.
  657. * Software Copying Permissions::  Ensure that you and others continue to
  658.                                   have the right to use and share software.
  659. File: texinfo.info,  Node: Four Parts,  Next: Sample Beginning,  Prev: Beginning a File,  Up: Beginning a File
  660. Four Parts Begin a File
  661. =======================
  662.   Generally, the beginning of a Texinfo file has four parts:
  663.   1. The header, delimited by special comment lines, that includes the
  664.      commands for naming the Texinfo file and telling TeX what
  665.      definitions' file to use when processing the Texinfo file.
  666.   2. A short statement of what the file is about, with a copyright
  667.      notice and copying permissions.  This is enclosed in `@ifinfo' and
  668.      `@end ifinfo' commands so that the formatters place it only in the
  669.      Info file.
  670.   3. A title page and copyright page, with a copyright notice and
  671.      copying permissions.  This is enclosed between `@titlepage' and
  672.      `@end titlepage' commands.  The title and copyright page appear
  673.      only in the printed manual.
  674.   4. The `Top' node that contains a menu for the whole Info file.  The
  675.      contents of this node appear only in the Info file.
  676.   Also, optionally, you may include the copying conditions for a program
  677. and a warranty disclaimer.  The copying section will be followed by an
  678. introduction or else by the first chapter of the manual.
  679.   Since the copyright notice and copying permissions for the Texinfo
  680. document (in contrast to the copying permissions for a program) are in
  681. parts that appear only in the Info file or only in the printed manual,
  682. this information must be given twice.
  683. File: texinfo.info,  Node: Sample Beginning,  Next: Header,  Prev: Four Parts,  Up: Beginning a File
  684. Sample Texinfo File Beginning
  685. =============================
  686.   The following sample shows what is needed.
  687.      \input texinfo   @c -*-texinfo-*-
  688.      @c %**start of header
  689.      @setfilename NAME-OF-INFO-FILE
  690.      @settitle NAME-OF-MANUAL
  691.      @setchapternewpage odd
  692.      @c %**end of header
  693.      
  694.      @ifinfo
  695.      This file documents ...
  696.      
  697.      Copyright YEAR COPYRIGHT-OWNER
  698.      
  699.      Permission is granted to ...
  700.      @end ifinfo
  701.      
  702.      @c  This title page illustrates only one of the
  703.      @c  two methods of forming a title page.
  704.      
  705.      @titlepage
  706.      @title NAME-OF-MANUAL-WHEN-PRINTED
  707.      @subtitle SUBTITLE-IF-ANY
  708.      @subtitle SECOND-SUBTITLE
  709.      @author AUTHOR
  710.      
  711.      @c  The following two commands
  712.      @c  start the copyright page.
  713.      @page
  714.      @vskip 0pt plus 1filll
  715.      Copyright @copyright{} YEAR COPYRIGHT-OWNER
  716.      
  717.      Published by ...
  718.      
  719.      Permission is granted to ...
  720.      @end titlepage
  721.      
  722.      @node Top, Overview, (dir), (dir)
  723.      
  724.      @ifinfo
  725.      This document describes ...
  726.      
  727.      This document applies to version ...
  728.      of the program named ...
  729.      @end ifinfo
  730.      
  731.      @menu
  732.      * Copying::          Your rights and freedoms.
  733.      * First Chapter::    Getting started ...
  734.      * Second Chapter::              ...
  735.        ...
  736.        ...
  737.      @end menu
  738.      
  739.      @node    First Chapter, Second Chapter, top,      top
  740.      @comment node-name,     next,           previous, up
  741.      @chapter First Chapter
  742.      @cindex Index entry for First Chapter
  743. File: texinfo.info,  Node: Header,  Next: Info Summary and Permissions,  Prev: Sample Beginning,  Up: Beginning a File
  744. The Texinfo File Header
  745. =======================
  746.   Texinfo files start with at least three lines that provide Info and
  747. TeX with necessary information.  These are the `\input texinfo' line,
  748. the `@settitle' line, and the `@setfilename' line.  If you want to run
  749. TeX on just a part of the Texinfo File, you must write the `@settitle'
  750. and `@setfilename' lines between start-of-header and end-of-header
  751. lines.
  752.   Thus, the beginning of a Texinfo file looks like this:
  753.      \input texinfo   @c -*-texinfo-*-
  754.      @setfilename sample.info
  755.      @settitle Sample Document
  756. or else like this:
  757.      \input texinfo   @c -*-texinfo-*-
  758.      @c %**start of header
  759.      @setfilename sample.info
  760.      @settitle Sample Document
  761.      @c %**end of header
  762. * Menu:
  763. * First Line::                  The first line of a Texinfo file.
  764. * Start of Header::             Formatting a region requires this.
  765. * setfilename::                 Tell Info the name of the Info file.
  766. * settitle::                    Create a title for the printed work.
  767. * setchapternewpage::           Start chapters on right-hand pages.
  768. * paragraphindent::             An option to specify paragraph indentation.
  769. * End of Header::               Formatting a region requires this.
  770. File: texinfo.info,  Node: First Line,  Next: Start of Header,  Prev: Header,  Up: Header
  771. The First Line of a Texinfo File
  772. --------------------------------
  773.   Every Texinfo file that is to be the top-level input to TeX must begin
  774. with a line that looks like this:
  775.      \input texinfo   @c -*-texinfo-*-
  776. This line serves two functions:
  777.   1. When the file is processed by TeX, the `\input texinfo' command
  778.      tells TeX to load the macros needed for processing a Texinfo file.
  779.      These are in a file called `texinfo.tex', which is usually located
  780.      in the `/usr/lib/tex/macros' directory.  TeX uses the backslash,
  781.      `\', to mark the beginning of a command, just as Texinfo uses `@'.
  782.      The `texinfo.tex' file causes the switch from `\' to `@'; before
  783.      the switch occurs, TeX requires `\', which is why it appears at
  784.      the beginning of the file.
  785.   2. When the file is edited in GNU Emacs, the `-*-texinfo-*-' mode
  786.      specification tells Emacs to use Texinfo mode.
  787. File: texinfo.info,  Node: Start of Header,  Next: setfilename,  Prev: First Line,  Up: Header
  788. Start of Header
  789. ---------------
  790.   Write a start-of-header line on the second line of a Texinfo file.
  791. Follow the start-of-header line with `@setfilename' and `@settitle'
  792. lines and, optionally, with other command lines, such as `@smallbook'
  793. or `@footnotestyle'; and then by an end-of-header line (*note End of
  794. Header::.).
  795.   With these lines, you can format part of a Texinfo file for Info or
  796. typeset part for printing.
  797.   A start-of-header line looks like this:
  798.      @c %**start of header
  799.   The odd string of characters, `%**', is to ensure that no other
  800. comment is accidentally taken for a start-of-header line.
  801. File: texinfo.info,  Node: setfilename,  Next: settitle,  Prev: Start of Header,  Up: Header
  802. `@setfilename'
  803. --------------
  804.   In order to be made into an Info file, a Texinfo file must contain a
  805. line that looks like this:
  806.      @setfilename INFO-FILE-NAME
  807.   Write the `@setfilename' command at the beginning of a line and
  808. follow it on the same line by the Info file name.  Do not write
  809. anything else on the line; anything on the line after the command is
  810. considered part of the file name, including a comment.
  811.   The `@setfilename' line specifies the name of the Info file to be
  812. generated.  This name should be different from the name of the Texinfo
  813. file.  The convention is to write a name with a `.info' extension, to
  814. produce an Info file name such as `texinfo.info'.
  815.   Some operating systems cannot handle long file names.  You can run
  816. into a problem even when the file name you specify is itself short
  817. enough.  This occurs because the Info formatters split a long Info file
  818. into short indirect subfiles, and name them by appending `-1', `-2',
  819. ..., `-10', `-11', and so on, to the original file name.  (*Note Tag
  820. Files and Split Files: Tag and Split Files.)  The subfile name
  821. `texinfo.info-10', for example, is too long for some systems; so the
  822. Info file name for this document is actually `texinfo' rather than
  823. `texinfo.info'.
  824.   The Info formatting commands ignore everything written before the
  825. `@setfilename' line, which is why the very first line of the file (the
  826. `\input' line) does not need to be commented out.  The `@setfilename'
  827. line is ignored when you typeset a printed manual.
  828. File: texinfo.info,  Node: settitle,  Next: setchapternewpage,  Prev: setfilename,  Up: Header
  829. `@settitle'
  830. -----------
  831.   In order to be made into a printed manual, a Texinfo file must contain
  832. a line that looks like this:
  833.      @settitle TITLE
  834.   Write the `@settitle' command at the beginning of a line and follow
  835. it on the same line by the title.  This tells TeX the title to use in a
  836. header or footer.  Do not write anything else on the line; anything on
  837. the line after the command is considered part of the title, including a
  838. comment.
  839.   Conventionally, when TeX formats a Texinfo file for double-sided
  840. output, the title is printed in the left-hand (even-numbered) page
  841. headings and the current chapter title is printed in the right-hand
  842. (odd-numbered) page headings.  (TeX learns the title of each chapter
  843. from each `@chapter' command.)  Page footers are not printed.
  844.   Even if you are printing in a single-sided style, TeX looks for an
  845. `@settitle' command line, in case you include the manual title in the
  846. heading.
  847.   The `@settitle' command should precede everything that generates
  848. actual output in TeX.
  849.   Although the title in the `@settitle' command is usually the same as
  850. the title on the title page, it does not affect the title as it appears
  851. on the title page.  Thus, the two do not need not match exactly;  and
  852. the title in the `@settitle' command can be a shortened or expanded
  853. version of the title as it appears on the title page. (*Note
  854. `@titlepage': titlepage.)
  855.   TeX prints page headings only for that text that comes after the
  856. `@end titlepage' command in the Texinfo file, or that comes after an
  857. `@headings' command that turns on headings.  (*Note The `@headings'
  858. Command: headings on off, for more information.)
  859.   You may, if you wish, create your own, customized headings and
  860. footings.  *Note Page Headings: Headings, for a detailed discussion of
  861. this process.
  862. File: texinfo.info,  Node: setchapternewpage,  Next: paragraphindent,  Prev: settitle,  Up: Header
  863. `@setchapternewpage'
  864. --------------------
  865.   In a book or a manual, text is usually printed on both sides of the
  866. paper, chapters start on right-hand pages, and right-hand pages have
  867. odd numbers.  But in short reports, text often is printed only on one
  868. side of the paper.  Also in short reports, chapters sometimes do not
  869. start on new pages, but are printed on the same page as the end of the
  870. preceding chapter, after a small amount of vertical whitespace.
  871.   You can use the `@setchapternewpage' command with various arguments
  872. to specify how TeX should start chapters and whether it should typeset
  873. pages for printing on one or both sides of the paper (single-sided or
  874. double-sided printing).
  875.   Write the `@setchapternewpage' command at the beginning of a line
  876. followed by its argument.
  877.   For example, you would write the following to cause each chapter to
  878. start on a fresh odd-numbered page:
  879.      @setchapternewpage odd
  880.   You can specify one of three alternatives with the
  881. `@setchapternewpage' command:
  882. `@setchapternewpage off'
  883.      Cause TeX to typeset a new chapter on the same page as the last
  884.      chapter, after skipping some vertical whitespace.  Also, cause TeX
  885.      to format page headers for single-sided printing. (You can
  886.      override the headers format with the `@headings double' command;
  887.      see *Note The `@headings' Command: headings on off.)
  888. `@setchapternewpage on'
  889.      Cause TeX to start new chapters on new pages and to typeset page
  890.      headers for single-sided printing.  This is the form most often
  891.      used for short reports.
  892.      This alternative is the default.
  893. `@setchapternewpage odd'
  894.      Cause TeX to start new chapters on new, odd-numbered pages
  895.      (right-handed pages) and to typeset for double-sided printing.
  896.      This is the form most often used for books and manuals.
  897. Texinfo does not have an `@setchapternewpage even' command.
  898. (You can countermand or modify an `@setchapternewpage' command with an
  899. `@headings' command.  *Note The `@headings' Command: headings on off.)
  900.   At the beginning of a manual or book, pages are not numbered--for
  901. example, the title and copyright pages of a book are not numbered.  By
  902. convention, table of contents pages are numbered with roman numerals
  903. and not in sequence with the rest of the document.
  904.   Since an Info file does not have pages, the `@setchapternewpage'
  905. command has no effect on it.
  906.   Usually, you do not write an `@setchapternewpage' command for
  907. single-sided printing, but accept the default which is to typeset for
  908. single-sided printing and to start new chapters on new pages.  Usually,
  909. you write an `@setchapternewpage odd' command for double-sided printing.
  910. File: texinfo.info,  Node: paragraphindent,  Next: End of Header,  Prev: setchapternewpage,  Up: Header
  911. Paragraph Indenting
  912. -------------------
  913.   The Info formatting commands may insert spaces at the beginning of the
  914. first line of each paragraph, thereby indenting that paragraph.  You
  915. can use the `@paragraphindent' command to specify the indentation.
  916. Write an `@paragraphindent' command at the beginning of a line followed
  917. by either `asis' or a number.  The template is:
  918.      @paragraphindent INDENT
  919.   The Info formatting commands indent according to the value of INDENT:
  920.    * If the value of INDENT is `asis', the Info formatting commands do
  921.      not change the existing indentation.
  922.    * If the value of INDENT is 0, the Info formatting commands delete
  923.      existing indentation.
  924.    * If the value of INDENT is greater than 0, the Info formatting
  925.      commands indent the paragraph by that number of spaces.
  926.   The default value of INDENT is `asis'.
  927.   Write the `@paragraphindent' command before or shortly after the
  928. end-of-header line at the beginning of a Texinfo file.  (If you write
  929. the command between the start-of-header and end-of-header lines, the
  930. region formatting commands indent paragraphs as specified.)
  931.   A peculiarity of the `texinfo-format-buffer' and
  932. `texinfo-format-region' commands is that they do not indent (nor fill)
  933. paragraphs that contain `@w' or `@*' commands.  *Note Refilling
  934. Paragraphs::, for a detailed description of what goes on.
  935. File: texinfo.info,  Node: End of Header,  Prev: paragraphindent,  Up: Header
  936. End of Header
  937. -------------
  938.   Follow the header lines with an end-of-header line.  An end-of-header
  939. line looks like this:
  940.      @c %**end of header
  941.   If you include the `@setchapternewpage' command between the
  942. start-of-header and end-of-header lines, TeX will typeset a region as
  943. that command specifies.  Similarly, if you include an `@smallbook'
  944. command between the start-of-header and end-of-header lines, TeX will
  945. typeset a region in the "small" book format.
  946.   The reason for the odd string of characters (`%**') is so that the
  947. `texinfo-tex-region' command does not accidentally find something that
  948. it should not when it is looking for the header.
  949.   The start-of-header line and the end-of-header line are Texinfo mode
  950. variables that you can change.
  951. File: texinfo.info,  Node: Info Summary and Permissions,  Next: Titlepage & Copyright Page,  Prev: Header,  Up: Beginning a File
  952. Summary and Copying Permissions for Info
  953. ========================================
  954.   The title page and the copyright page appear only in the printed copy
  955. of the manual; therefore, the same information must be inserted in a
  956. section that appears only in the Info file.  This section usually
  957. contains a brief description of the contents of the Info file, a
  958. copyright notice, and copying permissions.
  959.   The copyright notice should read:
  960.      Copyright YEAR COPYRIGHT-OWNER
  961. and be put on a line by itself.
  962.   Standard text for the copyright permissions is contained in an
  963. appendix to this manual; see *Note `ifinfo' Copying Permissions: ifinfo
  964. Permissions, for the complete text.
  965.   The permissions text appears in an Info file *before* the first node.
  966. This mean that a reader does *not* see this text when reading the file
  967. using Info, except when using the advanced Info command `g *'.
  968.