1 .\" $Id: man.7,v 1.29 2009/08/19 11:30:40 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: August 19 2009 $
24 . Nd man language reference
30 language was historically used to format
32 manuals. This reference document describes its syntax, structure, and
38 to write your manuals.
46 document follows simple rules: lines beginning with the control
49 are parsed for macros. Other lines are interpreted within the scope of
51 . Bd -literal -offset indent
52 \&.SH Macro lines change control state.
53 Other lines are interpreted within the current state.
59 documents may contain only graphable 7-bit ASCII characters, the
60 space character, and the tabs character. All manuals must have
64 Blank lines are acceptable; where found, the output will assert a
69 escape is common in historical
71 documents; if encountered at the end of a word, it ensures that the
72 subsequent word isn't off-set by whitespace.
78 whether in a macro or free-form text line, is ignored to the end of
79 line. A macro line with only a control character and comment escape,
81 is also ignored. Macro lines with only a control charater and
82 optionally whitespace are stripped from input.
85 . Ss Special Characters
86 Special characters may occur in both macro and free-form lines.
87 Sequences begin with the escape character
89 followed by either an open-parenthesis
91 for two-character sequences; an open-bracket
93 for n-character sequences (terminated at a close-bracket
95 or a single one-character sequence. See
97 for a complete list. Examples include
106 Terms may be text-decorated using the
108 escape followed by an indicator: B (bold), I, (italic), or P and R
113 Unless specifically escaped, consecutive blocks of whitespace are pruned
114 from input. These are later re-added, if applicable, by a front-end
122 document must contain contains at least the
124 macro describing the document's section and title. It may occur
125 anywhere in the document, although conventionally, it appears as the
130 at least one macro or text node must appear in the document. Documents
131 are generally structured as follows:
132 . Bd -literal -offset indent
133 \&.TH FOO 1 "13 Aug 2009"
136 \efBfoo\efR \e(en a description goes here
139 \efBfoo\efR [\efB\e-options\efR] arguments...
142 The \efBfoo\efR utility does...
144 \&.\e\*q .SH RETURN VALUES
145 \&.\e\*q .SH ENVIRONMENT
147 \&.\e\*q .SH EXAMPLES
148 \&.\e\*q .SH DIAGNOSTICS
150 \&.\e\*q .SH SEE ALSO
151 \&.\e\*q \efBbar\efR(1)
152 \&.\e\*q .SH STANDARDS
161 Macros are one to three three characters in length and begin with a
164 at the beginning of the line. An arbitrary amount of whitespace may
165 sit between the control character and the macro name. Thus,
173 macros are classified by scope: line scope or block scope. Line-scoped
174 macros are only scoped to the current line (and, in some situations,
175 the subsequent line). Block macros are scoped to the current line and
176 subsequent lines until closed by another block macro.
180 Line-macros are scoped to the current line, with the body consisting of
181 zero or more arguments. If a macro is next-line scoped and the line
182 arguments are empty, the next line is used instead. Thus:
183 . Bd -literal -offset indent
191 Consecutive next-line invocations are disallowed.
192 . Bd -literal -offset indent
193 \&.YO \(lBbody...\(rB
197 . Bl -column -compact -offset indent "MacroX" "ArgumentsX" "ScopeXXXXX"
198 . It Em Macro Ta Em Arguments Ta Em Scope
199 . It \&B Ta n Ta next-line
200 . It \&BI Ta n Ta current
201 . It \&BR Ta n Ta current
202 . It \&I Ta n Ta next-line
203 . It \&IB Ta n Ta current
204 . It \&IR Ta n Ta current
205 . It \&R Ta n Ta next-line
206 . It \&RB Ta n Ta current
207 . It \&RI Ta n Ta current
208 . It \&SB Ta n Ta next-line
209 . It \&SM Ta n Ta next-line
210 . It \&TH Ta >1, <6 Ta current
211 . It \&br Ta 0 Ta current
212 . It \&fi Ta 0 Ta current
213 . It \&i Ta n Ta current
214 . It \&na Ta 0 Ta current
215 . It \&nf Ta 0 Ta current
216 . It \&r Ta 0 Ta current
217 . It \&sp Ta 1 Ta current
229 macros aren't historically part of
231 and should not be used. They're included for compatibility.
235 Block macros are comprised of a head and body. The head is scoped to
236 the current line and, in one circumstance, the next line; the body is
237 scoped to subsequent lines and is closed out by a subsequent block macro
239 . Bd -literal -offset indent
240 \&.YO \(lBhead...\(rB
245 If a block macro is next-line scoped, it may only be followed by in-line
255 . Bl -column "MacroX" "Arguments" "ScopeXXXX" -compact -offset indent
256 . It Em Macro Ta Em Arguments Ta Em Scope
257 . It \&HP Ta <2 Ta current
258 . It \&IP Ta <3 Ta current
259 . It \&LP Ta 0 Ta current
260 . It \&P Ta 0 Ta current
261 . It \&PP Ta 0 Ta current
262 . It \&SH Ta >0 Ta current
263 . It \&SS Ta >0 Ta current
264 . It \&TP Ta n Ta next-line
269 This section is a canonical reference to all macros, arranged
270 alphabetically. For the scoping of individual macros, see
275 In this reference, a numerical width may be either a standalone natural
276 number (such as 3, 4, 10, etc.) or a natural number followed by a width
279 corresponding to the width of the formatted letter n, or
281 corresponding to the width of the formatted letter m. The latter is the
282 default, if unspecified. Thus,
283 . Bd -literal -offset indent
287 indicates an offset of 12
296 Text is rendered in bold face.
298 Text is rendered alternately in bold face and italic. Thus,
299 . Sq \&.BI this word and that
304 to render in bold face, while
308 render in italics. Whitespace between arguments is omitted in output.
310 Text is rendered alternately in bold face and roman (the default font).
311 Whitespace between arguments is omitted in output.
313 Begin a paragraph whose initial output line is left-justified, but
314 subsequent output lines are indented, with the following syntax:
315 . Bd -literal -offset indent
321 is specified, it's saved for later paragraph left-margins; if
322 unspecified, the saved or default width is used.
324 Text is rendered in italics.
326 Text is rendered alternately in italics and bold face. Whitespace
327 between arguments is omitted in output.
329 Begin a paragraph with the following syntax:
330 . Bd -literal -offset indent
334 This follows the behaviour of the
336 except for the macro syntax (all arguments on the line, instead of
337 having next-line scope). If
339 is specified, it's saved for later paragraph left-margins; if
340 unspecified, the saved or default width is used.
342 Text is rendered alternately in italics and roman (the default font).
343 Whitespace between arguments is omitted in output.
345 Begin an undecorated paragraph. The scope of a paragraph is closed by a
346 subsequent paragraph, sub-section, section, or end of file. The saved
347 paragraph left-margin width is re-set to the default.
349 Text is rendered in roman (the default font).
351 Text is rendered alternately in roman (the default font) and bold face.
352 Whitespace between arguments is omitted in output.
354 Text is rendered alternately in roman (the default font) and italics.
355 Whitespace between arguments is omitted in output.
357 Text is rendered in small size (one point smaller than the default font)
360 Begin a section. The scope of a section is only closed by another
361 section or the end of file. The paragraph left-margin width is re-set
364 Text is rendered in small size (one point smaller than the default
367 Begin a sub-section. The scope of a sub-section is closed by a
368 subsequent sub-section, section, or end of file. The paragraph
369 left-margin width is re-set to the default.
371 Sets the title of the manual page with the following syntax:
372 . Bd -literal -offset indent
373 \&.TH title section date source volume
380 arguments must be provided. The
382 argument should be formatted as
388 string specifies the organisation providing the utility. The
390 replaces the default rendered volume as dictated by the manual section.
392 Begin a paragraph where the head, if exceeding the indentation width, is
393 followed by a newline; if not, the body follows on the same line after a
394 buffer to the indentation width. Subsequent output lines are indented.
396 The indentation width may be set as follows:
397 . Bd -literal -offset indent
403 must be a properly-formed numeric width. If
405 is specified, it's saved for later paragraph left-margins; if
406 unspecified, the saved or default width is used.
408 Breaks the current line. Consecutive invocations have no further effect.
410 End literal mode begun by
413 Italicise arguments. If no arguments are specified, all subsequent text
416 No alignment to the right margin.
418 Begin literal mode: all subsequent free-form lines have their end of
419 line boundaries preserved. May be ended by
422 Fonts and styles (bold face, italics) reset to roman (default font).
424 Insert n spaces, where n is the macro's positive numeric argument. If
425 0, this is equivalent to the
432 This section documents compatibility with other roff implementations, at
437 In quoted literals, groff allowed pair-wise double-quotes to produce a
438 standalone double-quote in formatted output. This idiosyncratic
439 behaviour is no longer applicable.
443 macro does not accept negative numbers.
445 Blocks of whitespace are stripped from both macro and free-form text
446 lines (except when in literal mode), while groff would retain whitespace
447 in free-form text lines.
459 reference was written by
460 . An Kristaps Dzonsons Aq kristaps@kth.se .
464 Do not use this language. Use