sync
[bitrig.git] / share / man / man7 / roff.7
blobf040f2740af19440e28e6f0149aa7907fc86ac98
1 .\"     $OpenBSD: roff.7,v 1.20 2013/04/27 17:15:01 jmc Exp $
2 .\"
3 .\" Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 .\" Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org>
5 .\"
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.
9 .\"
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.
17 .\"
18 .Dd $Mdocdate: April 27 2013 $
19 .Dt ROFF 7
20 .Os
21 .Sh NAME
22 .Nm roff
23 .Nd roff language reference for mandoc
24 .Sh DESCRIPTION
25 The
26 .Nm roff
27 language is a general purpose text formatting language.
28 Since traditional implementations of the
29 .Xr mdoc 7
30 and
31 .Xr man 7
32 manual formatting languages are based on it,
33 many real-world manuals use small numbers of
34 .Nm
35 requests intermixed with their
36 .Xr mdoc 7
38 .Xr man 7
39 code.
40 To properly format such manuals, the
41 .Xr mandoc 1
42 utility supports a tiny subset of
43 .Nm
44 requests.
45 Only these requests supported by
46 .Xr mandoc 1
47 are documented in the present manual,
48 together with the basic language syntax shared by
49 .Nm ,
50 .Xr mdoc 7 ,
51 and
52 .Xr man 7 .
53 For complete
54 .Nm
55 manuals, consult the
56 .Sx SEE ALSO
57 section.
58 .Pp
59 Input lines beginning with the control character
60 .Sq \&.
61 are parsed for requests and macros.
62 Such lines are called
63 .Dq request lines
65 .Dq macro lines ,
66 respectively.
67 Requests change the processing state and manipulate the formatting;
68 some macros also define the document structure and produce formatted
69 output.
70 The single quote
71 .Pq Qq \(aq
72 is accepted as an alternative control character,
73 treated by
74 .Xr mandoc 1
75 just like
76 .Ql \&.
77 .Pp
78 Lines not beginning with control characters are called
79 .Dq text lines .
80 They provide free-form text to be printed; the formatting of the text
81 depends on the respective processing context.
82 .Sh LANGUAGE SYNTAX
83 .Nm
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
87 .Sq \e
88 indicates the start of an escape sequence for
89 .Sx Comments ,
90 .Sx Special Characters ,
91 .Sx Predefined Strings ,
92 and
93 user-defined strings defined using the
94 .Sx ds
95 request.
96 .Ss Comments
97 Text following an escaped double-quote
98 .Sq \e\(dq ,
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
101 .Sq \&.\e\(dq
102 is also ignored.
103 Furthermore, request lines with only a control character and optional
104 trailing whitespace are stripped from input.
106 Examples:
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
119 .Sq \e
120 followed by either an open-parenthesis
121 .Sq \&(
122 for two-character sequences; an open-bracket
123 .Sq \&[
124 for n-character sequences (terminated at a close-bracket
125 .Sq \&] ) ;
126 or a single one character sequence.
128 Examples:
129 .Bl -tag -width Ds -offset indent -compact
130 .It Li \e(em
131 Two-letter em dash escape.
132 .It Li \ee
133 One-letter backslash escape.
137 .Xr mandoc_char 7
138 for a complete list.
139 .Ss Text Decoration
140 Terms may be text-decorated using the
141 .Sq \ef
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.
147 Examples:
148 .Bl -tag -width Ds -offset indent -compact
149 .It Li \efBbold\efR
150 Write in bold, then switch to regular font mode.
151 .It Li \efIitalic\efP
152 Write in italic, then return to previous font mode.
155 Text decoration is
156 .Em not
157 recommended for
158 .Xr mdoc 7 ,
159 which encourages semantic annotation.
160 .Ss Predefined Strings
161 Predefined strings, like
162 .Sx Special Characters ,
163 mark special output glyphs.
164 Predefined strings are escaped with the slash-asterisk,
165 .Sq \e* :
166 single-character
167 .Sq \e*X ,
168 two-character
169 .Sq \e*(XX ,
170 and N-character
171 .Sq \e*[N] .
173 Examples:
174 .Bl -tag -width Ds -offset indent -compact
175 .It Li \e*(Am
176 Two-letter ampersand predefined string.
177 .It Li \e*q
178 One-letter double-quote predefined string.
181 Predefined strings are not recommended for use,
182 as they differ across implementations.
183 Those supported by
184 .Xr mandoc 1
185 are listed in
186 .Xr mandoc_char 7 .
187 Manuals using these predefined strings are almost certainly not portable.
188 .Ss Whitespace
189 Whitespace consists of the space character.
190 In text lines, whitespace is preserved within a line.
191 In request and macro lines, whitespace delimits arguments and is discarded.
193 Unescaped trailing spaces are stripped from text line input unless in a
194 literal context.
195 In general, trailing whitespace on any input line is discouraged for
196 reasons of portability.
197 In the rare case that a blank character is needed at the end of an
198 input line, it may be forced by
199 .Sq \e\ \e& .
201 Literal space characters can be produced in the output
202 using escape sequences.
203 In macro lines, they can also be included in arguments using quotation; see
204 .Sx MACRO SYNTAX
205 for details.
207 Blank text lines, which may include whitespace, are only permitted
208 within literal contexts.
209 If the first character of a text line is a space, that line is printed
210 with a leading newline.
211 .Ss Scaling Widths
212 Many requests and macros support scaled widths for their arguments.
213 The syntax for a scaled width is
214 .Sq Li [+-]?[0-9]*.[0-9]*[:unit:] ,
215 where a decimal must be preceded or followed by at least one digit.
216 Negative numbers, while accepted, are truncated to zero.
218 The following scaling units are accepted:
220 .Bl -tag -width Ds -offset indent -compact
221 .It c
222 centimetre
223 .It i
224 inch
225 .It P
226 pica (~1/6 inch)
227 .It p
228 point (~1/72 inch)
229 .It f
230 synonym for
231 .Sq u
232 .It v
233 default vertical span
234 .It m
235 width of rendered
236 .Sq m
237 .Pq em
238 character
239 .It n
240 width of rendered
241 .Sq n
242 .Pq en
243 character
244 .It u
245 default horizontal span
246 .It M
247 mini-em (~1/100 em)
250 Using anything other than
251 .Sq m ,
252 .Sq n ,
253 .Sq u ,
255 .Sq v
256 is necessarily non-portable across output media.
258 .Sx COMPATIBILITY .
260 If a scaling unit is not provided, the numerical value is interpreted
261 under the default rules of
262 .Sq v
263 for vertical spaces and
264 .Sq u
265 for horizontal ones.
267 Examples:
268 .Bl -tag -width ".Bl -tag -width 2i" -offset indent -compact
269 .It Li \&.Bl -tag -width 2i
270 two-inch tagged list indentation in
271 .Xr mdoc 7
272 .It Li \&.HP 2i
273 two-inch tagged list indentation in
274 .Xr man 7
275 .It Li \&.sp 2v
276 two vertical spaces
278 .Ss Sentence Spacing
279 Each sentence should terminate at the end of an input line.
280 By doing this, a formatter will be able to apply the proper amount of
281 spacing after the end of sentence (unescaped) period, exclamation mark,
282 or question mark followed by zero or more non-sentence closing
283 delimiters
285 .Sq \&) ,
286 .Sq \&] ,
287 .Sq \&' ,
288 .Sq \&"
289 .Pc .
291 The proper spacing is also intelligently preserved if a sentence ends at
292 the boundary of a macro line.
294 Examples:
295 .Bd -literal -offset indent -compact
296 Do not end sentences mid-line like this.  Instead,
297 end a sentence like this.
298 A macro would end like this:
299 \&.Xr mandoc 1 \&.
301 .Sh REQUEST SYNTAX
302 A request or macro line consists of:
304 .Bl -enum -compact
306 the control character
307 .Sq \&.
309 .Sq \(aq
310 at the beginning of the line,
312 optionally an arbitrary amount of whitespace,
314 the name of the request or the macro, which is one word of arbitrary
315 length, terminated by whitespace,
317 and zero or more arguments delimited by whitespace.
320 Thus, the following request lines are all equivalent:
321 .Bd -literal -offset indent
322 \&.ig end
323 \&.ig    end
324 \&.   ig end
326 .Sh MACRO SYNTAX
327 Macros are provided by the
328 .Xr mdoc 7
330 .Xr man 7
331 languages and can be defined by the
332 .Sx \&de
333 request.
334 When called, they follow the same syntax as requests, except that
335 macro arguments may optionally be quoted by enclosing them
336 in double quote characters
337 .Pq Sq \(dq .
338 Quoted text, even if it contains whitespace or would cause
339 a macro invocation when unquoted, is always considered literal text.
340 Inside quoted text, pairs of double quote characters
341 .Pq Sq Qq
342 resolve to single double quote characters.
344 To be recognised as the beginning of a quoted argument, the opening
345 quote character must be preceded by a space character.
346 A quoted argument extends to the next double quote character that is not
347 part of a pair, or to the end of the input line, whichever comes earlier.
348 Leaving out the terminating double quote character at the end of the line
349 is discouraged.
350 For clarity, if more arguments follow on the same input line,
351 it is recommended to follow the terminating double quote character
352 by a space character; in case the next character after the terminating
353 double quote character is anything else, it is regarded as the beginning
354 of the next, unquoted argument.
356 Both in quoted and unquoted arguments, pairs of backslashes
357 .Pq Sq \e\e
358 resolve to single backslashes.
359 In unquoted arguments, space characters can alternatively be included
360 by preceding them with a backslash
361 .Pq Sq \e\~ ,
362 but quoting is usually better for clarity.
364 Examples:
365 .Bl -tag -width Ds -offset indent -compact
366 .It Li .Fn strlen \(dqconst char *s\(dq
367 Group arguments
368 .Qq const char *s
369 into one function argument.
370 If unspecified,
371 .Qq const ,
372 .Qq char ,
374 .Qq *s
375 would be considered separate arguments.
376 .It Li .Op \(dqFl a\(dq
377 Consider
378 .Qq \&Fl a
379 as literal text instead of a flag macro.
381 .Sh REQUEST REFERENCE
383 .Xr mandoc 1
385 parser recognises the following requests.
386 Note that the
388 language defines many more requests not implemented in
389 .Xr mandoc 1 .
390 .Ss \&ad
391 Set line adjustment mode.
392 This line-scoped request is intended to have one argument to select
393 normal, left, right, or centre adjustment for subsequent text.
394 Currently, it is ignored including its arguments,
395 and the number of arguments is not checked.
396 .Ss \&am
397 Append to a macro definition.
398 The syntax of this request is the same as that of
399 .Sx \&de .
400 It is currently ignored by
401 .Xr mandoc 1 ,
402 as are its children.
403 .Ss \&ami
404 Append to a macro definition, specifying the macro name indirectly.
405 The syntax of this request is the same as that of
406 .Sx \&dei .
407 It is currently ignored by
408 .Xr mandoc 1 ,
409 as are its children.
410 .Ss \&am1
411 Append to a macro definition, switching roff compatibility mode off
412 during macro execution.
413 The syntax of this request is the same as that of
414 .Sx \&de1 .
415 It is currently ignored by
416 .Xr mandoc 1 ,
417 as are its children.
418 .Ss \&cc
419 Changes the control character.
420 Its syntax is as follows:
421 .Bd -literal -offset indent
422 .Pf . Cm \&cc Op Ar c
426 .Ar c
427 is not specified, the control character is reset to
428 .Sq \&. .
429 Trailing characters are ignored.
430 .Ss \&de
431 Define a
433 macro.
434 Its syntax can be either
435 .Bd -literal -offset indent
436 .Pf . Cm \&de Ar name
437 .Ar macro definition
438 \&..
442 .Bd -literal -offset indent
443 .Pf . Cm \&de Ar name Ar end
444 .Ar macro definition
445 .Pf . Ar end
448 Both forms define or redefine the macro
449 .Ar name
450 to represent the
451 .Ar macro definition ,
452 which may consist of one or more input lines, including the newline
453 characters terminating each line, optionally containing calls to
455 requests,
457 macros or high-level macros like
458 .Xr man 7
460 .Xr mdoc 7
461 macros, whichever applies to the document in question.
463 Specifying a custom
464 .Ar end
465 macro works in the same way as for
466 .Sx \&ig ;
467 namely, the call to
468 .Sq Pf . Ar end
469 first ends the
470 .Ar macro definition ,
471 and after that, it is also evaluated as a
473 request or
475 macro, but not as a high-level macro.
477 The macro can be invoked later using the syntax
479 .D1 Pf . Ar name Op Ar argument Op Ar argument ...
481 Regarding argument parsing, see
482 .Sx MACRO SYNTAX
483 above.
485 The line invoking the macro will be replaced
486 in the input stream by the
487 .Ar macro definition ,
488 replacing all occurrences of
489 .No \e\e$ Ns Ar N ,
490 where
491 .Ar N
492 is a digit, by the
493 .Ar N Ns th Ar argument .
494 For example,
495 .Bd -literal -offset indent
496 \&.de ZN
497 \efI\e^\e\e$1\e^\efP\e\e$2
498 \&..
499 \&.ZN XtFree .
502 produces
504 .D1 \efI\e^XtFree\e^\efP.
506 in the input stream, and thus in the output: \fI\^XtFree\^\fP.
508 Since macros and user-defined strings share a common string table,
509 defining a macro
510 .Ar name
511 clobbers the user-defined string
512 .Ar name ,
513 and the
514 .Ar macro definition
515 can also be printed using the
516 .Sq \e*
517 string interpolation syntax described below
518 .Sx ds ,
519 but this is rarely useful because every macro definition contains at least
520 one explicit newline character.
522 In order to prevent endless recursion, both groff and
523 .Xr mandoc 1
524 limit the stack depth for expanding macros and strings
525 to a large, but finite number.
526 Do not rely on the exact value of this limit.
527 .Ss \&dei
528 Define a
530 macro, specifying the macro name indirectly.
531 The syntax of this request is the same as that of
532 .Sx \&de .
533 It is currently ignored by
534 .Xr mandoc 1 ,
535 as are its children.
536 .Ss \&de1
537 Define a
539 macro that will be executed with
541 compatibility mode switched off during macro execution.
542 This is a GNU extension not available in traditional
544 implementations and not even in older versions of groff.
545 Since
546 .Xr mandoc 1
547 does not implement
549 compatibility mode at all, it handles this request as an alias for
550 .Sx \&de .
551 .Ss \&ds
552 Define a user-defined string.
553 Its syntax is as follows:
555 .D1 Pf . Cm \&ds Ar name Oo \(dq Oc Ns Ar string
558 .Ar name
560 .Ar string
561 arguments are space-separated.
562 If the
563 .Ar string
564 begins with a double-quote character, that character will not be part
565 of the string.
566 All remaining characters on the input line form the
567 .Ar string ,
568 including whitespace and double-quote characters, even trailing ones.
571 .Ar string
572 can be interpolated into subsequent text by using
573 .No \e* Ns Bq Ar name
574 for a
575 .Ar name
576 of arbitrary length, or \e*(NN or \e*N if the length of
577 .Ar name
578 is two or one characters, respectively.
579 Interpolation can be prevented by escaping the leading backslash;
580 that is, an asterisk preceded by an even number of backslashes
581 does not trigger string interpolation.
583 Since user-defined strings and macros share a common string table,
584 defining a string
585 .Ar name
586 clobbers the macro
587 .Ar name ,
588 and the
589 .Ar name
590 used for defining a string can also be invoked as a macro,
591 in which case the following input line will be appended to the
592 .Ar string ,
593 forming a new input line passed to the
595 parser.
596 For example,
597 .Bd -literal -offset indent
598 \&.ds badidea .S
599 \&.badidea
600 H SYNOPSIS
603 invokes the
604 .Cm SH
605 macro when used in a
606 .Xr man 7
607 document.
608 Such abuse is of course strongly discouraged.
609 .Ss \&el
611 .Qq else
612 half of an if/else conditional.
613 Pops a result off the stack of conditional evaluations pushed by
614 .Sx \&ie
615 and uses it as its conditional.
616 If no stack entries are present (e.g., due to no prior
617 .Sx \&ie
618 calls)
619 then false is assumed.
620 The syntax of this request is similar to
621 .Sx \&if
622 except that the conditional is missing.
623 .Ss \&EN
624 End an equation block.
626 .Sx \&EQ .
627 .Ss \&EQ
628 Begin an equation block.
630 .Xr eqn 7
631 for a description of the equation language.
632 .Ss \&ft
633 Change the font.
634 Its syntax is as follows:
636 .D1 Pf . Cm \&ft Op Ar font
638 The following
639 .Ar font
640 arguments are supported:
641 .Bl -tag -width 4n -offset indent
642 .It Cm B , BI , 3 , 4
643 switches to
644 .Sy bold
645 font
646 .It Cm I , 2
647 switches to
648 .Em underlined
649 font
650 .It Cm R , CW , 1
651 switches to normal font
652 .It Cm P No "or no argument"
653 switches back to the previous font
656 This request takes effect only locally, may be overridden by macros
657 and escape sequences, and is only supported in
658 .Xr man 7
659 for now.
660 .Ss \&hy
661 Set automatic hyphenation mode.
662 This line-scoped request is currently ignored.
663 .Ss \&ie
665 .Qq if
666 half of an if/else conditional.
667 The result of the conditional is pushed into a stack used by subsequent
668 invocations of
669 .Sx \&el ,
670 which may be separated by any intervening input (or not exist at all).
671 Its syntax is equivalent to
672 .Sx \&if .
673 .Ss \&if
674 Begins a conditional.
675 Right now, the conditional evaluates to true
676 if and only if it starts with the letter
677 .Sy n ,
678 indicating processing in nroff style as opposed to troff style.
679 If a conditional is false, its children are not processed, but are
680 syntactically interpreted to preserve the integrity of the input
681 document.
682 Thus,
684 .D1 \&.if t .ig
686 will discard the
687 .Sq \&.ig ,
688 which may lead to interesting results, but
690 .D1 \&.if t .if t \e{\e
692 will continue to syntactically interpret to the block close of the final
693 conditional.
694 Sub-conditionals, in this case, obviously inherit the truth value of
695 the parent.
696 This request has the following syntax:
697 .Bd -literal -offset indent
698 \&.if COND \e{\e
699 BODY...
700 \&.\e}
702 .Bd -literal -offset indent
703 \&.if COND \e{ BODY
704 BODY... \e}
706 .Bd -literal -offset indent
707 \&.if COND \e{ BODY
708 BODY...
709 \&.\e}
711 .Bd -literal -offset indent
712 \&.if COND \e
713 BODY
716 COND is a conditional statement.
717 roff allows for complicated conditionals; mandoc is much simpler.
718 At this time, mandoc supports only
719 .Sq n ,
720 evaluating to true;
722 .Sq t ,
723 .Sq e ,
725 .Sq o ,
726 evaluating to false.
727 All other invocations are read up to the next end of line or space and
728 evaluate as false.
730 If the BODY section is begun by an escaped brace
731 .Sq \e{ ,
732 scope continues until a closing-brace escape sequence
733 .Sq \.\e} .
734 If the BODY is not enclosed in braces, scope continues until
735 the end of the line.
736 If the COND is followed by a BODY on the same line, whether after a
737 brace or not, then requests and macros
738 .Em must
739 begin with a control character.
740 It is generally more intuitive, in this case, to write
741 .Bd -literal -offset indent
742 \&.if COND \e{\e
743 \&.foo
745 \&.\e}
748 than having the request or macro follow as
750 .D1 \&.if COND \e{ .foo
752 The scope of a conditional is always parsed, but only executed if the
753 conditional evaluates to true.
755 Note that the
756 .Sq \e}
757 is converted into a zero-width escape sequence if not passed as a
758 standalone macro
759 .Sq \&.\e} .
760 For example,
762 .D1 \&.Fl a \e} b
764 will result in
765 .Sq \e}
766 being considered an argument of the
767 .Sq \&Fl
768 macro.
769 .Ss \&ig
770 Ignore input.
771 Its syntax can be either
772 .Bd -literal -offset indent
773 .Pf . Cm \&ig
774 .Ar ignored text
775 \&..
779 .Bd -literal -offset indent
780 .Pf . Cm \&ig Ar end
781 .Ar ignored text
782 .Pf . Ar end
785 In the first case, input is ignored until a
786 .Sq \&..
787 request is encountered on its own line.
788 In the second case, input is ignored until the specified
789 .Sq Pf . Ar end
790 macro is encountered.
791 Do not use the escape character
792 .Sq \e
793 anywhere in the definition of
794 .Ar end ;
795 it would cause very strange behaviour.
797 When the
798 .Ar end
799 macro is a roff request or a roff macro, like in
801 .D1 \&.ig if
803 the subsequent invocation of
804 .Sx \&if
805 will first terminate the
806 .Ar ignored text ,
807 then be invoked as usual.
808 Otherwise, it only terminates the
809 .Ar ignored text ,
810 and arguments following it or the
811 .Sq \&..
812 request are discarded.
813 .Ss \&ne
814 Declare the need for the specified minimum vertical space
815 before the next trap or the bottom of the page.
816 This line-scoped request is currently ignored.
817 .Ss \&nh
818 Turn off automatic hyphenation mode.
819 This line-scoped request is currently ignored.
820 .Ss \&rm
821 Remove a request, macro or string.
822 This request is intended to have one argument,
823 the name of the request, macro or string to be undefined.
824 Currently, it is ignored including its arguments,
825 and the number of arguments is not checked.
826 .Ss \&nr
827 Define a register.
828 A register is an arbitrary string value that defines some sort of state,
829 which influences parsing and/or formatting.
830 Its syntax is as follows:
832 .D1 Pf \. Cm \&nr Ar name Ar value
835 .Ar value
836 may, at the moment, only be an integer.
837 So far, only the following register
838 .Ar name
839 is recognised:
840 .Bl -tag -width Ds
841 .It Cm nS
842 If set to a positive integer value, certain
843 .Xr mdoc 7
844 macros will behave in the same way as in the
845 .Em SYNOPSIS
846 section.
847 If set to 0, these macros will behave in the same way as outside the
848 .Em SYNOPSIS
849 section, even when called within the
850 .Em SYNOPSIS
851 section itself.
852 Note that starting a new
853 .Xr mdoc 7
854 section with the
855 .Cm \&Sh
856 macro will reset this register.
858 .Ss \&ns
859 Turn on no-space mode.
860 This line-scoped request is intended to take no arguments.
861 Currently, it is ignored including its arguments,
862 and the number of arguments is not checked.
863 .Ss \&ps
864 Change point size.
865 This line-scoped request is intended to take one numerical argument.
866 Currently, it is ignored including its arguments,
867 and the number of arguments is not checked.
868 .Ss \&so
869 Include a source file.
870 Its syntax is as follows:
872 .D1 Pf \. Cm \&so Ar file
875 .Ar file
876 will be read and its contents processed as input in place of the
877 .Sq \&.so
878 request line.
879 To avoid inadvertent inclusion of unrelated files,
880 .Xr mandoc 1
881 only accepts relative paths not containing the strings
882 .Qq ../
884 .Qq /.. .
886 This request requires
887 .Xr man 1
888 to change to the right directory before calling
889 .Xr mandoc 1 ,
890 per convention to the root of the manual tree.
891 Typical usage looks like:
893 .Dl \&.so man3/Xcursor.3
895 As the whole concept is rather fragile, the use of
896 .Sx \&so
897 is discouraged.
899 .Xr ln 1
900 instead.
901 .Ss \&ta
902 Set tab stops.
903 This line-scoped request can take an arbitrary number of arguments.
904 Currently, it is ignored including its arguments.
905 .Ss \&tr
906 Output character translation.
907 Its syntax is as follows:
909 .D1 Pf \. Cm \&tr Ar [ab]+
911 Pairs of
912 .Ar ab
913 characters are replaced
914 .Ar ( a
916 .Ar b ) .
917 Replacement (or origin) characters may also be character escapes; thus,
919 .Dl tr \e(xx\e(yy
921 replaces all invocations of \e(xx with \e(yy.
922 .Ss \&T&
923 Re-start a table layout, retaining the options of the prior table
924 invocation.
926 .Sx \&TS .
927 .Ss \&TE
928 End a table context.
930 .Sx \&TS .
931 .Ss \&TS
932 Begin a table, which formats input in aligned rows and columns.
934 .Xr tbl 7
935 for a description of the tbl language.
936 .Sh COMPATIBILITY
937 This section documents compatibility between mandoc and other
939 implementations, at this time limited to GNU troff
940 .Pq Qq groff .
941 The term
942 .Qq historic groff
943 refers to groff version 1.15.
945 .Bl -dash -compact
947 In mandoc, the
948 .Sx \&EQ ,
949 .Sx \&TE ,
950 .Sx \&TS ,
952 .Sx \&T& ,
953 macros are considered regular macros.
954 In all other
956 implementations, these are special macros that must be specified without
957 spacing between the control character (which must be a period) and the
958 macro name.
961 .Cm nS
962 register is only compatible with OpenBSD's groff-1.15.
964 Historic groff did not accept white-space before a custom
965 .Ar end
966 macro for the
967 .Sx \&ig
968 request.
971 .Sx \&if
972 and family would print funny white-spaces with historic groff when
973 using the next-line syntax.
975 .Sh SEE ALSO
976 .Xr mandoc 1 ,
977 .Xr eqn 7 ,
978 .Xr man 7 ,
979 .Xr mandoc_char 7 ,
980 .Xr mdoc 7 ,
981 .Xr tbl 7
983 .%A Joseph F. Ossanna
984 .%A Brian W. Kernighan
985 .%I AT&T Bell Laboratories
986 .%T Troff User's Manual
987 .%R Computing Science Technical Report
988 .%N 54
989 .%C Murray Hill, New Jersey
990 .%D 1976 and 1992
991 .%U http://www.kohala.com/start/troff/cstr54.ps
994 .%A Joseph F. Ossanna
995 .%A Brian W. Kernighan
996 .%A Gunnar Ritter
997 .%T Heirloom Documentation Tools Nroff/Troff User's Manual
998 .%D September 17, 2007
999 .%U http://heirloom.sourceforge.net/doctools/troff.pdf
1001 .Sh HISTORY
1002 The RUNOFF typesetting system, whose input forms the basis for
1003 .Nm ,
1004 was written in MAD and FAP for the CTSS operating system by Jerome E.
1005 Saltzer in 1964.
1006 Doug McIlroy rewrote it in BCPL in 1969, renaming it
1007 .Nm .
1008 Dennis M. Ritchie rewrote McIlroy's
1010 in PDP-11 assembly for
1011 .At v1 ,
1012 Joseph F. Ossanna improved roff and renamed it nroff
1014 .At v2 ,
1015 then ported nroff to C as troff, which Brian W. Kernighan released with
1016 .At v7 .
1017 In 1989, James Clarke re-implemented troff in C++, naming it groff.
1018 .Sh AUTHORS
1019 .An -nosplit
1020 This
1022 reference was written by
1023 .An Kristaps Dzonsons ,
1024 .Mt kristaps@bsd.lv ;
1026 .An Ingo Schwarze ,
1027 .Mt schwarze@openbsd.org .