[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Texinfo has several ways of making lists and tables. Lists can be bulleted or numbered; two-column tables can highlight the items in the first column; multi-column tables are also supported.
11.1 Introducing Lists | Texinfo formats lists for you. | |
11.2 @itemize : Making an Itemized List | How to construct a simple list. | |
11.3 @enumerate : Making a Numbered or Lettered List | How to construct a numbered list. | |
11.4 Making a Two-column Table | How to construct a two-column table. | |
11.5 @multitable : Multi-column Tables | How to construct generalized tables. |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Texinfo automatically indents the text in lists or tables, and numbers an enumerated list. This last feature is useful if you modify the list, since you do not need to renumber it yourself.
Numbered lists and tables begin with the appropriate @-command at the
beginning of a line, and end with the corresponding @end
command on a line by itself. The table and itemized-list commands
also require that you write formatting information on the same line as
the beginning @-command.
Begin an enumerated list, for example, with an @enumerate
command and end the list with an @end enumerate
command.
Begin an itemized list with an @itemize
command, followed on
the same line by a formatting command such as @bullet
, and end
the list with an @end itemize
command.
Precede each element of a list with an @item
or @itemx
command.
Here is an itemized list of the different kinds of table and lists:
Here is an enumerated list with the same items:
And here is a two-column table with the same items and their @-commands:
@itemize
Itemized lists with and without bullets.
@enumerate
Enumerated lists, using numbers or letters.
@table
@ftable
@vtable
Two-column tables, optionally with indexing.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
@itemize
: Making an Itemized ListThe @itemize
command produces sequences of indented
paragraphs, with a bullet or other mark inside the left margin
at the beginning of each paragraph for which such a mark is desired.
Begin an itemized list by writing @itemize
at the beginning of
a line. Follow the command, on the same line, with a character or a
Texinfo command that generates a mark. Usually, you will write
@bullet
after @itemize
, but you can use
@minus
, or any command or character that results in a single
character in the Info file. If you don’t want any mark at all, use
@w
. (When you write the mark command such as
@bullet
after an @itemize
command, you may omit the
‘{}’.) If you don’t specify a mark command, the default is
@bullet
.
Write the text of the indented paragraphs themselves after the
@itemize
, up to another line that says @end
itemize
.
At the beginning of each paragraph for which a mark in the margin is
desired, write a line that starts with @item
. It is ok to
have text following the @item
.
Usually, you should put a blank line before an @item
. This
puts a blank line in the Info file. (TeX inserts the proper
interline whitespace in either case.) Except when the entries are
very brief, these blank lines make the list look better.
Here is an example of the use of @itemize
, followed by the
output it produces. @bullet
produces an ‘*’ in Info and a
round dot in TeX.
@itemize @bullet @item Some text for foo. @item Some text for bar. @end itemize |
This produces:
- Some text for foo.
- Some text for bar.
Itemized lists may be embedded within other itemized lists. Here is a list marked with dashes embedded in a list marked with bullets:
@itemize @bullet @item First item. @itemize @minus @item Inner item. @item Second inner item. @end itemize @item Second outer item. @end itemize |
This produces:
- First item.
- - Inner item.
- - Second inner item.
- Second outer item.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
@enumerate
: Making a Numbered or Lettered List@enumerate
is like @itemize
(see section @itemize
), except that the labels on the items are
successive integers or letters instead of bullets.
Write the @enumerate
command at the beginning of a line. The
command does not require an argument, but accepts either a number or a
letter as an option. Without an argument, @enumerate
starts the
list with the number ‘1’. With a numeric argument, such as
‘3’, the command starts the list with that number. With an upper
or lower case letter, such as ‘a’ or ‘A’, the command starts
the list with that letter.
Write the text of the enumerated list in the same way as an itemized
list: write a line starting with @item
at the beginning of
each paragraph that you want enumerated. It is ok to have text
following the @item
.
You should put a blank line between entries in the list. This generally makes it easier to read the Info file.
Here is an example of @enumerate
without an argument:
@enumerate @item Underlying causes. @item Proximate causes. @end enumerate |
This produces:
Here is an example with an argument of 3:
@enumerate 3 @item Predisposing causes. @item Precipitating causes. @item Perpetuating causes. @end enumerate |
This produces:
Here is a brief summary of the alternatives. The summary is constructed
using @enumerate
with an argument of a.
@enumerate
Without an argument, produce a numbered list, starting with the number 1.
@enumerate positive-integer
With a (positive) numeric argument, start a numbered list with that number. You can use this to continue a list that you interrupted with other text.
@enumerate upper-case-letter
With an upper case letter as argument, start a list in which each item is marked by a letter, beginning with that upper case letter.
@enumerate lower-case-letter
With a lower case letter as argument, start a list in which each item is marked by a letter, beginning with that lower case letter.
You can also nest enumerated lists, as in an outline.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
@table
is similar to @itemize
(see section @itemize
), but allows you to specify a name or heading line for
each item. The @table
command is used to produce two-column
tables, and is especially useful for glossaries, explanatory
exhibits, and command-line option summaries.
11.4.1 Using the @table Command | How to construct a two-column table. | |
11.4.2 @ftable and @vtable | Automatic indexing for two-column tables. | |
11.4.3 @itemx | How to put more entries in the first column. |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
@table
CommandUse the @table
command to produce two-column tables. It is
usually listed for “definition lists” of various sorts, where you
have a list of terms and a brief text with each one.
Write the @table
command at the beginning of a line, after a
blank line, and follow it on the same line with an argument that is a
Texinfo “indicating” command such as @code
, @samp
,
@var
, @option
, or @kbd
(see section Indicating Definitions, Commands, etc.).
This command will be applied to the text that goes into the first
column of each item and thus determines how it will be highlighted.
For example, @table @code
will cause the text in the first
column to be output as if it @code
command.
You may also use the @asis
command as an argument to
@table
. @asis
is a command that does nothing; if you
use this command after @table
, the first column entries are
output without added highlighting (“as is”).
The @table
command works with other commands besides those
explicitly mentioned here. However, you can only use commands that
normally take arguments in braces. (In this case, however, you use
the command name without an argument, because the subsequent
@item
’s will supply the argument.)
Begin each table entry with an @item
command at the beginning
of a line. Write the first column text on the same line as the
@item
command. Write the second column text on the line
following the @item
line and on subsequent lines. (You do not
need to type anything for an empty second column entry.) You may
write as many lines of supporting text as you wish, even several
paragraphs. But only the text on the same line as the @item
will be placed in the first column (including any footnotes).
Normally, you should put a blank line before an @item
line.
This puts a blank line in the Info file. Except when the entries are
very brief, a blank line looks better.
End the table with a line consisting of @end table
, followed
by a blank line. TeX will always start a new paragraph after the
table, so the blank line is needed for the Info output to be analogous.
The following table, for example, highlights the text in the first
column with an @samp
command:
@table @samp @item foo This is the text for @samp{foo}. @item bar Text for @samp{bar}. @end table |
This produces:
This is the text for ‘foo’.
Text for ‘bar’.
If you want to list two or more named items with a single block of
text, use the @itemx
command. (See section @itemx
.)
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
@ftable
and @vtable
The @ftable
and @vtable
commands are the same as the
@table
command except that @ftable
automatically enters
each of the items in the first column of the table into the index of
functions and @vtable
automatically enters each of the items in
the first column of the table into the index of variables. This
simplifies the task of creating indices. Only the items on the same
line as the @item
commands are indexed, and they are indexed in
exactly the form that they appear on that line. See section Indices,
for more information about indices.
Begin a two-column table using @ftable
or @vtable
by
writing the @-command at the beginning of a line, followed on the same
line by an argument that is a Texinfo command such as @code
,
exactly as you would for an @table
command; and end the table
with an @end ftable
or @end vtable
command on a line by
itself.
See the example for @table
in the previous section.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
@itemx
Use the @itemx
command inside a table when you have two or more
first column entries for the same item, each of which should appear on a
line of its own.
Use @item
for the first entry, and @itemx
for all
subsequent entries; @itemx
must always follow an @item
command, with no blank line intervening.
The @itemx
command works exactly like @item
except
that it does not generate extra vertical space above the first column
text. If you have multiple consecutive @itemx
commands, do
not insert any blank lines between them.
For example,
@table @code @item upcase @itemx downcase These two functions accept a character or a string as argument, and return the corresponding upper case (lower case) character or string. @end table |
This produces:
upcase
downcase
These two functions accept a character or a string as argument, and return the corresponding upper case (lower case) character or string.
(Note also that this example illustrates multi-line supporting text in a two-column table.)
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
@multitable
: Multi-column Tables@multitable
allows you to construct tables with any number of
columns, with each column having any width you like.
You define the column widths on the @multitable
line itself, and
write each row of the actual table following an @item
command,
with columns separated by an @tab
command. Finally, @end
multitable
completes the table. Details in the sections below.
11.5.1 Multitable Column Widths | Defining multitable column widths. | |
11.5.2 Multitable Rows | Defining multitable rows, with examples. |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
You can define the column widths for a multitable in two ways: as
fractions of the line length; or with a prototype row. Mixing the two
methods is not supported. In either case, the widths are defined
entirely on the same line as the @multitable
command.
@columnfractions
and the decimal numbers (presumably less than
1; a leading zero is allowed and ignored) after the
@multitable
command, as in:
@multitable @columnfractions .33 .33 .33 |
The fractions need not add up exactly to 1.0, as these do not. This allows you to produce tables that do not need the full line length.
@multitable
command. For example:
@multitable {some text for column one} {for column two} |
The first column will then have the width of the typeset ‘some text for column one’, and the second column the width of ‘for column two’.
The prototype entries need not appear in the table itself.
Although we used simple text in this example, the prototype entries can
contain Texinfo commands; markup commands such as @code
are
particularly likely to be useful.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
After the @multitable
command defining the column widths (see
the previous section), you begin each row in the body of a multitable
with @item
, and separate the column entries with @tab
.
Line breaks are not special within the table body, and you may break
input lines in your source file as necessary.
You can also use @headitem
instead of @item
to produce
a heading row. The TeX output for such a row is in bold, and
the HTML, XML, and Docbook output uses the <thead>
tag. In
Info, the heading row is followed by a separator line made of dashes
(‘-’ characters).
Here is a complete example of a multi-column table (the text is from The XEmacs Users’ Manual, see (xemacs)Split Window section ‘Splitting Windows’ in XEmacs User’s Manual):
@multitable @columnfractions .15 .45 .4 @headitem Key @tab Command @tab Description @item C-x 2 @tab @code{split-window-vertically} @tab Split the selected window into two windows, with one above the other. @item C-x 3 @tab @code{split-window-horizontally} @tab Split the selected window into two windows positioned side by side. @item C-Mouse-2 @tab @tab In the mode line or scroll bar of a window, split that window. @end multitable |
produces:
Key | Command | Description |
---|---|---|
C-x 2 | split-window-vertically | Split the selected window into two windows, with one above the other. |
C-x 3 | split-window-horizontally | Split the selected window into two windows positioned side by side. |
C-Mouse-2 | In the mode line or scroll bar of a window, split that window. |
[ << ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This document was generated by Aidan Kehoe on December 27, 2016 using texi2html 1.82.