home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / texinfo-3.7-bin.lha / info / texinfo.info-4 (.txt) < prev    next >
GNU Info File  |  1996-10-12  |  51KB  |  956 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: Writing a Node,  Next: Node Line Tips,  Prev: Node Names,  Up: node
  21. How to Write an `@node' Line
  22. ----------------------------
  23.   The easiest way to write an `@node' line is to write `@node' at the
  24. beginning of a line and then the name of the node, like this:
  25.      @node NODE-NAME
  26.   If you are using GNU Emacs, you can use the update node commands
  27. provided by Texinfo mode to insert the names of the pointers; or you
  28. can leave the pointers out of the Texinfo file and let `makeinfo'
  29. insert node pointers into the Info file it creates.  (*Note Texinfo
  30. Mode::, and *Note makeinfo Pointer Creation::.)
  31.   Alternatively, you can insert the `Next', `Previous', and `Up'
  32. pointers yourself.  If you do this, you may find it helpful to use the
  33. Texinfo mode keyboard command `C-c C-c n'.  This command inserts
  34. `@node' and a comment line listing the names of the pointers in their
  35. proper order.  The comment line helps you keep track of which arguments
  36. are for which pointers.  This comment line is especially useful if you
  37. are not familiar with Texinfo.
  38.   The template for a node line with `Next', `Previous', and `Up'
  39. pointers looks like this:
  40.      @node NODE-NAME, NEXT, PREVIOUS, UP
  41.   If you wish, you can ignore `@node' lines altogether in your first
  42. draft and then use the `texinfo-insert-node-lines' command to create
  43. `@node' lines for you.  However, we do not recommend this practice.  It
  44. is better to name the node itself at the same time that you write a
  45. segment so you can easily make cross references.  A large number of
  46. cross references are an especially important feature of a good Info
  47. file.
  48.   After you have inserted an `@node' line, you should immediately write
  49. an @-command for the chapter or section and insert its name.  Next (and
  50. this is important!), put in several index entries.  Usually, you will
  51. find at least two and often as many as four or five ways of referring
  52. to the node in the index.  Use them all.  This will make it much easier
  53. for people to find the node.
  54. File: texinfo.info,  Node: Node Line Tips,  Next: Node Line Requirements,  Prev: Writing a Node,  Up: node
  55. `@node' Line Tips
  56. -----------------
  57.   Here are three suggestions:
  58.    * Try to pick node names that are informative but short.
  59.      In the Info file, the file name, node name, and pointer names are
  60.      all inserted on one line, which may run into the right edge of the
  61.      window.  (This does not cause a problem with Info, but is ugly.)
  62.    * Try to pick node names that differ from each other near the
  63.      beginnings of their names.  This way, it is easy to use automatic
  64.      name completion in Info.
  65.    * By convention, node names are capitalized just as they would be for
  66.      section or chapter titles--initial and significant words are
  67.      capitalized; others are not.
  68. File: texinfo.info,  Node: Node Line Requirements,  Next: First Node,  Prev: Node Line Tips,  Up: node
  69. `@node' Line Requirements
  70. -------------------------
  71.   Here are several requirements for `@node' lines:
  72.    * All the node names for a single Info file must be unique.
  73.      Duplicates confuse the Info movement commands.  This means, for
  74.      example, that if you end every chapter with a summary, you must
  75.      name each summary node differently.  You cannot just call each one
  76.      "Summary".  You may, however, duplicate the titles of chapters,
  77.      sections, and the like.  Thus you can end each chapter in a book
  78.      with a section called "Summary", so long as the node names for
  79.      those sections are all different.
  80.    * A pointer name must be the name of a node.
  81.      The node to which a pointer points may come before or after the
  82.      node containing the pointer.
  83.    * You cannot use any of the Texinfo @-commands in a node name;
  84.      @-commands confuse Info.
  85.      Thus, the beginning of the section called `@chapter' looks like
  86.      this:
  87.           @node  chapter, unnumbered & appendix, makeinfo top, Structuring
  88.           @comment  node-name,  next,  previous,  up
  89.           @section @code{@@chapter}
  90.           @findex chapter
  91.    * You cannot use commas, colons, or apostrophes within a node name;
  92.      these confuse TeX or the Info formatters.
  93.      For example, the following is a section title:
  94.           @code{@@unnumberedsec}, @code{@@appendixsec}, @code{@@heading}
  95.      The corresponding node name is:
  96.           unnumberedsec appendixsec heading
  97.    * Case is significant.
  98. File: texinfo.info,  Node: First Node,  Next: makeinfo top command,  Prev: Node Line Requirements,  Up: node
  99. The First Node
  100. --------------
  101.   The first node of a Texinfo file is the `Top' node, except in an
  102. included file (*note Include Files::.).
  103.   The `Top' node (which must be named `top' or `Top') should have as
  104. its `Up' and `Previous' nodes the name of a node in another file, where
  105. there is a menu that leads to this file.  Specify the file name in
  106. parentheses.  If the file is to be installed directly in the Info
  107. directory file, use `(dir)' as the parent of the `Top' node; this is
  108. short for `(dir)top', and specifies the `Top' node in the `dir' file,
  109. which contains the main menu for Info.  For example, the `@node Top'
  110. line of this manual looks like this:
  111.      @node Top, Overview, (dir), (dir)
  112. (You may use the Texinfo updating commands or the `makeinfo' utility to
  113. insert these `Next' and `(dir)' pointers automatically.)
  114.   *Note Install an Info File::, for more information about installing
  115. an Info file in the `info' directory.
  116.   The `Top' node contains the main or master menu for the document.
  117. File: texinfo.info,  Node: makeinfo top command,  Next: Top Node Summary,  Prev: First Node,  Up: node
  118. The `@top' Sectioning Command
  119. -----------------------------
  120.   A special sectioning command, `@top', has been created for use with
  121. the `@node Top' line.  The `@top' sectioning command tells `makeinfo'
  122. that it marks the `Top' node in the file.  It provides the information
  123. that `makeinfo' needs to insert node pointers automatically.  Write the
  124. `@top' command at the beginning of the line immediately following the
  125. `@node Top' line.  Write the title on the remaining part of the same
  126. line as the `@top' command.
  127.   In Info, the `@top' sectioning command causes the title to appear on a
  128. line by itself, with a line of asterisks inserted underneath.
  129.   In TeX and `texinfo-format-buffer', the `@top' sectioning command is
  130. merely a synonym for `@unnumbered'.  Neither of these formatters
  131. require an `@top' command, and do nothing special with it.  You can use
  132. `@chapter' or `@unnumbered' after the `@node Top' line when you use
  133. these formatters.  Also, you can use `@chapter' or `@unnumbered' when
  134. you use the Texinfo updating commands to create or update pointers and
  135. menus.
  136. File: texinfo.info,  Node: Top Node Summary,  Prev: makeinfo top command,  Up: node
  137. The `Top' Node Summary
  138. ----------------------
  139.   You can help readers by writing a summary in the `Top' node, after the
  140. `@top' line, before the main or master menu.  The summary should
  141. briefly describe the document.  In Info, this summary will appear just
  142. before the master menu.  In a printed manual, this summary will appear
  143. on a page of its own.
  144.   If you do not want the summary to appear on a page of its own in a
  145. printed manual, you can enclose the whole of the `Top' node, including
  146. the `@node Top' line and the `@top' sectioning command line or other
  147. sectioning command line between `@ifinfo' and `@end ifinfo'.  This
  148. prevents any of the text from appearing in the printed output. (*note
  149. Conditionally Visible Text: Conditionals.).  You can repeat the brief
  150. description from the `Top' node within `@iftex' ... `@end iftex' at the
  151. beginning of the first chapter, for those who read the printed manual.
  152. This saves paper and may look neater.
  153.   You should write the version number of the program to which the manual
  154. applies in the summary.  This helps the reader keep track of which
  155. manual is for which version of the program.  If the manual changes more
  156. frequently than the program or is independent of it, you should also
  157. include an edition number for the manual.  (The title page should also
  158. contain this information: see *Note `@titlepage': titlepage.)
  159. File: texinfo.info,  Node: makeinfo Pointer Creation,  Prev: node,  Up: Nodes
  160. Creating Pointers with `makeinfo'
  161. =================================
  162.   The `makeinfo' program has a feature for automatically creating node
  163. pointers for a hierarchically organized file that lacks them.
  164.   When you take advantage of this feature, you do not need to write the
  165. `Next', `Previous', and `Up' pointers after the name of a node.
  166. However, you must write a sectioning command, such as `@chapter' or
  167. `@section', on the line immediately following each truncated `@node'
  168. line.  You cannot write a comment line after a node line; the section
  169. line must follow it immediately.
  170.   In addition, you must follow the `Top' `@node' line with a line
  171. beginning with `@top' to mark the `Top' node in the file. *Note `@top':
  172. makeinfo top.
  173.   Finally, you must write the name of each node (except for the `Top'
  174. node) in a menu that is one or more hierarchical levels above the
  175. node's hierarchical level.
  176.   This node pointer insertion feature in `makeinfo' is an alternative
  177. to the menu and pointer creation and update commands in Texinfo mode.
  178. (*Note Updating Nodes and Menus::.)  It is especially helpful to people
  179. who do not use GNU Emacs for writing Texinfo documents.
  180. File: texinfo.info,  Node: Menus,  Next: Cross References,  Prev: Nodes,  Up: Top
  181. Menus
  182. *****
  183.   "Menus" contain pointers to subordinate nodes.(1) (*note
  184. Menus-Footnotes::) In Info, you use menus to go to such nodes.  Menus
  185. have no effect in printed manuals and do not appear in them.
  186.   By convention, a menu is put at the end of a node since a reader who
  187. uses the menu may not see text that follows it.
  188.   A node that has a menu should *not* contain much text.  If you have a
  189. lot of text and a menu, move most of the text into a new subnode--all
  190. but a few lines.
  191. * Menu:
  192. * Menu Location::               Put a menu in a short node.
  193. * Writing a Menu::              What is a menu?
  194. * Menu Parts::                  A menu entry has three parts.
  195. * Less Cluttered Menu Entry::   Two part menu entry.
  196. * Menu Example::                Two and three part menu entries.
  197. * Other Info Files::            How to refer to a different Info file.
  198. File: texinfo.info,  Node: Menus-Footnotes,  Up: Menus
  199.   (1)  Menus can carry you to any node, regardless of the hierarchical
  200. structure; even to nodes in a different Info file.  However, the GNU
  201. Emacs Texinfo mode updating commands work only to create menus of
  202. subordinate nodes.  Conventionally, cross references are used to refer
  203. to other nodes.
  204. File: texinfo.info,  Node: Menu Location,  Next: Writing a Menu,  Prev: Menus,  Up: Menus
  205. Menus Need Short Nodes
  206. ======================
  207.   A reader can easily see a menu that is close to the beginning of the
  208. node.  The node should be short.  As a practical matter, you should
  209. locate a menu within 20 lines of the beginning of the node.  Otherwise,
  210. a reader with a terminal that displays only a few lines may miss the
  211. menu and its associated text.
  212.   The short text before a menu may look awkward in a printed manual.  To
  213. avoid this, you can write a menu near the beginning of its node and
  214. follow the menu by an `@node' line, and then an `@heading' line located
  215. within `@ifinfo' and `@end ifinfo'.  This way, the menu, `@node' line,
  216. and title appear only in the Info file, not the printed document.
  217.   For example, the preceding two paragraphs follow an Info-only menu,
  218. `@node' line, and heading, and look like this:
  219.      @menu
  220.      * Menu Location::             Put a menu in a short node.
  221.      * Writing a Menu::            What is a menu?
  222.      * Menu Parts::                A menu entry has three parts.
  223.      * Less Cluttered Menu Entry:: Two part menu entry.
  224.      * Menu Example::              Two and three part entries.
  225.      * Other Info Files::          How to refer to a different
  226.                                      Info file.
  227.      @end menu
  228.      
  229.      @node Menu Location, Writing a Menu,  , Menus
  230.      @ifinfo
  231.      @heading Menus Need Short Nodes
  232.      @end ifinfo
  233.   The Texinfo file for this document contains more than a dozen
  234. examples of this procedure.  One is at the beginning of this chapter;
  235. another is at the beginning of the "Cross References" chapter.
  236. File: texinfo.info,  Node: Writing a Menu,  Next: Menu Parts,  Prev: Menu Location,  Up: Menus
  237. Writing a Menu
  238. ==============
  239.   A menu consists of an `@menu' command on a line by itself followed by
  240. menu entry lines or menu comment lines and then by an `@end menu'
  241. command on a line by itself.
  242.   A menu looks like this:
  243.      @menu
  244.      Larger Units of Text
  245.      
  246.      * Files::                       All about handling files.
  247.      * Multiples: Buffers.           Multiple buffers; editing
  248.                                        several files at once.
  249.      @end menu
  250.   In a menu, every line that begins with an `* ' is a "menu entry".
  251. (Note the space after the asterisk.)  A line that does not start with
  252. an `* ' may also appear in a menu.  Such a line is not a menu entry but
  253. is a menu comment line that appears in the Info file.  In the example
  254. above, the line `Larger Units of Text' is a menu comment line; the two
  255. lines starting with `* ' are menu entries.
  256. File: texinfo.info,  Node: Menu Parts,  Next: Less Cluttered Menu Entry,  Prev: Writing a Menu,  Up: Menus
  257. The Parts of a Menu
  258. ===================
  259.   A menu entry has three parts, only the second of which is required:
  260.   1. The menu entry name.
  261.   2. The name of the node (required).
  262.   3. A description of the item.
  263.   The template for a menu entry looks like this:
  264.      * MENU-ENTRY-NAME: NODE-NAME.   DESCRIPTION
  265.   Follow the menu entry name with a single colon and follow the node
  266. name with tab, comma, period, or newline.
  267.   In Info, a user selects a node with the `m' (`Info-menu') command.
  268. The menu entry name is what the user types after the `m' command.
  269.   The third part of a menu entry is a descriptive phrase or sentence.
  270. Menu entry names and node names are often short; the description
  271. explains to the reader what the node is about.  The description, which
  272. is optional, can spread over two or more lines.  A useful description
  273. complements the node name rather than repeats it.
  274. File: texinfo.info,  Node: Less Cluttered Menu Entry,  Next: Menu Example,  Prev: Menu Parts,  Up: Menus
  275. Less Cluttered Menu Entry
  276. =========================
  277.   When the menu entry name and node name are the same, you can write
  278. the name immediately after the asterisk and space at the beginning of
  279. the line and follow the name with two colons.
  280.   For example, write
  281.      * Name::                                    DESCRIPTION
  282. instead of
  283.      * Name: Name.                               DESCRIPTION
  284.   You should use the node name for the menu entry name whenever
  285. possible, since it reduces visual clutter in the menu.
  286. File: texinfo.info,  Node: Menu Example,  Next: Other Info Files,  Prev: Less Cluttered Menu Entry,  Up: Menus
  287. A Menu Example
  288. ==============
  289.   A menu looks like this in Texinfo:
  290.      @menu
  291.      * menu entry name: Node name.   A short description.
  292.      * Node name::                   This form is preferred.
  293.      @end menu
  294. This produces:
  295.      * menu:
  296.      
  297.      * menu entry name: Node name.   A short description.
  298.      * Node name::                   This form is preferred.
  299.   Here is an example as you might see it in a Texinfo file:
  300.      @menu
  301.      Larger Units of Text
  302.      
  303.      * Files::                       All about handling files.
  304.      * Multiples: Buffers.           Multiple buffers; editing
  305.                                        several files at once.
  306.      @end menu
  307. This produces:
  308.      * menu:
  309.      Larger Units of Text
  310.      
  311.      * Files::                       All about handling files.
  312.      * Multiples: Buffers.           Multiple buffers; editing
  313.                                        several files at once.
  314.   In this example, the menu has two entries.  `Files' is both a menu
  315. entry name and the name of the node referred to by that name.
  316. `Multiples' is the menu entry name; it refers to the node named
  317. `Buffers'. The line `Larger Units of Text' is a comment; it appears in
  318. the menu, but is not an entry.
  319.   Since no file name is specified with either `Files' or `Buffers',
  320. they must be the names of nodes in the same Info file (*note Referring
  321. to Other Info Files: Other Info Files.).
  322. File: texinfo.info,  Node: Other Info Files,  Prev: Menu Example,  Up: Menus
  323. Referring to Other Info Files
  324. =============================
  325.   You can create a menu entry that enables a reader in Info to go to a
  326. node in another Info file by writing the file name in parentheses just
  327. before the node name.  In this case, you should use the three-part menu
  328. entry format, which saves the reader from having to type the file name.
  329.   The format looks like this:
  330.      @menu
  331.      * FIRST-ENTRY-NAME:(FILENAME)NODENAME.     DESCRIPTION
  332.      * SECOND-ENTRY-NAME:(FILENAME)SECOND-NODE. DESCRIPTION
  333.      @end menu
  334.   For example, to refer directly to the `Outlining' and `Rebinding'
  335. nodes in the `Emacs Manual', you would write a menu like this:
  336.      @menu
  337.      * Outlining: (emacs)Outline Mode. The major mode for
  338.                                        editing outlines.
  339.      * Rebinding: (emacs)Rebinding.    How to redefine the
  340.                                        meaning of a key.
  341.      @end menu
  342.   If you do not list the node name, but only name the file, then Info
  343. presumes that you are referring to the `Top' node.
  344.   The `dir' file that contains the main menu for Info has menu entries
  345. that list only file names.  These take you directly to the `Top' nodes
  346. of each Info document.  (*Note Install an Info File::.)
  347.   For example:
  348.      * Info: (info).         Documentation browsing system.
  349.      * Emacs: (emacs).       The extensible, self-documenting
  350.                              text editor.
  351. (The `dir' top level directory for the Info system is an Info file, not
  352. a Texinfo file, but a menu entry looks the same in both types of file.)
  353.   Note that the GNU Emacs Texinfo mode menu updating commands only work
  354. with nodes within the current buffer, so you cannot use them to create
  355. menus that refer to other files.  You must write such menus by hand.
  356. File: texinfo.info,  Node: Cross References,  Next: Marking Text,  Prev: Menus,  Up: Top
  357. Cross References
  358. ****************
  359.   "Cross references" are used to refer the reader to other parts of the
  360. same or different Texinfo files.  In Texinfo, nodes are the places to
  361. which cross references can refer.
  362. * Menu:
  363. * References::                  What cross references are for.
  364. * Cross Reference Commands::    A summary of the different commands.
  365. * Cross Reference Parts::       A cross reference has several parts.
  366. * xref::                        Begin a reference with `See' ...
  367. * Top Node Naming::             How to refer to the beginning of another file.
  368. * ref::                         A reference for the last part of a sentence.
  369. * pxref::                       How to write a parenthetical cross reference.
  370. * inforef::                     How to refer to an Info-only file.
  371. File: texinfo.info,  Node: References,  Next: Cross Reference Commands,  Prev: Cross References,  Up: Cross References
  372. What References Are For
  373. =======================
  374.   Often, but not always, a printed document should be designed so that
  375. it can be read sequentially.  People tire of flipping back and forth to
  376. find information that should be presented to them as they need it.
  377.   However, in any document, some information will be too detailed for
  378. the current context, or incidental to it; use cross references to
  379. provide access to such information.  Also, an on-line help system or a
  380. reference manual is not like a novel; few read such documents in
  381. sequence from beginning to end.  Instead, people look up what they
  382. need.  For this reason, such creations should contain many cross
  383. references to help readers find other information that they may not
  384. have read.
  385.   In a printed manual, a cross reference results in a page reference,
  386. unless it is to another manual altogether, in which case the cross
  387. reference names that manual.
  388.   In Info, a cross reference results in an entry that you can follow
  389. using the Info `f' command.  (*note Some advanced Info commands:
  390. (info)Help-Adv.)
  391.   The various cross reference commands use nodes to define cross
  392. reference locations.  This is evident in Info, in which a cross
  393. reference takes you to the specified node.  TeX also uses nodes to
  394. define cross reference locations, but the action is less obvious.  When
  395. TeX generates a DVI file, it records nodes' page numbers and uses the
  396. page numbers in making references.  Thus, if you are writing a manual
  397. that will only be printed, and will not be used on-line, you must
  398. nonetheless write `@node' lines to name the places to which you make
  399. cross references.
  400. File: texinfo.info,  Node: Cross Reference Commands,  Next: Cross Reference Parts,  Prev: References,  Up: Cross References
  401. Different Cross Reference Commands
  402. ==================================
  403.   There are four different cross reference commands:
  404. `@xref'
  405.      Used to start a sentence in the printed manual saying `See ...' or
  406.      an Info cross-reference saying `*Note NAME: NODE.'.
  407. `@ref'
  408.      Used within or, more often, at the end of a sentence; same as
  409.      `@xref' for Info; produces just the reference in the printed
  410.      manual without a preceding `See'.
  411. `@pxref'
  412.      Used within parentheses to make a reference that suits both an Info
  413.      file and a printed book.  Starts with a lower case `see' within the
  414.      printed manual. (`p' is for `parenthesis'.)
  415. `@inforef'
  416.      Used to make a reference to an Info file for which there is no
  417.      printed manual.
  418. (The `@cite' command is used to make references to books and manuals
  419. for which there is no corresponding Info file and, therefore, no node
  420. to which to point.   *Note `@cite': cite.)
  421. File: texinfo.info,  Node: Cross Reference Parts,  Next: xref,  Prev: Cross Reference Commands,  Up: Cross References
  422. Parts of a Cross Reference
  423. ==========================
  424.   A cross reference command requires only one argument, which is the
  425. name of the node to which it refers.  But a cross reference command may
  426. contain up to four additional arguments.  By using these arguments, you
  427. can provide a cross reference name for Info, a topic description or
  428. section title for the printed output, the name of a different Info
  429. file, and the name of a different printed manual.
  430.   Here is a simple cross reference example:
  431.      @xref{Node name}.
  432. which produces
  433.      *Note Node name::.
  434.      See Section NNN [Node name], page PPP.
  435.   Here is an example of a full five-part cross reference:
  436.      @xref{Node name, Cross Reference Name, Particular Topic,
  437.      info-file-name, A Printed Manual}, for details.
  438. which produces
  439.      *Note Cross Reference Name: (info-file-name)Node name,
  440.      for details.
  441. in Info and
  442.      See section "Particular Topic" in A Printed Manual, for details.
  443. in a printed book.
  444.   The five possible arguments for a cross reference are:
  445.   1. The node name (required).  This is the node to which the cross
  446.      reference takes you.  In a printed document, the location of the
  447.      node provides the page reference only for references within the
  448.      same document.
  449.   2. The cross reference name for the Info reference, if it is to be
  450.      different from the node name.  If you include this argument, it
  451.      argument becomes the first part of the cross reference. It is
  452.      usually omitted.
  453.   3. A topic description or section name.  Often, this is the title of
  454.      the section.  This is used as the name of the reference in the
  455.      printed manual.  If omitted, the node name is used.
  456.   4. The name of the Info file in which the reference is located, if it
  457.      is different from the current file.
  458.   5. The name of a printed manual from a different Texinfo file.
  459.   The template for a full five argument cross reference looks like this:
  460.      @xref{NODE-NAME, CROSS-REFERENCE-NAME, TITLE-OR-TOPIC,
  461.      INFO-FILE-NAME, PRINTED-MANUAL-TITLE}.
  462.   Cross references with one, two, three, four, and five arguments are
  463. described separately following the description of `@xref'.
  464.   Write a node name in a cross reference in exactly the same way as in
  465. the `@node' line, including the same capitalization; otherwise, the
  466. formatters may not find the reference.
  467.   You can write cross reference commands within a paragraph, but note
  468. how Info and TeX format the output of each of the various commands:
  469. write `@xref' at the beginning of a sentence; write `@pxref' only
  470. within parentheses, and so on.
  471. File: texinfo.info,  Node: xref,  Next: Top Node Naming,  Prev: Cross Reference Parts,  Up: Cross References
  472. `@xref'
  473. =======
  474.   The `@xref' command generates a cross reference for the beginning of
  475. a sentence.  The Info formatting commands convert it into an Info cross
  476. reference, which the Info `f' command can use to bring you directly to
  477. another node.  The TeX typesetting commands convert it into a page
  478. reference, or a reference to another book or manual.
  479. * Menu:
  480. * Reference Syntax::            What a reference looks like and requires.
  481. * One Argument::                `@xref' with one argument.
  482. * Two Arguments::               `@xref' with two arguments.
  483. * Three Arguments::             `@xref' with three arguments.
  484. * Four and Five Arguments::     `@xref' with four and five arguments.
  485. File: texinfo.info,  Node: Reference Syntax,  Next: One Argument,  Prev: xref,  Up: xref
  486. What a Reference Looks Like and Requires
  487. ----------------------------------------
  488.   Most often, an Info cross reference looks like this:
  489.      *Note NODE-NAME::.
  490. or like this
  491.      *Note CROSS-REFERENCE-NAME: NODE-NAME.
  492. In TeX, a cross reference looks like this:
  493.      See Section SECTION-NUMBER [NODE-NAME], page PAGE.
  494. or like this
  495.      See Section SECTION-NUMBER [TITLE-OR-TOPIC], page PAGE.
  496.   The `@xref' command does not generate a period or comma to end the
  497. cross reference in either the Info file or the printed output.  You
  498. must write that period or comma yourself; otherwise, Info will not
  499. recognize the end of the reference.  (The `@pxref' command works
  500. differently.  *Note `@pxref': pxref.)
  501.      *Please note:* A period or comma *must* follow the closing brace
  502.      of an `@xref'.  It is required to terminate the cross reference.
  503.      This period or comma will appear in the output, both in the Info
  504.      file and in the printed manual.
  505.   `@xref' must refer to an Info node by name.  Use `@node' to define
  506. the node (*note Writing a Node::.).
  507.   `@xref' is followed by several arguments inside braces, separated by
  508. commas.  Whitespace before and after these commas is ignored.
  509.   A cross reference requires only the name of a node; but it may contain
  510. up to four additional arguments.  Each of these variations produces a
  511. cross reference that looks somewhat different.
  512.      *Please note:* Commas separate arguments in a cross reference;
  513.      avoid including them in the title or other part lest the formatters
  514.      mistake them for separators.
  515. File: texinfo.info,  Node: One Argument,  Next: Two Arguments,  Prev: Reference Syntax,  Up: xref
  516. `@xref' with One Argument
  517. -------------------------
  518.   The simplest form of `@xref' takes one argument, the name of another
  519. node in the same Info file.    The Info formatters produce output that
  520. the Info readers can use to jump to the reference; TeX produces output
  521. that specifies the page and section number for you.
  522. For example,
  523.      @xref{Tropical Storms}.
  524. produces
  525.      *Note Tropical Storms::.
  526.      See Section 3.1 [Tropical Storms], page 24.
  527. (Note that in the preceding example the closing brace is followed by a
  528. period.)
  529.   You can write a clause after the cross reference, like this:
  530.      @xref{Tropical Storms}, for more info.
  531. which produces
  532.      *Note Tropical Storms::, for more info.
  533.      See Section 3.1 [Tropical Storms], page 24, for more info.
  534. (Note that in the preceding example the closing brace is followed by a
  535. comma, and then by the clause, which is followed by a period.)
  536. File: texinfo.info,  Node: Two Arguments,  Next: Three Arguments,  Prev: One Argument,  Up: xref
  537. `@xref' with Two Arguments
  538. --------------------------
  539.   With two arguments, the second is used as the name of the Info cross
  540. reference, while the first is still the name of the node to which the
  541. cross reference points.
  542. The template is like this:
  543.      @xref{NODE-NAME, CROSS-REFERENCE-NAME}.
  544. For example,
  545.      @xref{Electrical Effects, Lightning}.
  546. produces:
  547.      *Note Lightning: Electrical Effects.
  548.      See Section 5.2 [Electrical Effects], page 57.
  549. (Note that in the preceding example the closing brace is followed by a
  550. period; and that the node name is printed, not the cross reference
  551. name.)
  552.   You can write a clause after the cross reference, like this:
  553.      @xref{Electrical Effects, Lightning}, for more info.
  554. which produces
  555.      *Note Lightning: Electrical Effects, for more info.
  556.      See Section 5.2 [Electrical Effects], page 57, for more info.
  557. (Note that in the preceding example the closing brace is followed by a
  558. comma, and then by the clause, which is followed by a period.)
  559. File: texinfo.info,  Node: Three Arguments,  Next: Four and Five Arguments,  Prev: Two Arguments,  Up: xref
  560. `@xref' with Three Arguments
  561. ----------------------------
  562.   A third argument replaces the node name in the TeX output.  The third
  563. argument should be the name of the section in the printed output, or
  564. else state the topic discussed by that section.  Often, you will want to
  565. use initial upper case letters so it will be easier to read when the
  566. reference is printed.  Use a third argument when the node name is
  567. unsuitable because of syntax or meaning.
  568.   Remember to avoid placing a comma within the title or topic section of
  569. a cross reference, or within any other section.  The formatters divide
  570. cross references into arguments according to the commas; a comma within
  571. a title or other section will divide it into two arguments.  In a
  572. reference, you need to write a title such as "Clouds, Mist, and Fog"
  573. without the commas.
  574.   Also, remember to write a comma or period after the closing brace of a
  575. `@xref' to terminate the cross reference.  In the following examples, a
  576. clause follows a terminating comma.
  577. The template is like this:
  578.      @xref{NODE-NAME, CROSS-REFERENCE-NAME, TITLE-OR-TOPIC}.
  579. For example,
  580.      @xref{Electrical Effects, Lightning, Thunder and Lightning},
  581.      for details.
  582. produces
  583.      *Note Lightning: Electrical Effects, for details.
  584.      See Section 5.2 [Thunder and Lightning], page 57, for details.
  585.   If a third argument is given and the second one is empty, then the
  586. third argument serves both.  (Note how two commas, side by side, mark
  587. the empty second argument.)
  588.      @xref{Electrical Effects, , Thunder and Lightning},
  589.      for details.
  590. produces
  591.      *Note Thunder and Lightning: Electrical Effects, for details.
  592.      See Section 5.2 [Thunder and Lightning], page 57, for details.
  593.   As a practical matter, it is often best to write cross references with
  594. just the first argument if the node name and the section title are the
  595. same, and with the first and third arguments if the node name and title
  596. are different.
  597.   Here are several examples from `The GAWK Manual':
  598.      @xref{Sample Program}.
  599.      @xref{Glossary}.
  600.      @xref{Case-sensitivity, ,Case-sensitivity in Matching}.
  601.      @xref{Close Output, , Closing Output Files and Pipes},
  602.         for more information.
  603.      @xref{Regexp, , Regular Expressions as Patterns}.
  604. File: texinfo.info,  Node: Four and Five Arguments,  Prev: Three Arguments,  Up: xref
  605. `@xref' with Four and Five Arguments
  606. ------------------------------------
  607.   In a cross reference, a fourth argument specifies the name of another
  608. Info file, different from the file in which the reference appears, and
  609. a fifth argument specifies its title as a printed manual.
  610.   Remember that a comma or period must follow the closing brace of an
  611. `@xref' command to terminate the cross reference.  In the following
  612. examples, a clause follows a terminating comma.
  613. The template is:
  614.      @xref{NODE-NAME, CROSS-REFERENCE-NAME, TITLE-OR-TOPIC,
  615.      INFO-FILE-NAME, PRINTED-MANUAL-TITLE}.
  616. For example,
  617.      @xref{Electrical Effects, Lightning, Thunder and Lightning,
  618.      weather, An Introduction to Meteorology}, for details.
  619. produces
  620.      *Note Lightning: (weather)Electrical Effects, for details.
  621. The name of the Info file is enclosed in parentheses and precedes the
  622. name of the node.
  623. In a printed manual, the reference looks like this:
  624.      See section "Thunder and Lightning" in An Introduction to
  625.      Meteorology, for details.
  626. The title of the printed manual is typeset in italics; and the
  627. reference lacks a page number since TeX cannot know to which page a
  628. reference refers when that reference is to another manual.
  629.   Often, you will leave out the second argument when you use the long
  630. version of `@xref'.  In this case, the third argument, the topic
  631. description, will be used as the cross reference name in Info.
  632. The template looks like this:
  633.      @xref{NODE-NAME, , TITLE-OR-TOPIC, INFO-FILE-NAME,
  634.      PRINTED-MANUAL-TITLE}, for details.
  635. which produces
  636.      *Note TITLE-OR-TOPIC: (INFO-FILE-NAME)NODE-NAME, for details.
  637.      See section TITLE-OR-TOPIC in PRINTED-MANUAL-TITLE, for details.
  638. For example,
  639.      @xref{Electrical Effects, , Thunder and Lightning,
  640.      weather, An Introduction to Meteorology}, for details.
  641. produces
  642.      *Note Thunder and Lightning: (weather)Electrical Effects,
  643.      for details.
  644.      See section "Thunder and Lightning" in An Introduction to
  645.      Meteorology, for details.
  646.   On rare occasions, you may want to refer to another Info file that is
  647. within a single printed manual--when multiple Texinfo files are
  648. incorporated into the same TeX run but make separate Info files.  In
  649. this case, you need to specify only the fourth argument, and not the
  650. fifth.
  651. File: texinfo.info,  Node: Top Node Naming,  Next: ref,  Prev: xref,  Up: Cross References
  652. Naming a `Top' Node
  653. ===================
  654.   In a cross reference, you must always name a node.  This means that in
  655. order to refer to a whole manual, you must identify the `Top' node by
  656. writing it as the first argument to the `@xref' command.  (This is
  657. different from the way you write a menu entry; see *Note Referring to
  658. Other Info Files: Other Info Files.)  At the same time, to provide a
  659. meaningful section topic or title in the printed cross reference
  660. (instead of the word `Top'), you must write an appropriate entry for
  661. the third argument to the `@xref' command.
  662. Thus, to make a cross reference to `The GNU Make Manual', write:
  663.      @xref{Top, , Overview, make, The GNU Make Manual}.
  664. which produces
  665.      *Note Overview: (make)Top.
  666.      See section "Overview" in The GNU Make Manual.
  667. In this example, `Top' is the name of the first node, and `Overview' is
  668. the name of the first section of the manual.
  669. File: texinfo.info,  Node: ref,  Next: pxref,  Prev: Top Node Naming,  Up: Cross References
  670. `@ref'
  671. ======
  672.   `@ref' is nearly the same as `@xref' except that it does not generate
  673. a `See' in the printed output, just the reference itself.  This makes
  674. it useful as the last part of a sentence.
  675. For example,
  676.      For more information, see @ref{Hurricanes}.
  677. produces
  678.      For more information, see *Note Hurricanes.
  679.      For more information, see Section 8.2 [Hurricanes], page 123.
  680.   The `@ref' command sometimes leads writers to express themselves in a
  681. manner that is suitable for a printed manual but looks awkward in the
  682. Info format.  Bear in mind that your audience will be using both the
  683. printed and the Info format.
  684. For example,
  685.      Sea surges are described in @ref{Hurricanes}.
  686. produces
  687.      Sea surges are described in Section 6.7 [Hurricanes], page 72.
  688. in a printed document, and the following in Info:
  689.      Sea surges are described in *Note Hurricanes::.
  690.      *Caution:* You *must* write a period or comma immediately after an
  691.      `@ref' command with two or more arguments.  Otherwise, Info will
  692.      not find the end of the cross reference entry and its attempt to
  693.      follow the cross reference will fail.  As a general rule, you
  694.      should write a period or comma after every `@ref' command.  This
  695.      looks best in both the printed and the Info output.
  696. File: texinfo.info,  Node: pxref,  Next: inforef,  Prev: ref,  Up: Cross References
  697. `@pxref'
  698. ========
  699.   The parenthetical reference command, `@pxref', is nearly the same as
  700. `@xref', but you use it *only* inside parentheses and you do *not* type
  701. a comma or period after the command's closing brace.  The command
  702. differs from `@xref' in two ways:
  703.   1. TeX typesets the reference for the printed manual with a lower case
  704.      `see' rather than an upper case `See'.
  705.   2. The Info formatting commands automatically end the reference with a
  706.      closing colon or period.
  707.   Because one type of formatting automatically inserts closing
  708. punctuation and the other does not, you should use `@pxref' *only*
  709. inside parentheses as part of another sentence.  Also, you yourself
  710. should not insert punctuation after the reference, as you do with
  711. `@xref'.
  712.   `@pxref' is designed so that the output looks right and works right
  713. between parentheses both in printed output and in an Info file.  In a
  714. printed manual, a closing comma or period should not follow a cross
  715. reference within parentheses; such punctuation is wrong.  But in an
  716. Info file, suitable closing punctuation must follow the cross reference
  717. so Info can recognize its end.  `@pxref' spares you the need to use
  718. complicated methods to put a terminator into one form of the output and
  719. not the other.
  720. With one argument, a parenthetical cross reference looks like this:
  721.      ... storms cause flooding (@pxref{Hurricanes}) ...
  722. which produces
  723.      ... storms cause flooding (*Note Hurricanes::) ...
  724.      ... storms cause flooding (see Section 6.7 [Hurricanes], page 72)
  725.      ...
  726.   With two arguments, a parenthetical cross reference has this template:
  727.      ... (@pxref{NODE-NAME, CROSS-REFERENCE-NAME}) ...
  728. which produces
  729.      ... (*Note CROSS-REFERENCE-NAME: NODE-NAME.) ...
  730.      ... (see Section NNN [NODE-NAME], page PPP) ...
  731.   `@pxref' can be used with up to five arguments just like `@xref'
  732. (*note `@xref': xref.).
  733.      *Please note:* Use `@pxref' only as a parenthetical reference.  Do
  734.      not try to use `@pxref' as a clause in a sentence.  It will look
  735.      bad in either the Info file, the printed output, or both.
  736.      Also, parenthetical cross references look best at the ends of
  737.      sentences.  Although you may write them in the middle of a
  738.      sentence, that location breaks up the flow of text.
  739. File: texinfo.info,  Node: inforef,  Prev: pxref,  Up: Cross References
  740. `@inforef'
  741. ==========
  742.   `@inforef' is used for cross references to Info files for which there
  743. are no printed manuals.  Even in a printed manual, `@inforef' generates
  744. a reference directing the user to look in an Info file.
  745.   The command takes either two or three arguments, in the following
  746. order:
  747.   1. The node name.
  748.   2. The cross reference name (optional).
  749.   3. The Info file name.
  750. Separate the arguments with commas, as with `@xref'.  Also, you must
  751. terminate the reference with a comma or period after the `}', as you do
  752. with `@xref'.
  753. The template is:
  754.      @inforef{NODE-NAME, CROSS-REFERENCE-NAME, INFO-FILE-NAME},
  755. Thus,
  756.      @inforef{Expert, Advanced Info commands, info},
  757.      for more information.
  758. produces
  759.      *Note Advanced Info commands: (info)Expert,
  760.      for more information.
  761.      See Info file `info', node `Expert', for more information.
  762. Similarly,
  763.      @inforef{Expert, , info}, for more information.
  764. produces
  765.      *Note (info)Expert::, for more information.
  766.      See Info file `info', node `Expert', for more information.
  767.   The converse of `@inforef' is `@cite', which is used to refer to
  768. printed works for which no Info form exists.  *Note `@cite': cite.
  769. File: texinfo.info,  Node: Marking Text,  Next: Quotations and Examples,  Prev: Cross References,  Up: Top
  770. Marking Words and Phrases
  771. *************************
  772.   In Texinfo, you can mark words and phrases in a variety of ways.  The
  773. Texinfo formatters use this information to determine how to highlight
  774. the text.  You can specify, for example, whether a word or phrase is a
  775. defining occurrence, a metasyntactic variable, or a symbol used in a
  776. program.  Also, you can emphasize text.
  777. * Menu:
  778. * Indicating::                  How to indicate definitions, files, etc.
  779. * Emphasis::                    How to emphasize text.
  780. File: texinfo.info,  Node: Indicating,  Next: Emphasis,  Prev: Marking Text,  Up: Marking Text
  781. Indicating Definitions, Commands, etc.
  782. ======================================
  783.   Texinfo has commands for indicating just what kind of object a piece
  784. of text refers to.  For example, metasyntactic variables are marked by
  785. `@var', and code by `@code'.  Since the pieces of text are labelled by
  786. commands that tell what kind of object they are, it is easy to change
  787. the way the Texinfo formatters prepare such text.  (Texinfo is an
  788. *intentional* formatting language rather than a *typesetting*
  789. formatting language.)
  790.   For example, in a printed manual, code is usually illustrated in a
  791. typewriter font; `@code' tells TeX to typeset this text in this font.
  792. But it would be easy to change the way TeX highlights code to use
  793. another font, and this change would not effect how keystroke examples
  794. are highlighted.  If straight typesetting commands were used in the body
  795. of the file and you wanted to make a change, you would need to check
  796. every single occurrence to make sure that you were changing code and
  797. not something else that should not be changed.
  798. * Menu:
  799. * Useful Highlighting::         Highlighting provides useful information.
  800. * code::                        How to indicate code.
  801. * kbd::                         How to show keyboard input.
  802. * key::                         How to specify keys.
  803. * samp::                        How to show a literal sequence of characters.
  804. * var::                         How to indicate a metasyntactic variable.
  805. * file::                        How to indicate the name of a file.
  806. * dfn::                         How to specify a definition.
  807. * cite::                        How to refer to a book that is not in Info.
  808. File: texinfo.info,  Node: Useful Highlighting,  Next: code,  Prev: Indicating,  Up: Indicating
  809. Highlighting Commands are Useful
  810. --------------------------------
  811.   The highlighting commands can be used to generate useful information
  812. from the file, such as lists of functions or file names.  It is
  813. possible, for example, to write a program in Emacs Lisp (or a keyboard
  814. macro) to insert an index entry after every paragraph that contains
  815. words or phrases marked by a specified command.  You could do this to
  816. construct an index of functions if you had not already made the entries.
  817.   The commands serve a variety of purposes:
  818. `@code{SAMPLE-CODE}'
  819.      Indicate text that is a literal example of a piece of a program.
  820. `@kbd{KEYBOARD-CHARACTERS}'
  821.      Indicate keyboard input.
  822. `@key{KEY-NAME}'
  823.      Indicate the conventional name for a key on a keyboard.
  824. `@samp{TEXT}'
  825.      Indicate text that is a literal example of a sequence of
  826.      characters.
  827. `@var{METASYNTACTIC-VARIABLE}'
  828.      Indicate a metasyntactic variable.
  829. `@file{FILE-NAME}'
  830.      Indicate the name of a file.
  831. `@dfn{TERM}'
  832.      Indicate the introductory or defining use of a term.
  833. `@cite{REFERENCE}'
  834.      Indicate the name of a book.
  835. File: texinfo.info,  Node: code,  Next: kbd,  Prev: Useful Highlighting,  Up: Indicating
  836. `@code'{SAMPLE-CODE}
  837. --------------------
  838.   Use the `@code' command to indicate text that is a piece of a program
  839. and which consists of entire syntactic tokens.  Enclose the text in
  840. braces.
  841.   Thus, you should use `@code' for an expression in a program, for the
  842. name of a variable or function used in a program, or for a keyword.
  843. Also, you should use `@code' for the name of a program, such as `diff',
  844. that is a name used in the machine. (You should write the name of a
  845. program in the ordinary text font if you regard it as a new English
  846. word, such as `Emacs' or `Bison'.)
  847.   Use `@code' for environment variables such as `TEXINPUTS', and other
  848. variables.
  849.   Use `@code' for command names in command languages that resemble
  850. programming languages, such as Texinfo or the shell.  For example,
  851. `@code' and `@samp' are produced by writing `@code{@@code}' and
  852. `@code{@@samp}' in the Texinfo source, respectively.
  853.   Note, however, that you should not use `@code' for shell options such
  854. as `-c' when such options stand alone. (Use `@samp'.) Also, an entire
  855. shell command often looks better if written using `@samp' rather than
  856. `@code'.  In this case, the rule is to choose the more pleasing format.
  857.   It is incorrect to alter the case of a word inside an `@code' command
  858. when it appears at the beginning of a sentence.  Most computer
  859. languages are case sensitive.  In C, for example, `Printf' is different
  860. from the identifier `printf', and most likely is a misspelling of it.
  861. Even in languages which are not case sensitive, it is confusing to a
  862. human reader to see identifiers spelled in different ways.  Pick one
  863. spelling and always use that.  If you do not want to start a sentence
  864. with a command written all in lower case, you should rearrange the
  865. sentence.
  866.   Do not use the `@code' command for a string of characters shorter
  867. than a syntactic token.  If you are writing about `TEXINPU', which is
  868. just a part of the name for the `TEXINPUTS' environment variable, you
  869. should use `@samp'.
  870.   In particular, you should not use the `@code' command when writing
  871. about the characters used in a token; do not, for example, use `@code'
  872. when you are explaining what letters or printable symbols can be used
  873. in the names of functions.  (Use `@samp'.)  Also, you should not use
  874. `@code' to mark text that is considered input to programs unless the
  875. input is written in a language that is like a programming language.
  876. For example, you should not use `@code' for the keystroke commands of
  877. GNU Emacs (use `@kbd' instead) although you may use `@code' for the
  878. names of the Emacs Lisp functions that the keystroke commands invoke.
  879.   In the printed manual, `@code' causes TeX to typeset the argument in
  880. a typewriter face.  In the Info file, it causes the Info formatting
  881. commands to use single quotation marks around the text.
  882.   For example,
  883.      Use @code{diff} to compare two files.
  884. produces this in the printed manual:
  885.      Use `diff' to compare two files.
  886. File: texinfo.info,  Node: kbd,  Next: key,  Prev: code,  Up: Indicating
  887. `@kbd'{KEYBOARD-CHARACTERS}
  888. ---------------------------
  889.   Use the `@kbd' command for characters of input to be typed by users.
  890. For example, to refer to the characters `M-a', write
  891.      @kbd{M-a}
  892. and to refer to the characters `M-x shell', write
  893.      @kbd{M-x shell}
  894.   The `@kbd' command has the same effect as `@code' in Info, but may
  895. produce a different font in a printed manual.
  896.   You can embed another @-command inside the braces of an `@kbd'
  897. command.  Here, for example, is the way to describe a command that
  898. would be described more verbosely as "press an `r' and then press the
  899. RET key":
  900.      @kbd{r @key{RET}}
  901. This produces: `r RET'
  902.   You also use the `@kbd' command if you are spelling out the letters
  903. you type; for example:
  904.      To give the @code{logout} command,
  905.      type the characters @kbd{l o g o u t @key{RET}}.
  906. This produces:
  907.      To give the `logout' command, type the characters `l o g o u t
  908.      RET'.
  909.   (Also, this example shows that you can add spaces for clarity.  If you
  910. really want to mention a space character as one of the characters of
  911. input, write `@key{SPC}' for it.)
  912. File: texinfo.info,  Node: key,  Next: samp,  Prev: kbd,  Up: Indicating
  913. `@key'{KEY-NAME}
  914. ----------------
  915.   Use the `@key' command for the conventional name for a key on a
  916. keyboard, as in:
  917.      @key{RET}
  918.   You can use the `@key' command within the argument of an `@kbd'
  919. command when the sequence of characters to be typed includes one or
  920. more keys that are described by name.
  921.   For example, to produce `C-x ESC' you would type:
  922.      @kbd{C-x @key{ESC}}
  923.   Here is a list of the recommended names for keys; they are all in
  924. upper case:
  925.     SPC
  926.           Space
  927.     RET
  928.           Return
  929.     LFD
  930.           Linefeed
  931.     TAB
  932.           Tab
  933.     BS
  934.           Backspace
  935.     ESC
  936.           Escape
  937.     DEL
  938.           Delete
  939.     SFT
  940.           Shift
  941.     CTL
  942.           Control
  943.     META
  944.           Meta
  945.   There are subtleties to handling words like `meta' or `ctl' that are
  946. names of shift keys.  When mentioning a character in which the shift
  947. key is used, such as `Meta-a', use the `@kbd' command alone; do not use
  948. the `@key' command; but when you are referring to the shift key in
  949. isolation, use the `@key' command.  For example, write `@kbd{Meta-a}'
  950. to produce `Meta-a' and `@key{META}' to produce META.  This is because
  951. `Meta-a' refers to keys that you press on a keyboard, but META refers
  952. to a key without implying that you press it.  In short, use `@kbd' for
  953. what you do, and use `@key' for what you talk about: "Press `@kbd{M-a}'
  954. to move point to the beginning of the sentence.  The `@key{META}' key
  955. is often in the lower left of the keyboard."
  956.