1 .\" $Id: roff.7,v 1.39 2012/06/12 20:21:04 kristaps Exp $
3 .\" Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 .\" Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org>
6 .\" Permission to use, copy, modify, and distribute this software for any
7 .\" purpose with or without fee is hereby granted, provided that the above
8 .\" copyright notice and this permission notice appear in all copies.
10 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 .Dd $Mdocdate: June 12 2012 $
23 .Nd roff language reference for mandoc
27 language is a general purpose text formatting language.
28 Since traditional implementations of the
32 manual formatting languages are based on it,
33 many real-world manuals use small numbers of
35 requests intermixed with their
40 To properly format such manuals, the
42 utility supports a tiny subset of
45 Only these requests supported by
47 are documented in the present manual,
48 together with the basic language syntax shared by
59 Input lines beginning with the control character
61 are parsed for requests and macros.
67 Requests change the processing state and manipulate the formatting;
68 some macros also define the document structure and produce formatted
72 is accepted as an alternative control character,
78 Lines not beginning with control characters are called
80 They provide free-form text to be printed; the formatting of the text
81 depends on the respective processing context.
84 documents may contain only graphable 7-bit ASCII characters, the space
85 character, and, in certain circumstances, the tab character.
86 The backslash character
88 indicates the start of an escape sequence for
90 .Sx Special Characters ,
91 .Sx Predefined Strings ,
93 user-defined strings defined using the
97 Text following an escaped double-quote
99 whether in a request, macro, or text line, is ignored to the end of the line.
100 A request line beginning with a control character and comment escape
103 Furthermore, request lines with only a control character and optional
104 trailing whitespace are stripped from input.
107 .Bd -literal -offset indent -compact
108 \&.\e\(dq This is a comment line.
109 \&.\e\(dq The next line is ignored:
111 \&.Sh EXAMPLES \e\(dq This is a comment, too.
112 \&example text \e\(dq And so is this.
114 .Ss Special Characters
115 Special characters are used to encode special glyphs and are rendered
116 differently across output media.
117 They may occur in request, macro, and text lines.
118 Sequences begin with the escape character
120 followed by either an open-parenthesis
122 for two-character sequences; an open-bracket
124 for n-character sequences (terminated at a close-bracket
126 or a single one character sequence.
129 .Bl -tag -width Ds -offset indent -compact
131 Two-letter em dash escape.
133 One-letter backslash escape.
140 Terms may be text-decorated using the
142 escape followed by an indicator: B (bold), I (italic), R (regular), or P
143 (revert to previous mode).
144 A numerical representation 3, 2, or 1 (bold, italic, and regular,
145 respectively) may be used instead.
146 The indicator or numerical representative may be preceded by C
147 (constant-width), which is ignored.
150 .Bl -tag -width Ds -offset indent -compact
152 Write in bold, then switch to regular font mode.
153 .It Li \efIitalic\efP
154 Write in italic, then return to previous font mode.
161 which encourages semantic annotation.
162 .Ss Predefined Strings
163 Predefined strings, like
164 .Sx Special Characters ,
165 mark special output glyphs.
166 Predefined strings are escaped with the slash-asterisk,
176 .Bl -tag -width Ds -offset indent -compact
178 Two-letter ampersand predefined string.
180 One-letter double-quote predefined string.
183 Predefined strings are not recommended for use,
184 as they differ across implementations.
189 Manuals using these predefined strings are almost certainly not portable.
191 Whitespace consists of the space character.
192 In text lines, whitespace is preserved within a line.
193 In request and macro lines, whitespace delimits arguments and is discarded.
195 Unescaped trailing spaces are stripped from text line input unless in a
197 In general, trailing whitespace on any input line is discouraged for
198 reasons of portability.
199 In the rare case that a blank character is needed at the end of an
200 input line, it may be forced by
203 Literal space characters can be produced in the output
204 using escape sequences.
205 In macro lines, they can also be included in arguments using quotation; see
209 Blank text lines, which may include whitespace, are only permitted
210 within literal contexts.
211 If the first character of a text line is a space, that line is printed
212 with a leading newline.
214 Many requests and macros support scaled widths for their arguments.
215 The syntax for a scaled width is
216 .Sq Li [+-]?[0-9]*.[0-9]*[:unit:] ,
217 where a decimal must be preceded or followed by at least one digit.
218 Negative numbers, while accepted, are truncated to zero.
220 The following scaling units are accepted:
222 .Bl -tag -width Ds -offset indent -compact
235 default vertical span
247 default horizontal span
252 Using anything other than
258 is necessarily non-portable across output media.
262 If a scaling unit is not provided, the numerical value is interpreted
263 under the default rules of
265 for vertical spaces and
270 .Bl -tag -width ".Bl -tag -width 2i" -offset indent -compact
271 .It Li \&.Bl -tag -width 2i
272 two-inch tagged list indentation in
275 two-inch tagged list indentation in
281 Each sentence should terminate at the end of an input line.
282 By doing this, a formatter will be able to apply the proper amount of
283 spacing after the end of sentence (unescaped) period, exclamation mark,
284 or question mark followed by zero or more non-sentence closing
293 The proper spacing is also intelligently preserved if a sentence ends at
294 the boundary of a macro line.
297 .Bd -literal -offset indent -compact
298 Do not end sentences mid-line like this. Instead,
299 end a sentence like this.
300 A macro would end like this:
304 A request or macro line consists of:
308 the control character
312 at the beginning of the line,
314 optionally an arbitrary amount of whitespace,
316 the name of the request or the macro, which is one word of arbitrary
317 length, terminated by whitespace,
319 and zero or more arguments delimited by whitespace.
322 Thus, the following request lines are all equivalent:
323 .Bd -literal -offset indent
329 Macros are provided by the
333 languages and can be defined by the
336 When called, they follow the same syntax as requests, except that
337 macro arguments may optionally be quoted by enclosing them
338 in double quote characters
340 Quoted text, even if it contains whitespace or would cause
341 a macro invocation when unquoted, is always considered literal text.
342 Inside quoted text, pairs of double quote characters
344 resolve to single double quote characters.
346 To be recognised as the beginning of a quoted argument, the opening
347 quote character must be preceded by a space character.
348 A quoted argument extends to the next double quote character that is not
349 part of a pair, or to the end of the input line, whichever comes earlier.
350 Leaving out the terminating double quote character at the end of the line
352 For clarity, if more arguments follow on the same input line,
353 it is recommended to follow the terminating double quote character
354 by a space character; in case the next character after the terminating
355 double quote character is anything else, it is regarded as the beginning
356 of the next, unquoted argument.
358 Both in quoted and unquoted arguments, pairs of backslashes
360 resolve to single backslashes.
361 In unquoted arguments, space characters can alternatively be included
362 by preceding them with a backslash
364 but quoting is usually better for clarity.
367 .Bl -tag -width Ds -offset indent -compact
368 .It Li .Fn strlen \(dqconst char *s\(dq
371 into one function argument.
377 would be considered separate arguments.
378 .It Li .Op \(dqFl a\(dq
381 as literal text instead of a flag macro.
383 .Sh REQUEST REFERENCE
387 parser recognises the following requests.
390 language defines many more requests not implemented in
393 Set line adjustment mode.
394 This line-scoped request is intended to have one argument to select
395 normal, left, right, or centre adjustment for subsequent text.
396 Currently, it is ignored including its arguments,
397 and the number of arguments is not checked.
399 Append to a macro definition.
400 The syntax of this request is the same as that of
402 It is currently ignored by
406 Append to a macro definition, specifying the macro name indirectly.
407 The syntax of this request is the same as that of
409 It is currently ignored by
413 Append to a macro definition, switching roff compatibility mode off
414 during macro execution.
415 The syntax of this request is the same as that of
417 It is currently ignored by
421 Changes the control character.
422 Its syntax is as follows:
423 .Bd -literal -offset indent
424 .Pf . Cm \&cc Op Ar c
429 is not specified, the control character is reset to
431 Trailing characters are ignored.
436 Its syntax can be either
437 .Bd -literal -offset indent
438 .Pf . Cm \&de Ar name
444 .Bd -literal -offset indent
445 .Pf . Cm \&de Ar name Ar end
450 Both forms define or redefine the macro
453 .Ar macro definition ,
454 which may consist of one or more input lines, including the newline
455 characters terminating each line, optionally containing calls to
459 macros or high-level macros like
463 macros, whichever applies to the document in question.
467 macro works in the same way as for
472 .Ar macro definition ,
473 and after that, it is also evaluated as a
477 macro, but not as a high-level macro.
479 The macro can be invoked later using the syntax
481 .D1 Pf . Ar name Op Ar argument Op Ar argument ...
483 Regarding argument parsing, see
487 The line invoking the macro will be replaced
488 in the input stream by the
489 .Ar macro definition ,
490 replacing all occurrences of
495 .Ar N Ns th Ar argument .
497 .Bd -literal -offset indent
499 \efI\e^\e\e$1\e^\efP\e\e$2
506 .D1 \efI\e^XtFree\e^\efP.
508 in the input stream, and thus in the output: \fI\^XtFree\^\fP.
510 Since macros and user-defined strings share a common string table,
513 clobbers the user-defined string
517 can also be printed using the
519 string interpolation syntax described below
521 but this is rarely useful because every macro definition contains at least
522 one explicit newline character.
524 In order to prevent endless recursion, both groff and
526 limit the stack depth for expanding macros and strings
527 to a large, but finite number.
528 Do not rely on the exact value of this limit.
532 macro, specifying the macro name indirectly.
533 The syntax of this request is the same as that of
535 It is currently ignored by
541 macro that will be executed with
543 compatibility mode switched off during macro execution.
544 This is a GNU extension not available in traditional
546 implementations and not even in older versions of groff.
551 compatibility mode at all, it handles this request as an alias for
554 Define a user-defined string.
555 Its syntax is as follows:
557 .D1 Pf . Cm \&ds Ar name Oo \(dq Oc Ns Ar string
563 arguments are space-separated.
566 begins with a double-quote character, that character will not be part
568 All remaining characters on the input line form the
570 including whitespace and double-quote characters, even trailing ones.
574 can be interpolated into subsequent text by using
575 .No \e* Ns Bq Ar name
578 of arbitrary length, or \e*(NN or \e*N if the length of
580 is two or one characters, respectively.
581 Interpolation can be prevented by escaping the leading backslash;
582 that is, an asterisk preceded by an even number of backslashes
583 does not trigger string interpolation.
585 Since user-defined strings and macros share a common string table,
592 used for defining a string can also be invoked as a macro,
593 in which case the following input line will be appended to the
595 forming a new input line passed to the
599 .Bd -literal -offset indent
610 Such abuse is of course strongly discouraged.
614 half of an if/else conditional.
615 Pops a result off the stack of conditional evaluations pushed by
617 and uses it as its conditional.
618 If no stack entries are present (e.g., due to no prior
621 then false is assumed.
622 The syntax of this request is similar to
624 except that the conditional is missing.
626 End an equation block.
630 Begin an equation block.
633 for a description of the equation language.
635 Set automatic hyphenation mode.
636 This line-scoped request is currently ignored.
640 half of an if/else conditional.
641 The result of the conditional is pushed into a stack used by subsequent
644 which may be separated by any intervening input (or not exist at all).
645 Its syntax is equivalent to
648 Begins a conditional.
649 Right now, the conditional evaluates to true
650 if and only if it starts with the letter
652 indicating processing in nroff style as opposed to troff style.
653 If a conditional is false, its children are not processed, but are
654 syntactically interpreted to preserve the integrity of the input
662 which may lead to interesting results, but
664 .D1 \&.if t .if t \e{\e
666 will continue to syntactically interpret to the block close of the final
668 Sub-conditionals, in this case, obviously inherit the truth value of
670 This request has the following syntax:
671 .Bd -literal -offset indent
676 .Bd -literal -offset indent
680 .Bd -literal -offset indent
685 .Bd -literal -offset indent
690 COND is a conditional statement.
691 roff allows for complicated conditionals; mandoc is much simpler.
692 At this time, mandoc supports only
701 All other invocations are read up to the next end of line or space and
704 If the BODY section is begun by an escaped brace
706 scope continues until a closing-brace escape sequence
708 If the BODY is not enclosed in braces, scope continues until
710 If the COND is followed by a BODY on the same line, whether after a
711 brace or not, then requests and macros
713 begin with a control character.
714 It is generally more intuitive, in this case, to write
715 .Bd -literal -offset indent
722 than having the request or macro follow as
724 .D1 \&.if COND \e{ .foo
726 The scope of a conditional is always parsed, but only executed if the
727 conditional evaluates to true.
731 is converted into a zero-width escape sequence if not passed as a
740 being considered an argument of the
745 Its syntax can be either
746 .Bd -literal -offset indent
753 .Bd -literal -offset indent
759 In the first case, input is ignored until a
761 request is encountered on its own line.
762 In the second case, input is ignored until the specified
764 macro is encountered.
765 Do not use the escape character
767 anywhere in the definition of
769 it would cause very strange behaviour.
773 macro is a roff request or a roff macro, like in
777 the subsequent invocation of
779 will first terminate the
781 then be invoked as usual.
782 Otherwise, it only terminates the
784 and arguments following it or the
786 request are discarded.
788 Declare the need for the specified minimum vertical space
789 before the next trap or the bottom of the page.
790 This line-scoped request is currently ignored.
792 Turn off automatic hyphenation mode.
793 This line-scoped request is currently ignored.
795 Remove a request, macro or string.
796 This request is intended to have one argument,
797 the name of the request, macro or string to be undefined.
798 Currently, it is ignored including its arguments,
799 and the number of arguments is not checked.
802 A register is an arbitrary string value that defines some sort of state,
803 which influences parsing and/or formatting.
804 Its syntax is as follows:
806 .D1 Pf \. Cm \&nr Ar name Ar value
810 may, at the moment, only be an integer.
811 So far, only the following register
816 If set to a positive integer value, certain
818 macros will behave in the same way as in the
821 If set to 0, these macros will behave in the same way as outside the
823 section, even when called within the
826 Note that starting a new
830 macro will reset this register.
833 Turn on no-space mode.
834 This line-scoped request is intended to take no arguments.
835 Currently, it is ignored including its arguments,
836 and the number of arguments is not checked.
839 This line-scoped request is intended to take one numerical argument.
840 Currently, it is ignored including its arguments,
841 and the number of arguments is not checked.
843 Include a source file.
844 Its syntax is as follows:
846 .D1 Pf \. Cm \&so Ar file
850 will be read and its contents processed as input in place of the
853 To avoid inadvertent inclusion of unrelated files,
855 only accepts relative paths not containing the strings
860 This request requires
862 to change to the right directory before calling
864 per convention to the root of the manual tree.
865 Typical usage looks like:
867 .Dl \&.so man3/Xcursor.3
869 As the whole concept is rather fragile, the use of
877 This line-scoped request can take an arbitrary number of arguments.
878 Currently, it is ignored including its arguments.
880 Output character translation.
881 Its syntax is as follows:
883 .D1 Pf \. Cm \&tr Ar [ab]+
887 characters are replaced
891 Replacement (or origin) characters may also be character escapes; thus,
895 replaces all invocations of \e(xx with \e(yy.
897 Re-start a table layout, retaining the options of the prior table
906 Begin a table, which formats input in aligned rows and columns.
909 for a description of the tbl language.
911 This section documents compatibility between mandoc and other other
913 implementations, at this time limited to GNU troff
917 refers to groff version 1.15.
927 macros are considered regular macros.
930 implementations, these are special macros that must be specified without
931 spacing between the control character (which must be a period) and the
936 register is only compatible with OpenBSD's groff-1.15.
938 Historic groff did not accept white-space before a custom
946 and family would print funny white-spaces with historic groff when
947 using the next-line syntax.
957 .%A Joseph F. Ossanna
958 .%A Brian W. Kernighan
959 .%I AT&T Bell Laboratories
960 .%T Troff User's Manual
961 .%R Computing Science Technical Report
963 .%C Murray Hill, New Jersey
965 .%U http://www.kohala.com/start/troff/cstr54.ps
968 .%A Joseph F. Ossanna
969 .%A Brian W. Kernighan
971 .%T Heirloom Documentation Tools Nroff/Troff User's Manual
972 .%D September 17, 2007
973 .%U http://heirloom.sourceforge.net/doctools/troff.pdf
976 The RUNOFF typesetting system, whose input forms the basis for
978 was written in MAD and FAP for the CTSS operating system by Jerome E.
980 Doug McIlroy rewrote it in BCPL in 1969, renaming it
982 Dennis M. Ritchie rewrote McIlroy's
984 in PDP-11 assembly for
986 Joseph F. Ossanna improved roff and renamed it nroff
989 then ported nroff to C as troff, which Brian W. Kernighan released with
991 In 1989, James Clarke re-implemented troff in C++, naming it groff.
996 reference was written by
997 .An Kristaps Dzonsons ,
998 .Mt kristaps@bsd.lv ;
1001 .Mt schwarze@openbsd.org .