1 .\" $Id: man.7,v 1.41 2009/10/26 10:36:46 kristaps Exp $
3 .\" Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
5 .\" Permission to use, copy, modify, and distribute this software for any
6 .\" purpose with or without fee is hereby granted, provided that the above
7 .\" copyright notice and this permission notice appear in all copies.
9 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 .Dd $Mdocdate: October 26 2009 $
24 .Nd man language reference
30 language was historically used to format
32 manuals. This reference document describes its syntax, structure, and
39 to write your manuals.
48 document follows simple rules: lines beginning with the control
51 are parsed for macros. Other lines are interpreted within the scope of
53 .Bd -literal -offset indent
54 \&.SH Macro lines change control state.
55 Other lines are interpreted within the current state.
61 documents may contain only graphable 7-bit ASCII characters, the
62 space character, and the tabs character. All manuals must have
67 Blank lines are acceptable; where found, the output will assert a
73 escape is common in historical
75 documents; if encountered at the end of a word, it ensures that the
76 subsequent word isn't off-set by whitespace.
82 whether in a macro or free-form text line, is ignored to the end of
83 line. A macro line with only a control character and comment escape,
85 is also ignored. Macro lines with only a control charater and
86 optionally whitespace are stripped from input.
89 .Ss Special Characters
90 Special characters may occur in both macro and free-form lines.
91 Sequences begin with the escape character
93 followed by either an open-parenthesis
95 for two-character sequences; an open-bracket
97 for n-character sequences (terminated at a close-bracket
99 or a single one-character sequence. See
101 for a complete list. Examples include
110 Terms may be text-decorated using the
112 escape followed by an indicator: B (bold), I, (italic), or P and R
117 Unless specifically escaped, consecutive blocks of whitespace are pruned
118 from input. These are later re-added, if applicable, by a front-end
123 Many macros support scaled widths for their arguments, such as
124 stipulating a two-inch paragraph indentation with the following:
125 .Bd -literal -offset indent
130 The syntax for scaled widths is
131 .Sq Li [+-]?[0-9]*.[0-9]*[:unit:]? ,
132 where a decimal must be preceded or proceeded by at least one digit.
133 Negative numbers, while accepted, are truncated to zero. The following
134 scaling units are accepted:
137 .Bl -tag -width Ds -offset indent -compact
150 default vertical span
162 default horizontal span
167 Using anything other than
173 is necessarily non-portable across output media. See
177 If a scaling unit is not provided, the numerical value is interpreted
178 under the default rules of
180 for vertical spaces and
186 which, if a unit is not provided, will instead interpret the string as
193 document must contain contains at least the
195 macro describing the document's section and title. It may occur
196 anywhere in the document, although conventionally, it appears as the
202 at least one macro or text node must appear in the document. Documents
203 are generally structured as follows:
204 .Bd -literal -offset indent
205 \&.TH FOO 1 "13 Aug 2009"
208 \efBfoo\efR \e(en a description goes here
209 \&.\e\*q The next is for sections 2 & 3 only.
213 \efBfoo\efR [\efB\e-options\efR] arguments...
216 The \efBfoo\efR utility processes files...
218 \&.\e\*q .SH IMPLEMENTATION NOTES
219 \&.\e\*q The next is for sections 1 & 8 only.
220 \&.\e\*q .SH EXIT STATUS
221 \&.\e\*q The next is for sections 2, 3, & 9 only.
222 \&.\e\*q .SH RETURN VALUES
223 \&.\e\*q The next is for sections 1, 6, 7, & 8 only.
224 \&.\e\*q .SH ENVIRONMENT
226 \&.\e\*q .SH EXAMPLES
227 \&.\e\*q The next is for sections 1, 4, 6, 7, & 8 only.
228 \&.\e\*q .SH DIAGNOSTICS
229 \&.\e\*q The next is for sections 2, 3, & 9 only.
231 \&.\e\*q .SH SEE ALSO
232 \&.\e\*q \efBbar\efR(1)
233 \&.\e\*q .SH STANDARDS
238 \&.\e\*q .SH SECURITY CONSIDERATIONS
243 document are conventionally ordered as they appear above. Sections
244 should be composed as follows:
245 .Bl -tag -width Ds -offset Ds
247 The name(s) and a short description of the documented material. The
248 syntax for this is generally as follows:
250 .D1 \efBname\efR \e(en description
252 The name of the library containing the documented material, which is
253 assumed to be a function in a section 2 or 3 manual. For functions in
254 the C library, this may be as follows:
256 .D1 Standard C Library (libc, -lc)
258 Documents the utility invocation syntax, function call syntax, or device
261 For the first, utilities (sections 1, 6, and 8), this is
262 generally structured as follows:
264 .D1 \efBname\efR [-\efBab\efR] [-\efBc\efR\efIarg\efR] \efBpath\efR...
266 For the second, function calls (sections 2, 3, 9):
268 .D1 \. Ns Sx \&B No char *name(char *\efIarg\efR);
270 And for the third, configurations (section 4):
272 .D1 \. Ns Sx \&B No name* at cardbus ? function ?
274 Manuals not in these sections generally don't need a SYNOPSIS.
276 This expands upon the brief, one-line description in NAME. It usually
277 contains a break-down of the options (if documenting a command).
278 .It IMPLEMENTATION NOTES
279 Implementation-specific notes should be kept here. This is useful when
280 implementing standard functions that may have side effects or notable
281 algorithmic implications.
295 .It SECURITY CONSIDERATIONS
300 Macros are one to three three characters in length and begin with a
303 at the beginning of the line. An arbitrary amount of whitespace may
304 sit between the control character and the macro name. Thus, the
305 following are equivalent:
306 .Bd -literal -offset indent
314 macros are classified by scope: line scope or block scope. Line
315 macros are only scoped to the current line (and, in some situations,
316 the subsequent line). Block macros are scoped to the current line and
317 subsequent lines until closed by another block macro.
321 Line macros are generally scoped to the current line, with the body
322 consisting of zero or more arguments. If a macro is scoped to the next
323 line and the line arguments are empty, the next line is used instead,
324 else the general syntax is used. Thus:
325 .Bd -literal -offset indent
333 If next-line macros are invoked consecutively, only the last is used.
334 If a next-line macro is proceded by a block macro, it is ignored.
335 .Bd -literal -offset indent
336 \&.YO \(lBbody...\(rB
341 .Bl -column -compact -offset indent "MacroX" "ArgumentsX" "ScopeXXXXX"
342 .It Em Macro Ta Em Arguments Ta Em Scope
343 .It Sx \&B Ta n Ta next-line
344 .It Sx \&BI Ta n Ta current
345 .It Sx \&BR Ta n Ta current
346 .It Sx \&DT Ta 0 Ta current
347 .It Sx \&I Ta n Ta next-line
348 .It Sx \&IB Ta n Ta current
349 .It Sx \&IR Ta n Ta current
350 .It Sx \&PD Ta n Ta current
351 .It Sx \&R Ta n Ta next-line
352 .It Sx \&RB Ta n Ta current
353 .It Sx \&RI Ta n Ta current
354 .It Sx \&SB Ta n Ta next-line
355 .It Sx \&SM Ta n Ta next-line
356 .It Sx \&TH Ta >1, <6 Ta current
357 .It Sx \&UC Ta n Ta current
358 .It Sx \&br Ta 0 Ta current
359 .It Sx \&fi Ta 0 Ta current
360 .It Sx \&i Ta n Ta current
361 .It Sx \&na Ta 0 Ta current
362 .It Sx \&nf Ta 0 Ta current
363 .It Sx \&r Ta 0 Ta current
364 .It Sx \&sp Ta 1 Ta current
381 macros should not be used. They're included for compatibility.
385 Block macros are comprised of a head and body. Like for in-line macros,
386 the head is scoped to the current line and, in one circumstance, the
387 next line; the body is scoped to subsequent lines and is closed out by a
388 subsequent block macro invocation.
389 .Bd -literal -offset indent
390 \&.YO \(lBhead...\(rB
396 The closure of body scope may be to the section, where a macro is closed
399 sub-section, closed by a section or
401 part, closed by a section, sub-section, or
403 or paragraph, closed by a section, sub-section, part,
411 No closure refers to an explicit block closing macro.
414 .Bl -column "MacroX" "ArgumentsX" "Head ScopeX" "sub-sectionX" -compact -offset indent
415 .It Em Macro Ta Em Arguments Ta Em Head Scope Ta Em Body Scope
416 .It Sx \&HP Ta <2 Ta current Ta paragraph
417 .It Sx \&IP Ta <3 Ta current Ta paragraph
418 .It Sx \&LP Ta 0 Ta current Ta paragraph
419 .It Sx \&P Ta 0 Ta current Ta paragraph
420 .It Sx \&PP Ta 0 Ta current Ta paragraph
421 .It Sx \&RE Ta 0 Ta current Ta none
422 .It Sx \&RS Ta 1 Ta current Ta part
423 .It Sx \&SH Ta >0 Ta next-line Ta section
424 .It Sx \&SS Ta >0 Ta next-line Ta sub-section
425 .It Sx \&TP Ta n Ta next-line Ta paragraph
429 If a block macro is next-line scoped, it may only be followed by in-line
444 This section is a canonical reference to all macros, arranged
445 alphabetically. For the scoping of individual macros, see
449 Text is rendered in bold face.
451 Text is rendered alternately in bold face and italic. Thus,
452 .Sq .BI this word and that
457 to render in bold face, while
461 render in italics. Whitespace between arguments is omitted in output.
463 Text is rendered alternately in bold face and roman (the default font).
464 Whitespace between arguments is omitted in output.
466 Has no effect. Included for compatibility.
468 Begin a paragraph whose initial output line is left-justified, but
469 subsequent output lines are indented, with the following syntax:
470 .Bd -literal -offset indent
477 is specified, it's saved for later paragraph left-margins; if
478 unspecified, the saved or default width is used.
480 Text is rendered in italics.
482 Text is rendered alternately in italics and bold face. Whitespace
483 between arguments is omitted in output.
485 Begin a paragraph with the following syntax:
486 .Bd -literal -offset indent
491 This follows the behaviour of the
493 except for the macro syntax (all arguments on the line, instead of
494 having next-line scope). If
496 is specified, it's saved for later paragraph left-margins; if
497 unspecified, the saved or default width is used.
499 Text is rendered alternately in italics and roman (the default font).
500 Whitespace between arguments is omitted in output.
502 Begin an undecorated paragraph. The scope of a paragraph is closed by a
503 subsequent paragraph, sub-section, section, or end of file. The saved
504 paragraph left-margin width is re-set to the default.
512 Text is rendered in roman (the default font).
514 Text is rendered alternately in roman (the default font) and bold face.
515 Whitespace between arguments is omitted in output.
517 Explicitly close out the scope of a prior
520 Text is rendered alternately in roman (the default font) and italics.
521 Whitespace between arguments is omitted in output.
523 Begin a part setting the left margin. The left margin controls the
524 offset, following an initial indentation, to un-indented text such as
527 A scaling width may be specified as following:
528 .Bd -literal -offset indent
535 is not specified, the saved or default width is used.
537 Text is rendered in small size (one point smaller than the default font)
540 Begin a section. The scope of a section is only closed by another
541 section or the end of file. The paragraph left-margin width is re-set
544 Text is rendered in small size (one point smaller than the default
547 Begin a sub-section. The scope of a sub-section is closed by a
548 subsequent sub-section, section, or end of file. The paragraph
549 left-margin width is re-set to the default.
551 Sets the title of the manual page with the following syntax:
552 .Bd -literal -offset indent
553 \&.TH title section [date [source [volume]]]
561 arguments must be provided. The
563 argument should be formatted as
569 string specifies the organisation providing the utility. The
571 replaces the default rendered volume as dictated by the manual section.
573 Begin a paragraph where the head, if exceeding the indentation width, is
574 followed by a newline; if not, the body follows on the same line after a
575 buffer to the indentation width. Subsequent output lines are indented.
578 The indentation scaling width may be set as follows:
579 .Bd -literal -offset indent
586 is specified, it's saved for later paragraph left-margins; if
587 unspecified, the saved or default width is used.
589 Has no effect. Included for compatibility.
591 Has no effect. Included for compatibility.
593 Breaks the current line. Consecutive invocations have no further effect.
595 End literal mode begun by
598 Italicise arguments. If no arguments are specified, all subsequent text
601 Don't align to the right margin.
603 Begin literal mode: all subsequent free-form lines have their end of
604 line boundaries preserved. May be ended by
607 Fonts and styles (bold face, italics) reset to roman (default font).
609 Insert n spaces, where n is the macro's positive numeric argument. If
610 0, this is equivalent to the
616 This section documents compatibility with other roff implementations, at
621 In quoted literals, groff allowed pair-wise double-quotes to produce a
622 standalone double-quote in formatted output. This idiosyncratic
623 behaviour is no longer applicable.
627 macro does not accept negative numbers.
629 Blocks of whitespace are stripped from both macro and free-form text
630 lines (except when in literal mode), while groff would retain whitespace
631 in free-form text lines.
643 reference was written by
644 .An Kristaps Dzonsons Aq kristaps@kth.se .
648 Do not use this language. Use