Next: Using Texinfo Mode
Texinfo[1] is a documentation system that uses a single source file to produce both on-line information and printed output. This means that instead of writing two different documents, one for the on-line help or other on-line information and the other for a typeset manual or other printed work, you need write only one document. When the work is revised, you need revise only one document. (You can read the on-line information, known as an Info file, with an Info documentation-reading program.)
Using Texinfo, you can create a printed document with the normal features of a book, including chapters, sections, cross references, and indices. From the same Texinfo source file, you can create a menu-driven, on-line Info file with nodes, menus, cross references, and indices. You can, if you wish, make the chapters and sections of the printed document correspond to the nodes of the on-line information; and you use the same cross references and indices for both the Info file and the printed work. The GNU Emacs Manual is a good example of a Texinfo file, as is this manual.
To make a printed document, you process a Texinfo source file with the TEX typesetting program. This creates a DVI file that you can typeset and print as a book or report. (Note that the Texinfo language is completely different from TEX's usual language, plain TEX.) If you do not have TEX, but do have troff
or nroff
, you can use the texi2roff
program instead.
To make an Info file, you process a Texinfo source file with the makeinfo
utility or Emacs's texinfo-format-buffer
command; this creates an Info file that you can install on-line.
TEX and texi2roff
work with many types of printers; similarly, Info works with almost every type of computer terminal. This power makes Texinfo a general purpose system, but brings with it a constraint, which is that a Texinfo file may contain only the customary ``typewriter'' characters (letters, numbers, spaces, and punctuation marks) but no special graphics.
A Texinfo file is a plain ascii file containing text and @-commands (words preceded by an `@') that tell the typesetting and formatting programs what to do. You may edit a Texinfo file with any text editor; but it is especially convenient to use GNU Emacs since that editor has a special mode, called Texinfo mode, that provides various Texinfo-related features. (See Texinfo Mode.)
Before writing a Texinfo source file, you should become familiar with the Info documentation reading program and learn about nodes, menus, cross references, and the rest. ( info, for more information.)
You can use Texinfo to create both on-line help and printed manuals; moreover, Texinfo is freely redistributable. For these reasons, Texinfo is the format in which documentation for GNU utilities and libraries is written.
An Info file is a Texinfo file formatted so that the Info documentation reading program can operate on it. (makeinfo
and texinfo-format-buffer
are two commands that convert a Texinfo file into an Info file.)
Info files are divided into pieces called nodes, each of which contains the discussion of one topic. Each node has a name, and contains both text for the user to read and pointers to other nodes, which are identified by their names. The Info program displays one node at a time, and provides commands with which the user can move to other related nodes.
info, for more information about using Info.
Each node of an Info file may have any number of child nodes that describe subtopics of the node's topic. The names of child nodes are listed in a menu within the parent node; this allows you to use certain Info commands to move to one of the child nodes. Generally, an Info file is organized like a book. If a node is at the logical level of a chapter, its child nodes are at the level of sections; likewise, the child nodes of sections are at the level of subsections.
All the children of any one parent are linked together in a bidirectional chain of `Next' and `Previous' pointers. The `Next' pointer provides a link to the next section, and the `Previous' pointer provides a link to the previous section. This means that all the nodes that are at the level of sections within a chapter are linked together. Normally the order in this chain is the same as the order of the children in the parent's menu. Each child node records the parent node name as its `Up' pointer. The last child has no `Next' pointer, and the first child has the parent both as its `Previous' and as its `Up' pointer.[2]
The book-like structuring of an Info file into nodes that correspond to chapters, sections, and the like is a matter of convention, not a requirement. The `Up', `Previous', and `Next' pointers of a node can point to any other nodes, and a menu can contain any other nodes. Thus, the node structure can be any directed graph. But it is usually more comprehensible to follow a structure that corresponds to the structure of chapters and sections in a printed book or report.
In addition to menus and to `Next', `Previous', and `Up' pointers, Info provides pointers of another kind, called references, that can be sprinkled throughout the text. This is usually the best way to represent links that do not fit a hierarchical structure.
Usually, you will design a document so that its nodes match the structure of chapters and sections in the printed output. But occasionally there are times when this is not right for the material being discussed. Therefore, Texinfo uses separate commands to specify the node structure for the Info file and the section structure for the printed output.
Generally, you enter an Info file through a node that by convention is named `Top'. This node normally contains just a brief summary of the file's purpose, and a large menu through which the rest of the file is reached. From this node, you can either traverse the file systematically by going from node to node, or you can go to a specific node listed in the main menu, or you can search the index menus and then go directly to the node that has the information you want. Alternatively, with the standalone Info program, you can specify specific menu items on the command line (Top).
If you want to read through an Info file in sequence, as if it were a printed manual, you can hit <SPC> repeatedly, or you get the whole file with the advanced Info command g *. ( Advanced Info commands.)
The `dir' file in the `info' directory serves as the departure point for the whole Info system. From it, you can reach the `Top' nodes of each of the documents in a complete Info system.
A Texinfo file can be formatted and typeset as a printed book or manual. To do this, you need TEX, a powerful, sophisticated typesetting program written by Donald Knuth.[3]
A Texinfo-based book is similar to any other typeset, printed work: it can have a title page, copyright page, table of contents, and preface, as well as chapters, numbered or unnumbered sections and subsections, page headers, cross references, footnotes, and indices.
You can use Texinfo to write a book without ever having the intention of converting it into on-line information. You can use Texinfo for writing a printed novel, and even to write a printed memo, although this latter application is not recommended since electronic mail is so much easier.
TEX is a general purpose typesetting program. Texinfo provides a file called `texinfo.tex' that contains information (definitions or macros) that TEX uses when it typesets a Texinfo file. (`texinfo.tex' tells TEX how to convert the Texinfo @-commands to TEX commands, which TEX can then process to create the typeset document.) `texinfo.tex' contains the specifications for printing a document.
Most often, documents are printed on 8.5 inch by 11 inch pages (216mm by 280mm; this is the default size), but you can also print for 7 inch by 9.25 inch pages (178mm by 235mm; the @smallbook
size) or on European A4 size paper (@afourpaper
). (See Printing ``Small'' Books. Also, see Printing on A4 Paper.)
By changing the parameters in `texinfo.tex', you can change the size of the printed document. In addition, you can change the style in which the printed document is formatted; for example, you can change the sizes and fonts used, the amount of indentation for each paragraph, the degree to which words are hyphenated, and the like. By changing the specifications, you can make a book look dignified, old and serious, or light-hearted, young and cheery.
TEX is freely distributable. It is written in a superset of Pascal called WEB and can be compiled either in Pascal or (by using a conversion program that comes with the TEX distribution) in C. (See emacs:TeX Mode,TEX Mode, for information about TEX.)
TEX is very powerful and has a great many features. Because a Texinfo file must be able to present information both on a character-only terminal in Info form and in a typeset book, the formatting commands that Texinfo supports are necessarily limited.
See How to Obtain TEX.
In a Texinfo file, the commands that tell TEX how to typeset the printed manual and tell makeinfo
and texinfo-format-buffer
how to create an Info file are preceded by `@'; they are called @-commands. For example, @node
is the command to indicate a node and @chapter
is the command to indicate the start of a chapter.
Please note: All the @-commands, with the exception of the @TeX{}
command, must be written entirely in lower case.
The Texinfo @-commands are a strictly limited set of constructs. The strict limits make it possible for Texinfo files to be understood both by TEX and by the code that converts them into Info files. You can display Info files on any terminal that displays alphabetic and numeric characters. Similarly, you can print the output generated by TEX on a wide variety of printers.
Depending on what they do or what arguments[4] they take, you need to write @-commands on lines of their own or as part of sentences:
@noindent
at the beginning of a line as the only text on the line. (@noindent
prevents the beginning of the next line from being indented as the beginning of a paragraph.)
@chapter
at the beginning of a line followed by the command's arguments, in this case the chapter title, on the rest of the line. (@chapter
creates chapter titles.)
@dots{}
wherever you wish but usually within a sentence. (@dots{}
creates dots ...)
@code{sample-code}
wherever you wish (but usually within a sentence) with its argument, sample-code in this example, between the braces. (@code
marks text as being code.)
@example
at the beginning of a line of its own; write the body-text on following lines; and write the matching @end
command, @end example
in this case, at the beginning of a line of its own after the body-text. (@example
... @end example
indents and typesets body-text as an example.)
@:
, are exceptions to the rule; they do not need braces.
As you gain experience with Texinfo, you will rapidly learn how to write the different commands: the different ways to write commands make it easier to write and read Texinfo files than if all commands followed exactly the same syntax. (For details about @-command syntax, see @-Command Syntax.)
All printable ascii characters except `@', `{' and `}' can appear in a Texinfo file and stand for themselves. `@' is the escape character which introduces commands. `{' and `}' should be used only to surround arguments to certain commands. To put one of these special characters into the document, put an `@' character in front of it, like this: `@@', `@{', and `@}'.
It is customary in TEX to use doubled single-quote characters to begin and end quotations: ` ` and ' ' (but without a space between the two single-quote characters). This convention should be followed in Texinfo files. TEX converts doubled single-quote characters to left- and right-hand doubled quotation marks and Info converts doubled single-quote characters to ascii double-quotes: ` ` and ' ' to " .
Use three hyphens in a row, `¾', for a dash¾like this. In TEX, a single or double hyphen produces a printed dash that is shorter than the usual typeset dash. Info reduces three hyphens to two for display on the screen.
To prevent a paragraph from being indented in the printed manual, put the command @noindent
on a line by itself before the paragraph.
If you mark off a region of the Texinfo file with the @iftex
and @end iftex
@ifinfo
and @end ifinfo
commands, that region will appear only in the Info file; in that region, you can use Info commands that you cannot use in TEX. Similarly for @ifhtml ... @end ifhtml
, @ifnothtml ... @end ifnothtml
, @ifnotinfo ... @end ifnotinfo
, @ifnottex ... @end ifnottex
, See Conditionals.
Caution: Do not use tabs in a Texinfo file! TEX uses variable-width fonts, which means that it cannot predefine a tab to work in all circumstances. Consequently, TEX treats tabs like single spaces, and that is not what they look like. Furthermore,
makeinfo
does nothing special with tabs, and thus a tab character in your input file may appear differently in the output.To avoid this problem, Texinfo mode causes GNU Emacs to insert multiple spaces when you press the <TAB> key.Also, you can run untabify
in Emacs to convert tabs in a region to multiple spaces.Don't use tabs. Comments
You can write comments in a Texinfo file that will not appear in either the Info file or the printed manual by using the @comment
command (which may be abbreviated to @c
). Such comments are for the person who reads the Texinfo file. All the text on a line that follows either @comment
or @c
is a comment; the rest of the line does not appear in either the Info file or the printed manual. (Often, you can write the @comment
or @c
in the middle of a line, and only the text that follows after the @comment
or @c
command does not appear; but some commands, such as @settitle
and @setfilename
, work on a whole line. You cannot use @comment
or @c
in a line beginning with such a command.)
You can write long stretches of text that will not appear in either the Info file or the printed manual by using the @ignore
and @end ignore
commands. Write each of these commands on a line of its own, starting each command at the beginning of the line. Text between these two commands does not appear in the processed output. You can use @ignore
and @end ignore
for writing comments. Often, @ignore
and @end ignore
is used to enclose a part of the copying permissions that applies to the Texinfo source file of a document, but not to the Info or printed version of the document.
By convention, the names of Texinfo files end with one of the extensions `.texinfo', `.texi', or `.tex'. The longer extension is preferred since it describes more clearly to a human reader the nature of the file. The shorter extensions are for operating systems that cannot handle long file names.
In order to be made into a printed manual and an Info file, a Texinfo file must begin with lines like this:
\input texinfo @setfilename info-file-name @settitle name-of-manualThe contents of the file follow this beginning, and then you must end a Texinfo file with a line like this:
@byeThe `\input texinfo' line tells TEX to use the `texinfo.tex' file, which tells TEX how to translate the Texinfo @-commands into TEX typesetting commands. (Note the use of the backslash, `\'; this is correct for TEX.) The `@setfilename' line provides a name for the Info file and tells TEX to open auxiliary files. The `@settitle' line specifies a title for the page headers (or footers) of the printed manual.
The @bye
line at the end of the file on a line of its own tells the formatters that the file is ended and to stop formatting.
Usually, you will not use quite such a spare format, but will include mode setting and start-of-header and end-of-header lines at the beginning of a Texinfo file, like this:
\input texinfo @c -*-texinfo-*- @c %**start of header @setfilename info-file-name @settitle name-of-manual @c %**end of headerIn the first line, `-*-texinfo-*-' causes Emacs to switch into Texinfo mode when you edit the file.
The @c
lines which surround the `@setfilename' and `@settitle' lines are optional, but you need them in order to run TEX or Info on just part of the file. (See Start of Header, for more information.)
Furthermore, you will usually provide a Texinfo file with a title page, indices, and the like. But the minimum, which can be useful for short documents, is just the three lines at the beginning and the one line at the end.
Six Parts of a Texinfo File
Generally, a Texinfo file contains more than the minimal beginning and end¾it usually contains six parts:
@ifinfo
and @end ifinfo
commands so that the formatters place it only in the Info file.
@titlepage
and @end titlepage
commands. The title and copyright page appear only in the printed
@bye
command on a line of its own.
Here is a complete but very short Texinfo file, in six parts. The first three parts of the file, from `\input texinfo' through to `@end titlepage', look more intimidating than they are. Most of the material is standard boilerplate; when you write a manual, simply insert the names for your own manual in this segment. (See Beginning a File.)In the following, the sample text is indented; comments on it are not. The complete file, without any comments, is shown in Sample Texinfo File.
\input texinfo @c -*-texinfo-*- @c %**start of header @setfilename sample.info @settitle Sample Document @c %**end of header @setchapternewpage odd
@ifinfo This is a short example of a complete Texinfo file. Copyright @copyright{} 1990 Free Software Foundation, Inc. @end ifinfo
@titlepage @sp 10 @comment The title is printed in a large font. @center @titlefont{Sample Title} @c The following two commands start the copyright page. @page @vskip 0pt plus 1filll Copyright @copyright{} 1990 Free Software Foundation, Inc. @end titlepage
@node Top, First Chapter, , (dir) @comment node-name, next, previous, up
@menu * First Chapter:: The first chapter is the only chapter in this sample. * Concept Index:: This index has two entries. @end menu
@node First Chapter, Concept Index, Top, Top @comment node-name, next, previous, up @chapter First Chapter @cindex Sample index entry This is the contents of the first chapter. @cindex Another sample index entry Here is a numbered list. @enumerate @item This is the first item. @item This is the second item. @end enumerate The @code{makeinfo} and @code{texinfo-format-buffer} commands transform a Texinfo file such as this into an Info file; and @TeX{} typesets it for a printed manual.
@bye
command that marks the end of the document.
@node Concept Index, , First Chapter, Top @comment node-name, next, previous, up @unnumbered Concept Index @printindex cp @contents @bye
This is the contents of the first chapter.Here is a numbered list.
The
- This is the first item.
- This is the second item.
makeinfo
andtexinfo-format-buffer
commands transform a Texinfo file such as this into an Info file; and TEX typesets it for a printed manual.
Our thanks go out to all who helped improve this work, particularly to François Pinard and
Please send suggestions and corrections to:
Internet address: bug-texinfo@prep.ai.mit.eduPlease include the manual's edition number and update date in your messages.
2. In some documents, the first child has no `Previous' pointer. Occasionally, the last child has the node name of the next following higher level node as its `Next' pointer.
3. You can also use the texi2roff
program if you do not have TEX; since Texinfo is designed for use with TEX, texi2roff
is not described here. texi2roff
is not part of the standard GNU distribution.
4. The word argument comes from the way it is used in mathematics and does not refer to a disputation between two people; it refers to the information presented to the command. According to the Oxford English Dictionary, the word derives from the Latin for to make clear, prove; thus it came to mean `the evidence offered as proof', which is to say, `the information offered', which led to its mathematical meaning. In its other thread of derivation, the word came to mean `to assert in a manner against which others may make counter assertions', which led to the meaning of `argument' as a disputation.