771 lines
16 KiB
HTML
771 lines
16 KiB
HTML
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<HTML><HEAD><TITLE>Man page of MAN</TITLE>
|
|
</HEAD><BODY>
|
|
<H1>MAN</H1>
|
|
Section: Linux Programmer's Manual (7)<BR>Updated: 2019-03-06<BR><A HREF="#index">Index</A>
|
|
<A HREF="/cgi-bin/man/man2html">Return to Main Contents</A><HR>
|
|
|
|
<A NAME="lbAB"> </A>
|
|
<H2>NAME</H2>
|
|
|
|
man - macros to format man pages
|
|
<A NAME="lbAC"> </A>
|
|
<H2>SYNOPSIS</H2>
|
|
|
|
<B>groff -Tascii -man</B>
|
|
|
|
<I>file</I>
|
|
|
|
...
|
|
<P>
|
|
|
|
<B>groff -Tps -man</B>
|
|
|
|
<I>file</I>
|
|
|
|
...
|
|
<P>
|
|
|
|
<B>man</B>
|
|
|
|
[<I>section</I>]
|
|
|
|
<I>title</I>
|
|
|
|
<A NAME="lbAD"> </A>
|
|
<H2>DESCRIPTION</H2>
|
|
|
|
This manual page explains the
|
|
<B>groff an.tmac</B>
|
|
|
|
macro package (often called the
|
|
<B>man</B>
|
|
|
|
macro package).
|
|
This macro package should be used by developers when
|
|
writing or porting man pages for Linux.
|
|
It is fairly compatible with other
|
|
versions of this macro package, so porting man pages should not be a major
|
|
problem (exceptions include the NET-2 BSD release, which uses a totally
|
|
different macro package called mdoc; see
|
|
<B><A HREF="/cgi-bin/man/man2html?7+mdoc">mdoc</A></B>(7)).
|
|
|
|
<P>
|
|
|
|
Note that NET-2 BSD mdoc man pages can be used with
|
|
<B>groff</B>
|
|
|
|
simply by specifying the
|
|
<B>-mdoc</B>
|
|
|
|
option instead of the
|
|
<B>-man</B>
|
|
|
|
option.
|
|
Using the
|
|
<B>-mandoc</B>
|
|
|
|
option is, however, recommended, since this will automatically detect which
|
|
macro package is in use.
|
|
<P>
|
|
|
|
For conventions that should be employed when writing man pages
|
|
for the Linux <I>man-pages</I> package, see
|
|
<B><A HREF="/cgi-bin/man/man2html?7+man-pages">man-pages</A></B>(7).
|
|
|
|
<A NAME="lbAE"> </A>
|
|
<H3>Title line</H3>
|
|
|
|
The first command in a man page (after comment lines,
|
|
that is, lines that start with <B>.\"</B>) should be
|
|
<P>
|
|
|
|
<DL COMPACT><DT id="1"><DD>
|
|
<B>.TH</B>
|
|
|
|
<I>title section date source manual</I>
|
|
|
|
</DL>
|
|
|
|
<P>
|
|
|
|
For details of the arguments that should be supplied to the
|
|
<B>TH</B>
|
|
|
|
command, see
|
|
<B><A HREF="/cgi-bin/man/man2html?7+man-pages">man-pages</A></B>(7).
|
|
|
|
<P>
|
|
|
|
Note that BSD mdoc-formatted pages begin with the
|
|
<B>Dd</B>
|
|
|
|
command, not the
|
|
<B>TH</B>
|
|
|
|
command.
|
|
<A NAME="lbAF"> </A>
|
|
<H3>Sections</H3>
|
|
|
|
Sections are started with
|
|
<B>.SH</B>
|
|
|
|
followed by the heading name.
|
|
|
|
|
|
|
|
|
|
|
|
<P>
|
|
|
|
The only mandatory heading is NAME, which should be the first section and
|
|
be followed on the next line by a one-line description of the program:
|
|
<P>
|
|
|
|
<DL COMPACT><DT id="2"><DD>
|
|
.SH NAME
|
|
<BR>
|
|
|
|
item \- description
|
|
</DL>
|
|
|
|
<P>
|
|
|
|
It is extremely important that this format is followed, and that there is a
|
|
backslash before the single dash which follows the item name.
|
|
This syntax is used by the
|
|
<B><A HREF="/cgi-bin/man/man2html?8+mandb">mandb</A></B>(8)
|
|
|
|
program to create a database of short descriptions for the
|
|
<B><A HREF="/cgi-bin/man/man2html?1+whatis">whatis</A></B>(1)
|
|
|
|
and
|
|
<B><A HREF="/cgi-bin/man/man2html?1+apropos">apropos</A></B>(1)
|
|
|
|
commands.
|
|
(See
|
|
<B><A HREF="/cgi-bin/man/man2html?1+lexgrog">lexgrog</A></B>(1)
|
|
|
|
for further details on the syntax of the NAME section.)
|
|
<P>
|
|
|
|
For a list of other sections that might appear in a manual page, see
|
|
<B><A HREF="/cgi-bin/man/man2html?7+man-pages">man-pages</A></B>(7).
|
|
|
|
<A NAME="lbAG"> </A>
|
|
<H3>Fonts</H3>
|
|
|
|
The commands to select the type face are:
|
|
<DL COMPACT>
|
|
<DT id="3"><B>.B</B>
|
|
|
|
<DD>
|
|
Bold
|
|
<DT id="4"><B>.BI</B>
|
|
|
|
<DD>
|
|
Bold alternating with italics
|
|
(especially useful for function specifications)
|
|
<DT id="5"><B>.BR</B>
|
|
|
|
<DD>
|
|
Bold alternating with Roman
|
|
(especially useful for referring to other
|
|
manual pages)
|
|
<DT id="6"><B>.I</B>
|
|
|
|
<DD>
|
|
Italics
|
|
<DT id="7"><B>.IB</B>
|
|
|
|
<DD>
|
|
Italics alternating with bold
|
|
<DT id="8"><B>.IR</B>
|
|
|
|
<DD>
|
|
Italics alternating with Roman
|
|
<DT id="9"><B>.RB</B>
|
|
|
|
<DD>
|
|
Roman alternating with bold
|
|
<DT id="10"><B>.RI</B>
|
|
|
|
<DD>
|
|
Roman alternating with italics
|
|
<DT id="11"><B>.SB</B>
|
|
|
|
<DD>
|
|
Small alternating with bold
|
|
<DT id="12"><B>.SM</B>
|
|
|
|
<DD>
|
|
Small (useful for acronyms)
|
|
</DL>
|
|
<P>
|
|
|
|
Traditionally, each command can have up to six arguments, but the GNU
|
|
implementation removes this limitation (you might still want to limit
|
|
yourself to 6 arguments for portability's sake).
|
|
Arguments are delimited by spaces.
|
|
Double quotes can be used to specify an argument which contains spaces.
|
|
All of the arguments will be printed next to each other without
|
|
intervening spaces, so that the
|
|
<B>.BR</B>
|
|
|
|
command can be used to specify a word in bold followed by a mark of
|
|
punctuation in Roman.
|
|
If no arguments are given, the command is applied to the following line
|
|
of text.
|
|
<A NAME="lbAH"> </A>
|
|
<H3>Other macros and strings</H3>
|
|
|
|
<P>
|
|
|
|
Below are other relevant macros and predefined strings.
|
|
Unless noted otherwise, all macros
|
|
cause a break (end the current line of text).
|
|
Many of these macros set or use the "prevailing indent."
|
|
The "prevailing indent" value is set by any macro with the parameter
|
|
<I>i</I>
|
|
|
|
below;
|
|
macros may omit
|
|
<I>i</I>
|
|
|
|
in which case the current prevailing indent will be used.
|
|
As a result, successive indented paragraphs can use the same indent without
|
|
respecifying the indent value.
|
|
A normal (nonindented) paragraph resets the prevailing indent value
|
|
to its default value (0.5 inches).
|
|
By default, a given indent is measured in ens;
|
|
try to use ens or ems as units for
|
|
indents, since these will automatically adjust to font size changes.
|
|
The other key macro definitions are:
|
|
<A NAME="lbAI"> </A>
|
|
<H3>Normal paragraphs</H3>
|
|
|
|
<DL COMPACT>
|
|
<DT id="13"><B>.LP</B>
|
|
|
|
<DD>
|
|
Same as
|
|
<B>.PP</B>
|
|
|
|
(begin a new paragraph).
|
|
<DT id="14"><B>.P</B>
|
|
|
|
<DD>
|
|
Same as
|
|
<B>.PP</B>
|
|
|
|
(begin a new paragraph).
|
|
<DT id="15"><B>.PP</B>
|
|
|
|
<DD>
|
|
Begin a new paragraph and reset prevailing indent.
|
|
</DL>
|
|
<A NAME="lbAJ"> </A>
|
|
<H3>Relative margin indent</H3>
|
|
|
|
<DL COMPACT>
|
|
<DT id="16"><B>.RS</B><I> i</I>
|
|
|
|
<DD>
|
|
Start relative margin indent: moves the left margin
|
|
<I>i</I>
|
|
|
|
to the right (if
|
|
<I>i</I>
|
|
|
|
is omitted, the prevailing indent value is used).
|
|
A new prevailing indent is set to 0.5 inches.
|
|
As a result, all following paragraph(s) will be
|
|
indented until the corresponding
|
|
<B>.RE</B>.
|
|
|
|
<DT id="17"><B>.RE</B>
|
|
|
|
<DD>
|
|
End relative margin indent and
|
|
restores the previous value of the prevailing indent.
|
|
</DL>
|
|
<A NAME="lbAK"> </A>
|
|
<H3>Indented paragraph macros</H3>
|
|
|
|
<DL COMPACT>
|
|
<DT id="18"><B>.HP</B><I> i</I>
|
|
|
|
<DD>
|
|
Begin paragraph with a hanging indent
|
|
(the first line of the paragraph is at the left margin of
|
|
normal paragraphs, and the rest of the paragraph's lines are indented).
|
|
<DT id="19"><B>.IP</B><I> x i</I>
|
|
|
|
<DD>
|
|
Indented paragraph with optional hanging tag.
|
|
If the tag
|
|
<I>x</I>
|
|
|
|
is omitted, the entire following paragraph is indented by
|
|
<I>i</I>.
|
|
|
|
If the tag
|
|
<I>x</I>
|
|
|
|
is provided, it is hung at the left margin
|
|
before the following indented paragraph
|
|
(this is just like
|
|
<B>.TP</B>
|
|
|
|
except the tag is included with the command instead of being on the
|
|
following line).
|
|
If the tag is too long, the text after the tag will be moved down to the
|
|
next line (text will not be lost or garbled).
|
|
For bulleted lists, use this macro with \(bu (bullet) or \(em (em dash)
|
|
as the tag, and for numbered lists, use the number or letter followed by
|
|
a period as the tag;
|
|
this simplifies translation to other formats.
|
|
<DT id="20"><B>.TP</B><I> i</I>
|
|
|
|
<DD>
|
|
Begin paragraph with hanging tag.
|
|
The tag is given on the next line, but
|
|
its results are like those of the
|
|
<B>.IP</B>
|
|
|
|
command.
|
|
</DL>
|
|
<A NAME="lbAL"> </A>
|
|
<H3>Hypertext link macros</H3>
|
|
|
|
<DL COMPACT>
|
|
<DT id="21"><B>.UR</B><I> url</I>
|
|
|
|
<DD>
|
|
Insert a hypertext link to the URI (URL)
|
|
<I>url</I>,
|
|
|
|
with all text up to the following
|
|
<B>.UE</B>
|
|
|
|
macro as the link text.
|
|
<DT id="22"><B>.UE </B><DD>
|
|
[<I>trailer</I>]
|
|
|
|
Terminate the link text of the preceding
|
|
<B>.UR</B>
|
|
|
|
macro, with the optional
|
|
<I>trailer</I>
|
|
|
|
(if present, usually a closing parenthesis and/or end-of-sentence
|
|
punctuation) immediately following.
|
|
For non-HTML output devices (e.g.,
|
|
<B>man -Tutf8</B>),
|
|
|
|
the link text is followed by the URL in angle brackets; if there is no
|
|
link text, the URL is printed as its own link text, surrounded by angle
|
|
brackets.
|
|
(Angle brackets may not be available on all output devices.)
|
|
For the HTML output device, the link text is hyperlinked to the URL; if
|
|
there is no link text, the URL is printed as its own link text.
|
|
</DL>
|
|
<P>
|
|
|
|
These macros have been supported since GNU Troff 1.20 (2009-01-05) and
|
|
Heirloom Doctools Troff since 160217 (2016-02-17).
|
|
<A NAME="lbAM"> </A>
|
|
<H3>Miscellaneous macros</H3>
|
|
|
|
<DL COMPACT>
|
|
<DT id="23"><B>.DT</B>
|
|
|
|
<DD>
|
|
Reset tabs to default tab values (every 0.5 inches);
|
|
does not cause a break.
|
|
<DT id="24"><B>.PD</B><I> d</I>
|
|
|
|
<DD>
|
|
Set inter-paragraph vertical distance to d
|
|
(if omitted, d=0.4v);
|
|
does not cause a break.
|
|
<DT id="25"><B>.SS</B><I> t</I>
|
|
|
|
<DD>
|
|
Subheading
|
|
<I>t</I>
|
|
|
|
(like
|
|
<B>.SH</B>,
|
|
|
|
but used for a subsection inside a section).
|
|
</DL>
|
|
<A NAME="lbAN"> </A>
|
|
<H3>Predefined strings</H3>
|
|
|
|
The
|
|
<B>man</B>
|
|
|
|
package has the following predefined strings:
|
|
<DL COMPACT>
|
|
<DT id="26">\*R<DD>
|
|
Registration Symbol: ®
|
|
<DT id="27">\*S<DD>
|
|
Change to default font size
|
|
<DT id="28">\*(Tm<DD>
|
|
Trademark Symbol:
|
|
<DT id="29">\*(lq<DD>
|
|
Left angled double quote: ``
|
|
<DT id="30">\*(rq<DD>
|
|
Right angled double quote: ''
|
|
</DL>
|
|
<A NAME="lbAO"> </A>
|
|
<H3>Safe subset</H3>
|
|
|
|
Although technically
|
|
<B>man</B>
|
|
|
|
is a troff macro package, in reality a large number of other tools
|
|
process man page files that don't implement all of troff's abilities.
|
|
Thus, it's best to avoid some of troff's more exotic abilities
|
|
where possible to permit these other tools to work correctly.
|
|
Avoid using the various troff preprocessors
|
|
(if you must, go ahead and use
|
|
<B><A HREF="/cgi-bin/man/man2html?1+tbl">tbl</A></B>(1),
|
|
|
|
but try to use the
|
|
<B>IP</B>
|
|
|
|
and
|
|
<B>TP</B>
|
|
|
|
commands instead for two-column tables).
|
|
Avoid using computations; most other tools can't process them.
|
|
Use simple commands that are easy to translate to other formats.
|
|
The following troff macros are believed to be safe (though in many cases
|
|
they will be ignored by translators):
|
|
<B>\ ,</B>
|
|
|
|
<B>.</B>,
|
|
|
|
<B>ad</B>,
|
|
|
|
<B>bp</B>,
|
|
|
|
<B>br</B>,
|
|
|
|
<B>ce</B>,
|
|
|
|
<B>de</B>,
|
|
|
|
<B>ds</B>,
|
|
|
|
<B>el</B>,
|
|
|
|
<B>ie</B>,
|
|
|
|
<B>if</B>,
|
|
|
|
<B>fi</B>,
|
|
|
|
<B>ft</B>,
|
|
|
|
<B>hy</B>,
|
|
|
|
<B>ig</B>,
|
|
|
|
<B>in</B>,
|
|
|
|
<B>na</B>,
|
|
|
|
<B>ne</B>,
|
|
|
|
<B>nf</B>,
|
|
|
|
<B>nh</B>,
|
|
|
|
<B>ps</B>,
|
|
|
|
<B>so</B>,
|
|
|
|
<B>sp</B>,
|
|
|
|
<B>ti</B>,
|
|
|
|
<B>tr</B>.
|
|
|
|
<P>
|
|
|
|
You may also use many troff escape sequences (those sequences beginning
|
|
with \).
|
|
When you need to include the backslash character as normal text,
|
|
use \e.
|
|
Other sequences you may use, where x or xx are any characters and N
|
|
is any digit, include:
|
|
<B>\'</B>,
|
|
|
|
<B>\`</B>,
|
|
|
|
<B>\-</B>,
|
|
|
|
<B>\.</B>,
|
|
|
|
<B>\ ,</B>
|
|
|
|
<B>\%</B>,
|
|
|
|
<B>\*x</B>,
|
|
|
|
<B>\*(xx</B>,
|
|
|
|
<B>\(xx</B>,
|
|
|
|
<B>\$N</B>,
|
|
|
|
<B>\nx</B>,
|
|
|
|
<B>\n(xx</B>,
|
|
|
|
<B>\fx</B>,
|
|
|
|
and
|
|
<B>\f(xx</B>.
|
|
|
|
Avoid using the escape sequences for drawing graphics.
|
|
<P>
|
|
|
|
Do not use the optional parameter for
|
|
<B>bp</B>
|
|
|
|
(break page).
|
|
Use only positive values for
|
|
<B>sp</B>
|
|
|
|
(vertical space).
|
|
Don't define a macro
|
|
(<B>de</B>)
|
|
|
|
with the same name as a macro in this or the
|
|
mdoc macro package with a different meaning; it's likely that
|
|
such redefinitions will be ignored.
|
|
Every positive indent
|
|
(<B>in</B>)
|
|
|
|
should be paired with a matching negative indent
|
|
(although you should be using the
|
|
<B>RS</B>
|
|
|
|
and
|
|
<B>RE</B>
|
|
|
|
macros instead).
|
|
The condition test
|
|
(<B>if,ie</B>)
|
|
|
|
should only have 't' or 'n' as the condition.
|
|
Only translations
|
|
(<B>tr</B>)
|
|
|
|
that can be ignored should be used.
|
|
Font changes
|
|
(<B>ft</B>
|
|
|
|
and the <B>\f</B> escape sequence)
|
|
should only have the values 1, 2, 3, 4, R, I, B, P, or CW
|
|
(the ft command may also have no parameters).
|
|
<P>
|
|
|
|
If you use capabilities beyond these, check the
|
|
results carefully on several tools.
|
|
Once you've confirmed that the additional capability is safe,
|
|
let the maintainer of this
|
|
document know about the safe command or sequence
|
|
that should be added to this list.
|
|
<A NAME="lbAP"> </A>
|
|
<H2>FILES</H2>
|
|
|
|
<I>/usr/share/groff/</I>[*/]<I>tmac/an.tmac</I>
|
|
|
|
<BR>
|
|
|
|
<I>/usr/man/whatis</I>
|
|
|
|
<A NAME="lbAQ"> </A>
|
|
<H2>NOTES</H2>
|
|
|
|
<P>
|
|
|
|
By all means include full URLs (or URIs) in the text itself;
|
|
some tools such as
|
|
<B><A HREF="/cgi-bin/man/man2html?1+man2html">man2html</A></B>(1)
|
|
|
|
can automatically turn them into hypertext links.
|
|
You can also use the
|
|
<B>UR</B>
|
|
|
|
and
|
|
<B>UE</B>
|
|
|
|
macros to identify links to related information.
|
|
If you include URLs, use the full URL
|
|
(e.g.,
|
|
|
|
|
|
to ensure that tools can automatically find the URLs.
|
|
<P>
|
|
|
|
Tools processing these files should open the file and examine the first
|
|
nonwhitespace character.
|
|
A period (.) or single quote (') at the beginning
|
|
of a line indicates a troff-based file (such as man or mdoc).
|
|
A left angle bracket (<) indicates an SGML/XML-based
|
|
file (such as HTML or Docbook).
|
|
Anything else suggests simple ASCII
|
|
text (e.g., a "catman" result).
|
|
<P>
|
|
|
|
Many man pages begin with <B>'\"</B> followed by a
|
|
space and a list of characters,
|
|
indicating how the page is to be preprocessed.
|
|
For portability's sake to non-troff translators we recommend
|
|
that you avoid using anything other than
|
|
<B><A HREF="/cgi-bin/man/man2html?1+tbl">tbl</A></B>(1),
|
|
|
|
and Linux can detect that automatically.
|
|
However, you might want to include this information so your man page
|
|
can be handled by other (less capable) systems.
|
|
Here are the definitions of the preprocessors invoked by these characters:
|
|
<DL COMPACT>
|
|
<DT id="31"><B>e</B>
|
|
|
|
<DD>
|
|
<A HREF="/cgi-bin/man/man2html?1+eqn">eqn</A>(1)
|
|
<DT id="32"><B>g</B>
|
|
|
|
<DD>
|
|
<A HREF="/cgi-bin/man/man2html?1+grap">grap</A>(1)
|
|
<DT id="33"><B>p</B>
|
|
|
|
<DD>
|
|
<A HREF="/cgi-bin/man/man2html?1+pic">pic</A>(1)
|
|
<DT id="34"><B>r</B>
|
|
|
|
<DD>
|
|
<A HREF="/cgi-bin/man/man2html?1+refer">refer</A>(1)
|
|
<DT id="35"><B>t</B>
|
|
|
|
<DD>
|
|
<A HREF="/cgi-bin/man/man2html?1+tbl">tbl</A>(1)
|
|
<DT id="36"><B>v</B>
|
|
|
|
<DD>
|
|
<A HREF="/cgi-bin/man/man2html?1+vgrind">vgrind</A>(1)
|
|
</DL>
|
|
<A NAME="lbAR"> </A>
|
|
<H2>BUGS</H2>
|
|
|
|
<P>
|
|
|
|
Most of the macros describe formatting (e.g., font type and spacing) instead
|
|
of marking semantic content (e.g., this text is a reference to another page),
|
|
compared to formats like mdoc and DocBook (even HTML has more semantic
|
|
markings).
|
|
This situation makes it harder to vary the
|
|
<B>man</B>
|
|
|
|
format for different media,
|
|
to make the formatting consistent for a given media, and to automatically
|
|
insert cross-references.
|
|
By sticking to the safe subset described above, it should be easier to
|
|
automate transitioning to a different reference page format in the future.
|
|
<P>
|
|
|
|
The Sun macro
|
|
<B>TX</B>
|
|
|
|
is not implemented.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<A NAME="lbAS"> </A>
|
|
<H2>SEE ALSO</H2>
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?1+apropos">apropos</A></B>(1),
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?1+groff">groff</A></B>(1),
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?1+lexgrog">lexgrog</A></B>(1),
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?1+man">man</A></B>(1),
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?1+man2html">man2html</A></B>(1),
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?7+groff_mdoc">groff_mdoc</A></B>(7),
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?1+whatis">whatis</A></B>(1),
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?7+groff_man">groff_man</A></B>(7),
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?7+groff_www">groff_www</A></B>(7),
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?7+man-pages">man-pages</A></B>(7),
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?7+mdoc">mdoc</A></B>(7)
|
|
|
|
<A NAME="lbAT"> </A>
|
|
<H2>COLOPHON</H2>
|
|
|
|
This page is part of release 5.05 of the Linux
|
|
<I>man-pages</I>
|
|
|
|
project.
|
|
A description of the project,
|
|
information about reporting bugs,
|
|
and the latest version of this page,
|
|
can be found at
|
|
<A HREF="https://www.kernel.org/doc/man-pages/.">https://www.kernel.org/doc/man-pages/.</A>
|
|
<P>
|
|
|
|
<HR>
|
|
<A NAME="index"> </A><H2>Index</H2>
|
|
<DL>
|
|
<DT id="37"><A HREF="#lbAB">NAME</A><DD>
|
|
<DT id="38"><A HREF="#lbAC">SYNOPSIS</A><DD>
|
|
<DT id="39"><A HREF="#lbAD">DESCRIPTION</A><DD>
|
|
<DL>
|
|
<DT id="40"><A HREF="#lbAE">Title line</A><DD>
|
|
<DT id="41"><A HREF="#lbAF">Sections</A><DD>
|
|
<DT id="42"><A HREF="#lbAG">Fonts</A><DD>
|
|
<DT id="43"><A HREF="#lbAH">Other macros and strings</A><DD>
|
|
<DT id="44"><A HREF="#lbAI">Normal paragraphs</A><DD>
|
|
<DT id="45"><A HREF="#lbAJ">Relative margin indent</A><DD>
|
|
<DT id="46"><A HREF="#lbAK">Indented paragraph macros</A><DD>
|
|
<DT id="47"><A HREF="#lbAL">Hypertext link macros</A><DD>
|
|
<DT id="48"><A HREF="#lbAM">Miscellaneous macros</A><DD>
|
|
<DT id="49"><A HREF="#lbAN">Predefined strings</A><DD>
|
|
<DT id="50"><A HREF="#lbAO">Safe subset</A><DD>
|
|
</DL>
|
|
<DT id="51"><A HREF="#lbAP">FILES</A><DD>
|
|
<DT id="52"><A HREF="#lbAQ">NOTES</A><DD>
|
|
<DT id="53"><A HREF="#lbAR">BUGS</A><DD>
|
|
<DT id="54"><A HREF="#lbAS">SEE ALSO</A><DD>
|
|
<DT id="55"><A HREF="#lbAT">COLOPHON</A><DD>
|
|
</DL>
|
|
<HR>
|
|
This document was created by
|
|
<A HREF="/cgi-bin/man/man2html">man2html</A>,
|
|
using the manual pages.<BR>
|
|
Time: 00:06:09 GMT, March 31, 2021
|
|
</BODY>
|
|
</HTML>
|