The
-mdoc
package is a set of content-based and domain-based macros
used to format the
BSD
man pages.
The macro names and their meanings are
listed below for quick reference; for
a detailed explanation on using the package,
see the tutorial sampler
mdoc.samples(7).
Note that this is not the usual macro package for Linux documentation,
although it is used for documentation of several widely-used programs;
see
man(7).
The macros are described in two groups, the first
includes the structural and physical page layout macros.
The second contains the manual and general text domain
macros which differentiate the
-doc
package from other
troff
formatting packages.
The manual and general text domain macros are special in that
most of them are parsed for callable macros
for example:
| .Op Fl s Ar file
|
| |
Produces
[-s file]
|
|
In this example, the option enclosure macro
.Op
is parsed, and calls the callable content macro
Fl
which operates on the argument
s
and then calls the callable content macro
Ar
which operates on the argument
file.
Some macros may be callable, but are not parsed and vice versa.
These macros are indicated in the
parsed
and
callable
columns below.
Unless stated, manual domain macros share a common syntax:
.Va argument [ . , ; : ( ) [ ] argument ... ]
Note:
Opening and closing
punctuation characters are only recognized as such if they are presented
one at a time.
The string
),
is not recognized as punctuation and will be output with a leading white
space and in what ever font the calling macro uses.
The
argument list
] ) ,
is recognized as three sequential closing punctuation characters
and a leading white space is not output between the characters
and the previous argument (if any).
The special meaning of a punctuation character may be escaped
with the string
\&.
For example the following string,
| .Ar file1 , file2 , file3 ) .
|
Produces
file1, file2, file3).
|
|
Name Parsed Callable Description
%A Yes No Reference author.
%B Yes Yes Reference book title.
%C No No Reference place of publishing (city).
%D No No Reference date.
%J Yes Yes Reference journal title.
%N No No Reference issue number.
%O No No Reference optional information.
%P No No Reference page number(s).
%R No No Reference report Name.
%T Yes Yes Reference article title.
%V No No Reference volume.
Ac Yes Yes Angle close quote.
Ao Yes Yes Angle open quote.
Ap Yes Yes Apostrophe.
Aq Yes Yes Angle quote.
At No No AT&T UNIX
Bc Yes Yes Bracket close quote.
Bf No No Begin font mode.
Bo Yes Yes Bracket open quote.
Bq Yes Yes Bracket quote.
Bx Yes Yes Bx.
Db No No Debug (default is "off")
Dc Yes Yes Double close quote.
Do Yes Yes Double open quote.
Dq Yes Yes Double quote.
Ec Yes Yes Enclose string close quote.
Ef No No End font mode.
Em Yes Yes Emphasis (traditional English).
Eo Yes Yes Enclose string open quote.
Fx No No FreeBSD operating system
No Yes Yes Normal text (no-op).
Ns Yes Yes No space.
Pc Yes Yes Parenthesis close quote.
Pf Yes No Prefix string.
Po Yes Yes Parenthesis open quote.
Pq Yes Yes Parentheses quote.
Qc Yes Yes Straight Double close quote.
Ql Yes Yes Quoted literal.
Qo Yes Yes Straight Double open quote.
Qq Yes Yes Straight Double quote.
Re No No Reference end.
Rs No No Reference start.
Rv No No Return values (sections two and three only).
Sc Yes Yes Single close quote.
So Yes Yes Single open quote.
Sq Yes Yes Single quote.
Sm No No Space mode (default is "on")
Sx Yes Yes Section Cross Reference.
Sy Yes Yes Symbolic (traditional English).
Tn Yes Yes Trade or type name (small Caps).
Ux Yes Yes Ux
Xc Yes Yes Extend argument list close.
Xo Yes Yes Extend argument list open.
|
| |
|
|
Macro names ending in
q
quote remaining items on the argument list.
Macro names ending in
o
begin a quote which may span more than one line of input and
are close quoted with the matching macro name ending in
c.
Enclosure macros may be nested and are limited to
eight arguments.
Note: the extended argument list macros
(.Xo,
.Xc)
and the function enclosure macros
(.Fo,
.Fc)
are irregular.
The extended list macros are used when the number of macro arguments
would exceed the
troff
limitation of nine arguments.
The macros UR (starting a URI/URL hypertext reference), UE (ending one),
and UN (identifying a target for a reference) are also available.
See
man(7)
for more information on these macros.