8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man5 / mdoc.5
blob6d81124b0250049d2d5e825c00d37f5f0ef3e908
1 .\"     $Id: mdoc.7,v 1.257 2015/11/05 12:06:45 schwarze Exp $
2 .\"
3 .\" Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 .\" Copyright (c) 2010, 2011, 2013 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 .\"
19 .\" Copyright 2014 Garrett D'Amore <garrett@damore.org>
20 .\" Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
21 .\"
22 .Dd $Mdocdate: November 5 2015 $
23 .Dt MDOC 5
24 .Os
25 .Sh NAME
26 .Nm mdoc
27 .Nd semantic markup language for formatting manual pages
28 .Sh DESCRIPTION
29 The
30 .Nm mdoc
31 language supports authoring of manual pages for the
32 .Xr man 1
33 utility by allowing semantic annotations of words, phrases,
34 page sections and complete manual pages.
35 Such annotations are used by formatting tools to achieve a uniform
36 presentation across all manuals written in
37 .Nm ,
38 and to support hyperlinking if supported by the output medium.
39 .Pp
40 This reference document describes the structure of manual pages
41 and the syntax and usage of the
42 .Nm
43 language.
44 The reference implementation of a parsing and formatting tool is
45 .Xr mandoc 1 ;
46 the
47 .Sx COMPATIBILITY
48 section describes compatibility with other implementations.
49 .Pp
50 In an
51 .Nm
52 document, lines beginning with the control character
53 .Sq \&.
54 are called
55 .Dq macro lines .
56 The first word is the macro name.
57 It consists of two or three letters.
58 Most macro names begin with a capital letter.
59 For a list of available macros, see
60 .Sx MACRO OVERVIEW .
61 The words following the macro name are arguments to the macro, optionally
62 including the names of other, callable macros; see
63 .Sx MACRO SYNTAX
64 for details.
65 .Pp
66 Lines not beginning with the control character are called
67 .Dq text lines .
68 They provide free-form text to be printed; the formatting of the text
69 depends on the respective processing context:
70 .Bd -literal -offset indent
71 \&.Sh Macro lines change control state.
72 Text lines are interpreted within the current state.
73 .Ed
74 .Pp
75 Many aspects of the basic syntax of the
76 .Nm
77 language are based on the
78 .Xr mandoc_roff 5
79 language; see the
80 .Em LANGUAGE SYNTAX
81 and
82 .Em MACRO SYNTAX
83 sections in the
84 .Xr mandoc_roff 5
85 manual for details, in particular regarding
86 comments, escape sequences, whitespace, and quoting.
87 However, using
88 .Xr mandoc_roff 5
89 requests in
90 .Nm
91 documents is discouraged;
92 .Xr mandoc 1
93 supports some of them merely for backward compatibility.
94 .Sh MANUAL STRUCTURE
95 A well-formed
96 .Nm
97 document consists of a document prologue followed by one or more
98 sections.
99 .Pp
100 The prologue, which consists of the
101 .Sx \&Dd ,
102 .Sx \&Dt ,
104 .Sx \&Os
105 macros in that order, is required for every document.
107 The first section (sections are denoted by
108 .Sx \&Sh )
109 must be the NAME section, consisting of at least one
110 .Sx \&Nm
111 followed by
112 .Sx \&Nd .
114 Following that, convention dictates specifying at least the
115 .Em SYNOPSIS
117 .Em DESCRIPTION
118 sections, although this varies between manual sections.
120 The following is a well-formed skeleton
122 file for a utility
123 .Qq progname :
124 .Bd -literal -offset indent
125 \&.Dd Jan 1, 1970
126 \&.Dt PROGNAME section
127 \&.Os
128 \&.Sh NAME
129 \&.Nm progname
130 \&.Nd one line about what it does
131 \&.\e\(dq .Sh LIBRARY
132 \&.\e\(dq For sections 2, 3, and 9 only.
133 \&.Sh SYNOPSIS
134 \&.Nm progname
135 \&.Op Fl options
136 \&.Ar
137 \&.Sh DESCRIPTION
139 \&.Nm
140 utility processes files ...
141 \&.\e\(dq .Sh IMPLEMENTATION NOTES
142 \&.\e\(dq .Sh RETURN VALUES
143 \&.\e\(dq For sections 2, 3, and 9 only.
144 \&.\e\(dq .Sh CONTEXT
145 \&.\e\(dq For section 9 functions only.
146 \&.\e\(dq .Sh ENVIRONMENT
147 \&.\e\(dq For sections 1, 1M, and 5.
148 \&.\e\(dq .Sh FILES
149 \&.\e\(dq .Sh EXIT STATUS
150 \&.\e\(dq For sections 1, 1M, and 5.
151 \&.\e\(dq .Sh EXAMPLES
152 \&.\e\(dq .Sh DIAGNOSTICS
153 \&.\e\(dq .Sh ERRORS
154 \&.\e\(dq For sections 2, 3, and 9 only.
155 \&.\e\(dq .Sh ARCHITECTURE
156 \&.\e\(dq .Sh CODE SET INDEPENDENCE
157 \&.\e\(dq For sections 1, 1M, and 3 only.
158 \&.\e\(dq .Sh INTERFACE STABILITY
159 \&.\e\(dq .Sh MT-LEVEL
160 \&.\e\(dq For sections 2 and 3 only.
161 \&.\e\(dq .Sh SECURITY
162 \&.\e\(dq .Sh SEE ALSO
163 \&.\e\(dq .Xr foobar 1
164 \&.\e\(dq .Sh STANDARDS
165 \&.\e\(dq .Sh HISTORY
166 \&.\e\(dq .Sh AUTHORS
167 \&.\e\(dq .Sh CAVEATS
168 \&.\e\(dq .Sh BUGS
171 The sections in an
173 document are conventionally ordered as they appear above.
174 Sections should be composed as follows:
175 .Bl -ohang -offset Ds
176 .It Em NAME
177 The name(s) and a one line description of the documented material.
178 The syntax for this as follows:
179 .Bd -literal -offset indent
180 \&.Nm name0 ,
181 \&.Nm name1 ,
182 \&.Nm name2
183 \&.Nd a one line description
186 Multiple
187 .Sq \&Nm
188 names should be separated by commas.
191 .Sx \&Nm
192 macro(s) must precede the
193 .Sx \&Nd
194 macro.
197 .Sx \&Nm
199 .Sx \&Nd .
200 .It Em LIBRARY
201 The name of the library containing the documented material, which is
202 assumed to be a function in a section 2, 3, or 9 manual.
203 The syntax for this is as follows:
204 .Bd -literal -offset indent
205 \&.Lb libarm
209 .Sx \&Lb .
210 .It Em SYNOPSIS
211 Documents the utility invocation syntax, function call syntax, or device
212 configuration.
214 For the first, utilities (sections 1 and 1M), this is
215 generally structured as follows:
216 .Bd -literal -offset indent
217 \&.Nm bar
218 \&.Op Fl v
219 \&.Op Fl o Ar file
220 \&.Op Ar
221 \&.Nm foo
222 \&.Op Fl v
223 \&.Op Fl o Ar file
224 \&.Op Ar
227 Commands should be ordered alphabetically.
229 For the second, function calls (sections 2, 3, 7I, 7P, 9):
230 .Bd -literal -offset indent
231 \&.In header.h
232 \&.Vt extern const char *global;
233 \&.Ft "char *"
234 \&.Fn foo "const char *src"
235 \&.Ft "char *"
236 \&.Fn bar "const char *src"
239 Ordering of
240 .Sx \&In ,
241 .Sx \&Vt ,
242 .Sx \&Fn ,
244 .Sx \&Fo
245 macros should follow C header-file conventions.
247 And for the third, configurations (section 7D):
248 .Bd -literal -offset indent
249 \&.Pa /dev/device_node
252 Manuals not in these sections generally don't need a
253 .Em SYNOPSIS .
255 Some macros are displayed differently in the
256 .Em SYNOPSIS
257 section, particularly
258 .Sx \&Nm ,
259 .Sx \&Cd ,
260 .Sx \&Fd ,
261 .Sx \&Fn ,
262 .Sx \&Fo ,
263 .Sx \&In ,
264 .Sx \&Vt ,
266 .Sx \&Ft .
267 All of these macros are output on their own line.
268 If two such dissimilar macros are pairwise invoked (except for
269 .Sx \&Ft
270 before
271 .Sx \&Fo
273 .Sx \&Fn ) ,
274 they are separated by a vertical space, unless in the case of
275 .Sx \&Fo ,
276 .Sx \&Fn ,
278 .Sx \&Ft ,
279 which are always separated by vertical space.
281 When text and macros following an
282 .Sx \&Nm
283 macro starting an input line span multiple output lines,
284 all output lines but the first will be indented to align
285 with the text immediately following the
286 .Sx \&Nm
287 macro, up to the next
288 .Sx \&Nm ,
289 .Sx \&Sh ,
291 .Sx \&Ss
292 macro or the end of an enclosing block, whichever comes first.
293 .It Em DESCRIPTION
294 This begins with an expansion of the brief, one line description in
295 .Em NAME :
296 .Bd -literal -offset indent
298 \&.Nm
299 utility does this, that, and the other.
302 It usually follows with a breakdown of the options (if documenting a
303 command), such as:
304 .Bd -literal -offset indent
305 The arguments are as follows:
306 \&.Bl \-tag \-width Ds
307 \&.It Fl v
308 Print verbose information.
309 \&.El
312 List the options in alphabetical order,
313 uppercase before lowercase for each letter and
314 with no regard to whether an option takes an argument.
315 Put digits in ascending order before all letter options.
317 Manuals not documenting a command won't include the above fragment.
319 Since the
320 .Em DESCRIPTION
321 section usually contains most of the text of a manual, longer manuals
322 often use the
323 .Sx \&Ss
324 macro to form subsections.
325 In very long manuals, the
326 .Em DESCRIPTION
327 may be split into multiple sections, each started by an
328 .Sx \&Sh
329 macro followed by a non-standard section name, and each having
330 several subsections, like in the present
332 manual.
333 .It Em IMPLEMENTATION NOTES
334 Implementation-specific notes should be kept here.
335 This is useful when implementing standard functions that may have side
336 effects or notable algorithmic implications.
337 .It Em RETURN VALUES
338 This section documents the
339 return values of functions in sections 2, 3, and 9.
342 .Sx \&Rv .
343 .It Em CONTEXT
344 This section lists the contexts in which functions can be called in section 9.
345 The contexts are user, kernel, or interrupt.
346 .It Em ENVIRONMENT
347 Lists the environment variables used by the utility,
348 and explains the syntax and semantics of their values.
350 .Xr environ 5
351 manual provides examples of typical content and formatting.
354 .Sx \&Ev .
355 .It Em FILES
356 Documents files used.
357 It's helpful to document both the file name and a short description of how
358 the file is used (created, modified, etc.).
361 .Sx \&Pa .
362 .It Em EXIT STATUS
363 This section documents the
364 command exit status for sections 1 and 1M.
365 Historically, this information was described in
366 .Em DIAGNOSTICS ,
367 a practise that is now discouraged.
370 .Sx \&Ex .
371 .It Em EXAMPLES
372 Example usages.
373 This often contains snippets of well-formed, well-tested invocations.
374 Make sure that examples work properly!
375 .It Em DIAGNOSTICS
376 Documents error and diagnostic messages displayed to the user or
377 sent to logs.
378 Note that exit status and return values should be documented in the
379 .Em EXIT STATUS
381 .Em RETURN VALUES
382 sections.
385 .Sx \&Bl
386 .Fl diag .
387 .It Em ERRORS
388 Documents error handling in sections 2, 3, and 9.
391 .Sx \&Er .
392 .It Em ARCHITECTURE
393 This section is usually absent, but will be present when the
394 interface is specific to one or more architectures.
395 .It Em CODE SET INDEPENDENCE
396 Indicates whether the interface operates correctly with various different
397 code sets.
398 True independent code sets will support not only ASCII and Extended UNIX
399 Codesets (EUC), but also other multi-byte encodings such as UTF-8 and GB2312.
401 Generally there will be some limitations that are fairly standard.
403 .Xr standards 5
404 for more information about some of these.
405 Most interfaces should support at least UTF-8 in addition to ASCII.
406 .It Em INTERFACE STABILITY
407 Indicates the level of commitment to the interface.
408 Interfaces can be described with in the following ways:
409 .Bl -tag -width Ds
410 .It Nm Standard
411 Indicates that the interface is defined by one or more standards bodies.
412 Generally, changes to the interface will be carefully managed to conform
413 to the relevant standards.
414 These interfaces are generally the most suitable for use in portable programs.
415 .It Nm Committed
416 Indicates that the interface is intended to be preserved for the long-haul, and
417 will rarely, if ever change, and never without notification (barring
418 extraordinary and extenuating circumstances).
419 These interfaces are preferred over other interfaces with the exeception of
420 .Nm Standard
421 interfaces.
422 .It Nm Uncommitted
423 Indicates that the interface may change.
424 Generally, changes to these interfaces should be infrequent, and some effort
425 will be made to address compatibility considerations when changing or removing
426 such interfaces.
427 However, there is no firm commitment to the preservation of the interface.
428 Most often this is applied to interfaces where operational experience with the
429 interface is still limited and some need to change may be anticipated.
431 Consumers should expect to revalidate any
432 .Nm Uncommitted
433 interfaces when crossing release boundaries.
434 Products intended for use on many releases or intended to support compatibility
435 with future releases should avoid these interfaces.
436 .It Nm Volatile
437 The interface can change at any time for any reason.
438 Often this relates to interfaces that are part of external software components
439 that are still evolving rapidly.
440 Consumers should not expect that the interface (either binary or source level)
441 will be unchanged from one release to the next.
442 .It Nm Not-an-Interface
443 Describes something that is specifically not intended for programmatic
444 consumption.
445 For example, specific human-readable output, or the layout of graphical items on
446 a user interface, may be described this way.
447 Generally programmatic alternatives to these will be available, and should be
448 used when programmatic consumption is needed.
449 .It Nm Private
450 This is an internal interface.
451 Generally these interfaces should only be used within the project, and should
452 not be used by other programs or modules.
453 The interface can and will change without notice as the project needs, at any
454 time.
456 Most often, Private interfaces will lack any documentation whatsoever, and
457 generally any undocumented interface can be assumed to be Private.
458 .It Nm Obsolete
459 The interface is not intended for use in new projects or programs, and may
460 be removed at a future date.
462 .Nm Obsolete
463 word is a modifier that can
464 be applied to other commitment levels.
465 For example an
466 .Nm Obsolete Committed
467 interface is unlikely to be removed or changed, but nonetheless new use
468 is discouraged (perhaps a better newer alternative is present).
470 .It Em MT-LEVEL
471 This section describes considerations for the interface when used within
472 programs that use multiple threads.
473 More discussion of these considerations is made in the MT-Level section of
474 .Xr attributes 5 .
475 The interface can be described in the following ways.
476 .Bl -tag -width Ds
477 .It Nm Safe
478 Indicates the interface is safe for use within multiple threads.
479 There may be additional caveats that apply, in which case those will be
480 described.
481 Note that some interfaces have semantics which may affect other threads, but
482 these should be an intrinsic part of the interface rather than an unexpected
483 side effect.
484 For example, closing a file in one thread will cause that file to be closed in
485 all threads.
486 .It Nm Unsafe
487 Indicates the interface is unsuitable for concurrent use within multiple
488 threads.
489 A threaded application may still make use of the interface, but will be required
490 to provide external synchronization means to ensure that only a single thread
491 calls the interface at a time.
492 .It Nm MT-Safe
493 Indicates that the interface is not only safe for concurrent use, but is
494 designed for such use.
495 For example, a
496 .Nm Safe
497 interface may make use of a global lock to provide safety, but at reduced
498 internal concurrency, whereas an
499 .Nm MT-Safe
500 interface will be designed to be efficient even when used concurrently.
501 .It Nm Async-Signal-Safe
502 Indicates that the library is safe for use within a signal handler.
504 .Nm MT-Safe
505 interface can be made
506 .Nm Async-Signal-Safe
507 by ensuring that it blocks signals when acquiring locks.
508 .It Nm Safe with Exceptions
509 As for
510 .Nm Safe
511 but with specific exceptions noted.
512 .It Nm MT-Safe with Exceptions
513 As for
514 .Nm MT-Safe
515 but with specific exceptions noted.
517 .It Em SECURITY
518 Documents any security precautions that operators should consider.
519 .It Em SEE ALSO
520 References other manuals with related topics.
521 This section should exist for most manuals.
522 Cross-references should conventionally be ordered first by section, then
523 alphabetically (ignoring case).
525 References to other documentation concerning the topic of the manual page,
526 for example authoritative books or journal articles, may also be
527 provided in this section.
530 .Sx \&Rs
532 .Sx \&Xr .
533 .It Em STANDARDS
534 References any standards implemented or used.
535 If not adhering to any standards, the
536 .Em HISTORY
537 section should be used instead.
540 .Sx \&St .
541 .It Em HISTORY
542 A brief history of the subject, including where it was first implemented,
543 and when it was ported to or reimplemented for the operating system at hand.
544 .It Em AUTHORS
545 Credits to the person or persons who wrote the code and/or documentation.
546 Authors should generally be noted by both name and email address.
549 .Sx \&An .
550 .It Em CAVEATS
551 Common misuses and misunderstandings should be explained
552 in this section.
553 .It Em BUGS
554 Known bugs, limitations, and work-arounds should be described
555 in this section.
557 .Sh MACRO OVERVIEW
558 This overview is sorted such that macros of similar purpose are listed
559 together, to help find the best macro for any given purpose.
560 Deprecated macros are not included in the overview, but can be found below
561 in the alphabetical
562 .Sx MACRO REFERENCE .
563 .Ss Document preamble and NAME section macros
564 .Bl -column "Brq, Bro, Brc" description
565 .It Sx \&Dd Ta document date: Ar month day , year
566 .It Sx \&Dt Ta document title: Ar TITLE SECTION Op Ar arch
567 .It Sx \&Os Ta operating system version: Op Ar system Op Ar version
568 .It Sx \&Nm Ta document name (one argument)
569 .It Sx \&Nd Ta document description (one line)
571 .Ss Sections and cross references
572 .Bl -column "Brq, Bro, Brc" description
573 .It Sx \&Sh Ta section header (one line)
574 .It Sx \&Ss Ta subsection header (one line)
575 .It Sx \&Sx Ta internal cross reference to a section or subsection
576 .It Sx \&Xr Ta cross reference to another manual page: Ar name section
577 .It Sx \&Pp , \&Lp Ta start a text paragraph (no arguments)
579 .Ss Displays and lists
580 .Bl -column "Brq, Bro, Brc" description
581 .It Sx \&Bd , \&Ed Ta display block:
582 .Fl Ar type
583 .Op Fl offset Ar width
584 .Op Fl compact
585 .It Sx \&D1 Ta indented display (one line)
586 .It Sx \&Dl Ta indented literal display (one line)
587 .It Sx \&Ql Ta in-line literal display: Ql text
588 .It Sx \&Bl , \&El Ta list block:
589 .Fl Ar type
590 .Op Fl width Ar val
591 .Op Fl offset Ar val
592 .Op Fl compact
593 .It Sx \&It Ta list item (syntax depends on Fl Ar type )
594 .It Sx \&Ta Ta table cell separator in Sx \&Bl Fl column No lists
595 .It Sx \&Rs , \&%* , \&Re Ta bibliographic block (references)
597 .Ss Spacing control
598 .Bl -column "Brq, Bro, Brc" description
599 .It Sx \&Pf Ta prefix, no following horizontal space (one argument)
600 .It Sx \&Ns Ta roman font, no preceding horizontal space (no arguments)
601 .It Sx \&Ap Ta apostrophe without surrounding whitespace (no arguments)
602 .It Sx \&Sm Ta switch horizontal spacing mode: Op Cm on | off
603 .It Sx \&Bk , \&Ek Ta keep block: Fl words
604 .It Sx \&br Ta force output line break in text mode (no arguments)
605 .It Sx \&sp Ta force vertical space: Op Ar height
607 .Ss Semantic markup for command line utilities:
608 .Bl -column "Brq, Bro, Brc" description
609 .It Sx \&Nm Ta start a SYNOPSIS block with the name of a utility
610 .It Sx \&Fl Ta command line options (flags) (>=0 arguments)
611 .It Sx \&Cm Ta command modifier (>0 arguments)
612 .It Sx \&Ar Ta command arguments (>=0 arguments)
613 .It Sx \&Op , \&Oo , \&Oc Ta optional syntax elements (enclosure)
614 .It Sx \&Ic Ta internal or interactive command (>0 arguments)
615 .It Sx \&Ev Ta environmental variable (>0 arguments)
616 .It Sx \&Pa Ta file system path (>=0 arguments)
618 .Ss Semantic markup for function libraries:
619 .Bl -column "Brq, Bro, Brc" description
620 .It Sx \&Lb Ta function library (one argument)
621 .It Sx \&In Ta include file (one argument)
622 .It Sx \&Fd Ta other preprocessor directive (>0 arguments)
623 .It Sx \&Ft Ta function type (>0 arguments)
624 .It Sx \&Fo , \&Fc Ta function block: Ar funcname
625 .It Sx \&Fn Ta function name:
626 .Op Ar functype
627 .Ar funcname
629 .Op Ar argtype
630 .Ar argname
632 .It Sx \&Fa Ta function argument (>0 arguments)
633 .It Sx \&Vt Ta variable type (>0 arguments)
634 .It Sx \&Va Ta variable name (>0 arguments)
635 .It Sx \&Dv Ta defined variable or preprocessor constant (>0 arguments)
636 .It Sx \&Er Ta error constant (>0 arguments)
637 .It Sx \&Ev Ta environmental variable (>0 arguments)
639 .Ss Various semantic markup:
640 .Bl -column "Brq, Bro, Brc" description
641 .It Sx \&An Ta author name (>0 arguments)
642 .It Sx \&Lk Ta hyperlink: Ar uri Op Ar name
643 .It Sx \&Mt Ta Do mailto Dc hyperlink: Ar address
644 .It Sx \&Cd Ta kernel configuration declaration (>0 arguments)
645 .It Sx \&Ad Ta memory address (>0 arguments)
646 .It Sx \&Ms Ta mathematical symbol (>0 arguments)
648 .Ss Physical markup
649 .Bl -column "Brq, Bro, Brc" description
650 .It Sx \&Em Ta italic font or underline (emphasis) (>0 arguments)
651 .It Sx \&Sy Ta boldface font (symbolic) (>0 arguments)
652 .It Sx \&Li Ta typewriter font (literal) (>0 arguments)
653 .It Sx \&No Ta return to roman font (normal) (no arguments)
654 .It Sx \&Bf , \&Ef Ta font block:
655 .Op Fl Ar type | Cm \&Em | \&Li | \&Sy
657 .Ss Physical enclosures
658 .Bl -column "Brq, Bro, Brc" description
659 .It Sx \&Dq , \&Do , \&Dc Ta enclose in typographic double quotes: Dq text
660 .It Sx \&Qq , \&Qo , \&Qc Ta enclose in typewriter double quotes: Qq text
661 .It Sx \&Sq , \&So , \&Sc Ta enclose in single quotes: Sq text
662 .It Sx \&Pq , \&Po , \&Pc Ta enclose in parentheses: Pq text
663 .It Sx \&Bq , \&Bo , \&Bc Ta enclose in square brackets: Bq text
664 .It Sx \&Brq , \&Bro , \&Brc Ta enclose in curly braces: Brq text
665 .It Sx \&Aq , \&Ao , \&Ac Ta enclose in angle brackets: Aq text
666 .It Sx \&Eo , \&Ec Ta generic enclosure
668 .Ss Text production
669 .Bl -column "Brq, Bro, Brc" description
670 .It Sx \&Ex Fl std Ta standard command exit values: Op Ar utility ...
671 .It Sx \&Rv Fl std Ta standard function return values: Op Ar function ...
672 .It Sx \&St Ta reference to a standards document (one argument)
673 .It Sx \&At Ta At
674 .It Sx \&Bx Ta Bx
675 .It Sx \&Bsx Ta Bsx
676 .It Sx \&Nx Ta Nx
677 .It Sx \&Fx Ta Fx
678 .It Sx \&Ox Ta Ox
679 .It Sx \&Dx Ta Dx
681 .Sh MACRO REFERENCE
682 This section is a canonical reference of all macros, arranged
683 alphabetically.
684 For the scoping of individual macros, see
685 .Sx MACRO SYNTAX .
686 .Ss \&%A
687 Author name of an
688 .Sx \&Rs
689 block.
690 Multiple authors should each be accorded their own
691 .Sx \%%A
692 line.
693 Author names should be ordered with full or abbreviated forename(s)
694 first, then full surname.
695 .Ss \&%B
696 Book title of an
697 .Sx \&Rs
698 block.
699 This macro may also be used in a non-bibliographic context when
700 referring to book titles.
701 .Ss \&%C
702 Publication city or location of an
703 .Sx \&Rs
704 block.
705 .Ss \&%D
706 Publication date of an
707 .Sx \&Rs
708 block.
709 Recommended formats of arguments are
710 .Ar month day , year
711 or just
712 .Ar year .
713 .Ss \&%I
714 Publisher or issuer name of an
715 .Sx \&Rs
716 block.
717 .Ss \&%J
718 Journal name of an
719 .Sx \&Rs
720 block.
721 .Ss \&%N
722 Issue number (usually for journals) of an
723 .Sx \&Rs
724 block.
725 .Ss \&%O
726 Optional information of an
727 .Sx \&Rs
728 block.
729 .Ss \&%P
730 Book or journal page number of an
731 .Sx \&Rs
732 block.
733 .Ss \&%Q
734 Institutional author (school, government, etc.) of an
735 .Sx \&Rs
736 block.
737 Multiple institutional authors should each be accorded their own
738 .Sx \&%Q
739 line.
740 .Ss \&%R
741 Technical report name of an
742 .Sx \&Rs
743 block.
744 .Ss \&%T
745 Article title of an
746 .Sx \&Rs
747 block.
748 This macro may also be used in a non-bibliographical context when
749 referring to article titles.
750 .Ss \&%U
751 URI of reference document.
752 .Ss \&%V
753 Volume number of an
754 .Sx \&Rs
755 block.
756 .Ss \&Ac
757 Close an
758 .Sx \&Ao
759 block.
760 Does not have any tail arguments.
761 .Ss \&Ad
762 Memory address.
763 Do not use this for postal addresses.
765 Examples:
766 .Dl \&.Ad [0,$]
767 .Dl \&.Ad 0x00000000
768 .Ss \&An
769 Author name.
770 Can be used both for the authors of the program, function, or driver
771 documented in the manual, or for the authors of the manual itself.
772 Requires either the name of an author or one of the following arguments:
774 .Bl -tag -width "-nosplitX" -offset indent -compact
775 .It Fl split
776 Start a new output line before each subsequent invocation of
777 .Sx \&An .
778 .It Fl nosplit
779 The opposite of
780 .Fl split .
783 The default is
784 .Fl nosplit .
785 The effect of selecting either of the
786 .Fl split
787 modes ends at the beginning of the
788 .Em AUTHORS
789 section.
790 In the
791 .Em AUTHORS
792 section, the default is
793 .Fl nosplit
794 for the first author listing and
795 .Fl split
796 for all other author listings.
798 Examples:
799 .Dl \&.An -nosplit
800 .Dl \&.An Kristaps Dzonsons \&Aq \&Mt kristaps@bsd.lv
801 .Ss \&Ao
802 Begin a block enclosed by angle brackets.
803 Does not have any head arguments.
805 Examples:
806 .Dl \&.Fl -key= \&Ns \&Ao \&Ar val \&Ac
808 See also
809 .Sx \&Aq .
810 .Ss \&Ap
811 Inserts an apostrophe without any surrounding whitespace.
812 This is generally used as a grammatical device when referring to the verb
813 form of a function.
815 Examples:
816 .Dl \&.Fn execve \&Ap d
817 .Ss \&Aq
818 Encloses its arguments in angle brackets.
820 Examples:
821 .Dl \&.Fl -key= \&Ns \&Aq \&Ar val
823 .Em Remarks :
824 this macro is often abused for rendering URIs, which should instead use
825 .Sx \&Lk
827 .Sx \&Mt ,
828 or to note pre-processor
829 .Dq Li #include
830 statements, which should use
831 .Sx \&In .
833 See also
834 .Sx \&Ao .
835 .Ss \&Ar
836 Command arguments.
837 If an argument is not provided, the string
838 .Dq file ...\&
839 is used as a default.
841 Examples:
842 .Dl ".Fl o Ar file"
843 .Dl ".Ar"
844 .Dl ".Ar arg1 , arg2 ."
846 The arguments to the
847 .Sx \&Ar
848 macro are names and placeholders for command arguments;
849 for fixed strings to be passed verbatim as arguments, use
850 .Sx \&Fl
852 .Sx \&Cm .
853 .Ss \&At
854 Formats an
856 version.
857 Accepts one optional argument:
859 .Bl -tag -width "v[1-7] | 32vX" -offset indent -compact
860 .It Cm v[1-7] | 32v
861 A version of
862 .At .
863 .It Cm III
864 .At III .
865 .It Cm V[.[1-4]]?
866 A version of
867 .At V .
870 Note that these arguments do not begin with a hyphen.
872 Examples:
873 .Dl \&.At
874 .Dl \&.At III
875 .Dl \&.At V.1
877 See also
878 .Sx \&Bsx ,
879 .Sx \&Bx ,
880 .Sx \&Dx ,
881 .Sx \&Fx ,
882 .Sx \&Nx ,
884 .Sx \&Ox .
885 .Ss \&Bc
886 Close a
887 .Sx \&Bo
888 block.
889 Does not have any tail arguments.
890 .Ss \&Bd
891 Begin a display block.
892 Its syntax is as follows:
893 .Bd -ragged -offset indent
894 .Pf \. Sx \&Bd
895 .Fl Ns Ar type
896 .Op Fl offset Ar width
897 .Op Fl compact
900 Display blocks are used to select a different indentation and
901 justification than the one used by the surrounding text.
902 They may contain both macro lines and text lines.
903 By default, a display block is preceded by a vertical space.
906 .Ar type
907 must be one of the following:
908 .Bl -tag -width 13n -offset indent
909 .It Fl centered
910 Produce one output line from each input line, and center-justify each line.
911 Using this display type is not recommended; many
913 implementations render it poorly.
914 .It Fl filled
915 Change the positions of line breaks to fill each line, and left- and
916 right-justify the resulting block.
917 .It Fl literal
918 Produce one output line from each input line,
919 and do not justify the block at all.
920 Preserve white space as it appears in the input.
921 Always use a constant-width font.
922 Use this for displaying source code.
923 .It Fl ragged
924 Change the positions of line breaks to fill each line, and left-justify
925 the resulting block.
926 .It Fl unfilled
927 The same as
928 .Fl literal ,
929 but using the same font as for normal text, which is a variable width font
930 if supported by the output device.
934 .Ar type
935 must be provided first.
936 Additional arguments may follow:
937 .Bl -tag -width 13n -offset indent
938 .It Fl offset Ar width
939 Indent the display by the
940 .Ar width ,
941 which may be one of the following:
942 .Bl -item
944 One of the pre-defined strings
945 .Cm indent ,
946 the width of a standard indentation (six constant width characters);
947 .Cm indent-two ,
948 twice
949 .Cm indent ;
950 .Cm left ,
951 which has no effect;
952 .Cm right ,
953 which justifies to the right margin; or
954 .Cm center ,
955 which aligns around an imagined center axis.
957 A macro invocation, which selects a predefined width
958 associated with that macro.
959 The most popular is the imaginary macro
960 .Ar \&Ds ,
961 which resolves to
962 .Sy 6n .
964 A scaling width as described in
965 .Xr mandoc_roff 5 .
967 An arbitrary string, which indents by the length of this string.
970 When the argument is missing,
971 .Fl offset
972 is ignored.
973 .It Fl compact
974 Do not assert vertical space before the display.
977 Examples:
978 .Bd -literal -offset indent
979 \&.Bd \-literal \-offset indent \-compact
980    Hello       world.
981 \&.Ed
984 See also
985 .Sx \&D1
987 .Sx \&Dl .
988 .Ss \&Bf
989 Change the font mode for a scoped block of text.
990 Its syntax is as follows:
991 .Bd -ragged -offset indent
992 .Pf \. Sx \&Bf
994 .Fl emphasis | literal | symbolic |
995 .Cm \&Em | \&Li | \&Sy
1000 .Fl emphasis
1002 .Cm \&Em
1003 argument are equivalent, as are
1004 .Fl symbolic
1006 .Cm \&Sy ,
1008 .Fl literal
1010 .Cm \&Li .
1011 Without an argument, this macro does nothing.
1012 The font mode continues until broken by a new font mode in a nested
1013 scope or
1014 .Sx \&Ef
1015 is encountered.
1017 See also
1018 .Sx \&Li ,
1019 .Sx \&Ef ,
1020 .Sx \&Em ,
1022 .Sx \&Sy .
1023 .Ss \&Bk
1024 For each macro, keep its output together on the same output line,
1025 until the end of the macro or the end of the input line is reached,
1026 whichever comes first.
1027 Line breaks in text lines are unaffected.
1028 The syntax is as follows:
1030 .D1 Pf \. Sx \&Bk Fl words
1033 .Fl words
1034 argument is required; additional arguments are ignored.
1036 The following example will not break within each
1037 .Sx \&Op
1038 macro line:
1039 .Bd -literal -offset indent
1040 \&.Bk \-words
1041 \&.Op Fl f Ar flags
1042 \&.Op Fl o Ar output
1043 \&.Ek
1046 Be careful in using over-long lines within a keep block!
1047 Doing so will clobber the right margin.
1048 .Ss \&Bl
1049 Begin a list.
1050 Lists consist of items specified using the
1051 .Sx \&It
1052 macro, containing a head or a body or both.
1053 The list syntax is as follows:
1054 .Bd -ragged -offset indent
1055 .Pf \. Sx \&Bl
1056 .Fl Ns Ar type
1057 .Op Fl width Ar val
1058 .Op Fl offset Ar val
1059 .Op Fl compact
1060 .Op HEAD ...
1063 The list
1064 .Ar type
1065 is mandatory and must be specified first.
1067 .Fl width
1069 .Fl offset
1070 arguments accept macro names as described for
1071 .Sx \&Bd
1072 .Fl offset ,
1073 scaling widths as described in
1074 .Xr mandoc_roff 5 ,
1075 or use the length of the given string.
1077 .Fl offset
1078 is a global indentation for the whole list, affecting both item heads
1079 and bodies.
1080 For those list types supporting it, the
1081 .Fl width
1082 argument requests an additional indentation of item bodies,
1083 to be added to the
1084 .Fl offset .
1085 Unless the
1086 .Fl compact
1087 argument is specified, list entries are separated by vertical space.
1089 A list must specify one of the following list types:
1090 .Bl -tag -width 12n -offset indent
1091 .It Fl bullet
1092 No item heads can be specified, but a bullet will be printed at the head
1093 of each item.
1094 Item bodies start on the same output line as the bullet
1095 and are indented according to the
1096 .Fl width
1097 argument.
1098 .It Fl column
1099 A columnated list.
1101 .Fl width
1102 argument has no effect; instead, each argument specifies the width
1103 of one column, using either the scaling width syntax described in
1104 .Xr mandoc_roff 5
1105 or the string length of the argument.
1106 If the first line of the body of a
1107 .Fl column
1108 list is not an
1109 .Sx \&It
1110 macro line,
1111 .Sx \&It
1112 contexts spanning one input line each are implied until an
1113 .Sx \&It
1114 macro line is encountered, at which point items start being interpreted as
1115 described in the
1116 .Sx \&It
1117 documentation.
1118 .It Fl dash
1119 Like
1120 .Fl bullet ,
1121 except that dashes are used in place of bullets.
1122 .It Fl diag
1123 Like
1124 .Fl inset ,
1125 except that item heads are not parsed for macro invocations.
1126 Most often used in the
1127 .Em DIAGNOSTICS
1128 section with error constants in the item heads.
1129 .It Fl enum
1130 A numbered list.
1131 No item heads can be specified.
1132 Formatted like
1133 .Fl bullet ,
1134 except that cardinal numbers are used in place of bullets,
1135 starting at 1.
1136 .It Fl hang
1137 Like
1138 .Fl tag ,
1139 except that the first lines of item bodies are not indented, but follow
1140 the item heads like in
1141 .Fl inset
1142 lists.
1143 .It Fl hyphen
1144 Synonym for
1145 .Fl dash .
1146 .It Fl inset
1147 Item bodies follow items heads on the same line, using normal inter-word
1148 spacing.
1149 Bodies are not indented, and the
1150 .Fl width
1151 argument is ignored.
1152 .It Fl item
1153 No item heads can be specified, and none are printed.
1154 Bodies are not indented, and the
1155 .Fl width
1156 argument is ignored.
1157 .It Fl ohang
1158 Item bodies start on the line following item heads and are not indented.
1160 .Fl width
1161 argument is ignored.
1162 .It Fl tag
1163 Item bodies are indented according to the
1164 .Fl width
1165 argument.
1166 When an item head fits inside the indentation, the item body follows
1167 this head on the same output line.
1168 Otherwise, the body starts on the output line following the head.
1171 Lists may be nested within lists and displays.
1172 Nesting of
1173 .Fl column
1175 .Fl enum
1176 lists may not be portable.
1178 See also
1179 .Sx \&El
1181 .Sx \&It .
1182 .Ss \&Bo
1183 Begin a block enclosed by square brackets.
1184 Does not have any head arguments.
1186 Examples:
1187 .Bd -literal -offset indent -compact
1188 \&.Bo 1 ,
1189 \&.Dv BUFSIZ \&Bc
1192 See also
1193 .Sx \&Bq .
1194 .Ss \&Bq
1195 Encloses its arguments in square brackets.
1197 Examples:
1198 .Dl \&.Bq 1 , \&Dv BUFSIZ
1200 .Em Remarks :
1201 this macro is sometimes abused to emulate optional arguments for
1202 commands; the correct macros to use for this purpose are
1203 .Sx \&Op ,
1204 .Sx \&Oo ,
1206 .Sx \&Oc .
1208 See also
1209 .Sx \&Bo .
1210 .Ss \&Brc
1211 Close a
1212 .Sx \&Bro
1213 block.
1214 Does not have any tail arguments.
1215 .Ss \&Bro
1216 Begin a block enclosed by curly braces.
1217 Does not have any head arguments.
1219 Examples:
1220 .Bd -literal -offset indent -compact
1221 \&.Bro 1 , ... ,
1222 \&.Va n \&Brc
1225 See also
1226 .Sx \&Brq .
1227 .Ss \&Brq
1228 Encloses its arguments in curly braces.
1230 Examples:
1231 .Dl \&.Brq 1 , ... , \&Va n
1233 See also
1234 .Sx \&Bro .
1235 .Ss \&Bsx
1236 Format the
1237 .Bsx
1238 version provided as an argument, or a default value if
1239 no argument is provided.
1241 Examples:
1242 .Dl \&.Bsx 1.0
1243 .Dl \&.Bsx
1245 See also
1246 .Sx \&At ,
1247 .Sx \&Bx ,
1248 .Sx \&Dx ,
1249 .Sx \&Fx ,
1250 .Sx \&Nx ,
1252 .Sx \&Ox .
1253 .Ss \&Bt
1254 Supported only for compatibility, do not use this in new manuals.
1255 Prints
1256 .Dq is currently in beta test.
1257 .Ss \&Bx
1258 Format the
1260 version provided as an argument, or a default value if no
1261 argument is provided.
1263 Examples:
1264 .Dl \&.Bx 4.3 Tahoe
1265 .Dl \&.Bx 4.4
1266 .Dl \&.Bx
1268 See also
1269 .Sx \&At ,
1270 .Sx \&Bsx ,
1271 .Sx \&Dx ,
1272 .Sx \&Fx ,
1273 .Sx \&Nx ,
1275 .Sx \&Ox .
1276 .Ss \&Cd
1277 Kernel configuration declaration.
1278 It is found in pages for
1280 and not used here.
1282 Examples:
1283 .Dl \&.Cd device le0 at scode?
1285 .Em Remarks :
1286 this macro is commonly abused by using quoted literals to retain
1287 whitespace and align consecutive
1288 .Sx \&Cd
1289 declarations.
1290 This practise is discouraged.
1291 .Ss \&Cm
1292 Command modifiers.
1293 Typically used for fixed strings passed as arguments, unless
1294 .Sx \&Fl
1295 is more appropriate.
1296 Also useful when specifying configuration options or keys.
1298 Examples:
1299 .Dl ".Nm mt Fl f Ar device Cm rewind"
1300 .Dl ".Nm ps Fl o Cm pid , Ns Cm command"
1301 .Dl ".Nm dd Cm if= Ns Ar file1 Cm of= Ns Ar file2"
1302 .Dl ".Cm IdentityFile Pa ~/.ssh/id_rsa"
1303 .Dl ".Cm LogLevel Dv DEBUG"
1304 .Ss \&D1
1305 One-line indented display.
1306 This is formatted by the default rules and is useful for simple indented
1307 statements.
1308 It is followed by a newline.
1310 Examples:
1311 .Dl \&.D1 \&Fl abcdefgh
1313 See also
1314 .Sx \&Bd
1316 .Sx \&Dl .
1317 .Ss \&Db
1318 This macro is obsolete.
1319 No replacement is needed.
1320 It is ignored by
1321 .Xr mandoc 1
1322 and groff including its arguments.
1323 It was formerly used to toggle a debugging mode.
1324 .Ss \&Dc
1325 Close a
1326 .Sx \&Do
1327 block.
1328 Does not have any tail arguments.
1329 .Ss \&Dd
1330 Document date for display in the page footer.
1331 This is the mandatory first macro of any
1333 manual.
1334 Its syntax is as follows:
1336 .D1 Pf \. Sx \&Dd Ar month day , year
1339 .Ar month
1340 is the full English month name, the
1341 .Ar day
1342 is an optionally zero-padded numeral, and the
1343 .Ar year
1344 is the full four-digit year.
1346 Other arguments are not portable; the
1347 .Xr mandoc 1
1348 utility handles them as follows:
1349 .Bl -dash -offset 3n -compact
1351 To have the date automatically filled in by the
1353 version of
1354 .Xr cvs 1 ,
1355 the special string
1356 .Dq $\&Mdocdate$
1357 can be given as an argument.
1359 The traditional, purely numeric
1360 .Xr man 5
1361 format
1362 .Ar year Ns \(en Ns Ar month Ns \(en Ns Ar day
1363 is accepted, too.
1365 If a date string cannot be parsed, it is used verbatim.
1367 If no date string is given, the current date is used.
1370 Examples:
1371 .Dl \&.Dd $\&Mdocdate$
1372 .Dl \&.Dd $\&Mdocdate: July 21 2007$
1373 .Dl \&.Dd July 21, 2007
1375 See also
1376 .Sx \&Dt
1378 .Sx \&Os .
1379 .Ss \&Dl
1380 One-line indented display.
1381 This is formatted as literal text and is useful for commands and
1382 invocations.
1383 It is followed by a newline.
1385 Examples:
1386 .Dl \&.Dl % mandoc mdoc.5 \e(ba less
1388 See also
1389 .Sx \&Ql ,
1390 .Sx \&Bd
1391 .Fl literal ,
1393 .Sx \&D1 .
1394 .Ss \&Do
1395 Begin a block enclosed by double quotes.
1396 Does not have any head arguments.
1398 Examples:
1399 .Bd -literal -offset indent -compact
1400 \&.Do
1401 April is the cruellest month
1402 \&.Dc
1403 \e(em T.S. Eliot
1406 See also
1407 .Sx \&Dq .
1408 .Ss \&Dq
1409 Encloses its arguments in
1410 .Dq typographic
1411 double-quotes.
1413 Examples:
1414 .Bd -literal -offset indent -compact
1415 \&.Dq April is the cruellest month
1416 \e(em T.S. Eliot
1419 See also
1420 .Sx \&Qq ,
1421 .Sx \&Sq ,
1423 .Sx \&Do .
1424 .Ss \&Dt
1425 Document title for display in the page header.
1426 This is the mandatory second macro of any
1428 file.
1429 Its syntax is as follows:
1430 .Bd -ragged -offset indent
1431 .Pf \. Sx \&Dt
1432 .Ar TITLE
1433 .Ar section
1434 .Op Ar arch
1437 Its arguments are as follows:
1438 .Bl -tag -width section -offset 2n
1439 .It Ar TITLE
1440 The document's title (name), defaulting to
1441 .Dq UNTITLED
1442 if unspecified.
1443 To achieve a uniform appearance of page header lines,
1444 it should by convention be all caps.
1445 .It Ar SECTION
1446 The manual section.
1447 It should correspond to the manual's filename suffix and defaults to
1448 the empty string if unspecified.
1449 This field is optional.
1450 To achieve a uniform appearance of page header lines,
1451 it should by convention be all caps.
1452 .It Ar arch
1453 This specifies the machine architecture a manual page applies to,
1454 where relevant.
1456 .Ss \&Dv
1457 Defined variables such as preprocessor constants, constant symbols,
1458 enumeration values, and so on.
1460 Examples:
1461 .Dl \&.Dv NULL
1462 .Dl \&.Dv BUFSIZ
1463 .Dl \&.Dv STDOUT_FILENO
1465 See also
1466 .Sx \&Er
1468 .Sx \&Ev
1469 for special-purpose constants,
1470 .Sx \&Va
1471 for variable symbols, and
1472 .Sx \&Fd
1473 for listing preprocessor variable definitions in the
1474 .Em SYNOPSIS .
1475 .Ss \&Dx
1476 Format the
1478 version provided as an argument, or a default
1479 value if no argument is provided.
1481 Examples:
1482 .Dl \&.Dx 2.4.1
1483 .Dl \&.Dx
1485 See also
1486 .Sx \&At ,
1487 .Sx \&Bsx ,
1488 .Sx \&Bx ,
1489 .Sx \&Fx ,
1490 .Sx \&Nx ,
1492 .Sx \&Ox .
1493 .Ss \&Ec
1494 Close a scope started by
1495 .Sx \&Eo .
1496 Its syntax is as follows:
1498 .D1 Pf \. Sx \&Ec Op Ar TERM
1501 .Ar TERM
1502 argument is used as the enclosure tail, for example, specifying \e(rq
1503 will emulate
1504 .Sx \&Dc .
1505 .Ss \&Ed
1506 End a display context started by
1507 .Sx \&Bd .
1508 .Ss \&Ef
1509 End a font mode context started by
1510 .Sx \&Bf .
1511 .Ss \&Ek
1512 End a keep context started by
1513 .Sx \&Bk .
1514 .Ss \&El
1515 End a list context started by
1516 .Sx \&Bl .
1518 See also
1519 .Sx \&Bl
1521 .Sx \&It .
1522 .Ss \&Em
1523 Request an italic font.
1524 If the output device does not provide that, underline.
1526 This is most often used for stress emphasis (not to be confused with
1527 importance, see
1528 .Sx \&Sy ) .
1529 In the rare cases where none of the semantic markup macros fit,
1530 it can also be used for technical terms and placeholders, except
1531 that for syntax elements,
1532 .Sx \&Sy
1534 .Sx \&Ar
1535 are preferred, respectively.
1537 Examples:
1538 .Bd -literal -compact -offset indent
1539 Selected lines are those
1540 \&.Em not
1541 matching any of the specified patterns.
1542 Some of the functions use a
1543 \&.Em hold space
1544 to save the pattern space for subsequent retrieval.
1547 See also
1548 .Sx \&Bf ,
1549 .Sx \&Li ,
1550 .Sx \&No ,
1552 .Sx \&Sy .
1553 .Ss \&En
1554 This macro is obsolete.
1556 .Sx \&Eo
1557 or any of the other enclosure macros.
1559 It encloses its argument in the delimiters specified by the last
1560 .Sx \&Es
1561 macro.
1562 .Ss \&Eo
1563 An arbitrary enclosure.
1564 Its syntax is as follows:
1566 .D1 Pf \. Sx \&Eo Op Ar TERM
1569 .Ar TERM
1570 argument is used as the enclosure head, for example, specifying \e(lq
1571 will emulate
1572 .Sx \&Do .
1573 .Ss \&Er
1574 Error constants for definitions of the
1575 .Va errno
1576 libc global variable.
1577 This is most often used in section 2 and 3 manual pages.
1579 Examples:
1580 .Dl \&.Er EPERM
1581 .Dl \&.Er ENOENT
1583 See also
1584 .Sx \&Dv
1585 for general constants.
1586 .Ss \&Es
1587 This macro is obsolete.
1589 .Sx \&Eo
1590 or any of the other enclosure macros.
1592 It takes two arguments, defining the delimiters to be used by subsequent
1593 .Sx \&En
1594 macros.
1595 .Ss \&Ev
1596 Environmental variables such as those specified in
1597 .Xr environ 5 .
1599 Examples:
1600 .Dl \&.Ev DISPLAY
1601 .Dl \&.Ev PATH
1603 See also
1604 .Sx \&Dv
1605 for general constants.
1606 .Ss \&Ex
1607 Insert a standard sentence regarding command exit values of 0 on success
1608 and >0 on failure.
1609 This is most often used in section 1 and 1M manual pages.
1610 Its syntax is as follows:
1612 .D1 Pf \. Sx \&Ex Fl std Op Ar utility ...
1615 .Ar utility
1616 is not specified, the document's name set by
1617 .Sx \&Nm
1618 is used.
1619 Multiple
1620 .Ar utility
1621 arguments are treated as separate utilities.
1623 See also
1624 .Sx \&Rv .
1625 .Ss \&Fa
1626 Function argument or parameter.
1627 Its syntax is as follows:
1628 .Bd -ragged -offset indent
1629 .Pf \. Sx \&Fa
1631 .Op Ar argtype
1632 .Op Ar argname
1633 .Qc Ar \&...
1636 Each argument may be a name and a type (recommended for the
1637 .Em SYNOPSIS
1638 section), a name alone (for function invocations),
1639 or a type alone (for function prototypes).
1640 If both a type and a name are given or if the type consists of multiple
1641 words, all words belonging to the same function argument have to be
1642 given in a single argument to the
1643 .Sx \&Fa
1644 macro.
1646 This macro is also used to specify the field name of a structure.
1648 Most often, the
1649 .Sx \&Fa
1650 macro is used in the
1651 .Em SYNOPSIS
1652 within
1653 .Sx \&Fo
1654 blocks when documenting multi-line function prototypes.
1655 If invoked with multiple arguments, the arguments are separated by a
1656 comma.
1657 Furthermore, if the following macro is another
1658 .Sx \&Fa ,
1659 the last argument will also have a trailing comma.
1661 Examples:
1662 .Dl \&.Fa \(dqconst char *p\(dq
1663 .Dl \&.Fa \(dqint a\(dq \(dqint b\(dq \(dqint c\(dq
1664 .Dl \&.Fa \(dqchar *\(dq size_t
1666 See also
1667 .Sx \&Fo .
1668 .Ss \&Fc
1669 End a function context started by
1670 .Sx \&Fo .
1671 .Ss \&Fd
1672 Preprocessor directive, in particular for listing it in the
1673 .Em SYNOPSIS .
1674 Historically, it was also used to document include files.
1675 The latter usage has been deprecated in favour of
1676 .Sx \&In .
1678 Its syntax is as follows:
1679 .Bd -ragged -offset indent
1680 .Pf \. Sx \&Fd
1681 .Li # Ns Ar directive
1682 .Op Ar argument ...
1685 Examples:
1686 .Dl \&.Fd #define sa_handler __sigaction_u.__sa_handler
1687 .Dl \&.Fd #define SIO_MAXNFDS
1688 .Dl \&.Fd #ifdef FS_DEBUG
1689 .Dl \&.Ft void
1690 .Dl \&.Fn dbg_open \(dqconst char *\(dq
1691 .Dl \&.Fd #endif
1693 See also
1694 .Sx MANUAL STRUCTURE ,
1695 .Sx \&In ,
1697 .Sx \&Dv .
1698 .Ss \&Fl
1699 Command-line flag or option.
1700 Used when listing arguments to command-line utilities.
1701 Prints a fixed-width hyphen
1702 .Sq \-
1703 directly followed by each argument.
1704 If no arguments are provided, a hyphen is printed followed by a space.
1705 If the argument is a macro, a hyphen is prefixed to the subsequent macro
1706 output.
1708 Examples:
1709 .Dl ".Fl R Op Fl H | L | P"
1710 .Dl ".Op Fl 1AaCcdFfgHhikLlmnopqRrSsTtux"
1711 .Dl ".Fl type Cm d Fl name Pa CVS"
1712 .Dl ".Fl Ar signal_number"
1713 .Dl ".Fl o Fl"
1715 See also
1716 .Sx \&Cm .
1717 .Ss \&Fn
1718 A function name.
1719 Its syntax is as follows:
1720 .Bd -ragged -offset indent
1721 .Pf . Sx \&Fn
1722 .Op Ar functype
1723 .Ar funcname
1724 .Op Oo Ar argtype Oc Ar argname
1727 Function arguments are surrounded in parenthesis and
1728 are delimited by commas.
1729 If no arguments are specified, blank parenthesis are output.
1730 In the
1731 .Em SYNOPSIS
1732 section, this macro starts a new output line,
1733 and a blank line is automatically inserted between function definitions.
1735 Examples:
1736 .Dl \&.Fn \(dqint funcname\(dq \(dqint arg0\(dq \(dqint arg1\(dq
1737 .Dl \&.Fn funcname \(dqint arg0\(dq
1738 .Dl \&.Fn funcname arg0
1740 .Bd -literal -offset indent -compact
1741 \&.Ft functype
1742 \&.Fn funcname
1745 When referring to a function documented in another manual page, use
1746 .Sx \&Xr
1747 instead.
1748 See also
1749 .Sx MANUAL STRUCTURE ,
1750 .Sx \&Fo ,
1752 .Sx \&Ft .
1753 .Ss \&Fo
1754 Begin a function block.
1755 This is a multi-line version of
1756 .Sx \&Fn .
1757 Its syntax is as follows:
1759 .D1 Pf \. Sx \&Fo Ar funcname
1761 Invocations usually occur in the following context:
1762 .Bd -ragged -offset indent
1763 .Pf \. Sx \&Ft Ar functype
1765 .Pf \. Sx \&Fo Ar funcname
1767 .Pf \. Sx \&Fa Qq Ar argtype Ar argname
1769 \&.\.\.
1771 .Pf \. Sx \&Fc
1775 .Sx \&Fo
1776 scope is closed by
1777 .Sx \&Fc .
1779 See also
1780 .Sx MANUAL STRUCTURE ,
1781 .Sx \&Fa ,
1782 .Sx \&Fc ,
1784 .Sx \&Ft .
1785 .Ss \&Fr
1786 This macro is obsolete.
1787 No replacement markup is needed.
1789 It was used to show numerical function return values in an italic font.
1790 .Ss \&Ft
1791 A function type.
1792 Its syntax is as follows:
1794 .D1 Pf \. Sx \&Ft Ar functype
1796 In the
1797 .Em SYNOPSIS
1798 section, a new output line is started after this macro.
1800 Examples:
1801 .Dl \&.Ft int
1802 .Bd -literal -offset indent -compact
1803 \&.Ft functype
1804 \&.Fn funcname
1807 See also
1808 .Sx MANUAL STRUCTURE ,
1809 .Sx \&Fn ,
1811 .Sx \&Fo .
1812 .Ss \&Fx
1813 Format the
1815 version provided as an argument, or a default value
1816 if no argument is provided.
1818 Examples:
1819 .Dl \&.Fx 7.1
1820 .Dl \&.Fx
1822 See also
1823 .Sx \&At ,
1824 .Sx \&Bsx ,
1825 .Sx \&Bx ,
1826 .Sx \&Dx ,
1827 .Sx \&Nx ,
1829 .Sx \&Ox .
1830 .Ss \&Hf
1831 This macro is not implemented in
1832 .Xr mandoc 1 .
1834 It was used to include the contents of a (header) file literally.
1835 The syntax was:
1837 .Dl Pf . Sx \&Hf Ar filename
1838 .Ss \&Ic
1839 Designate an internal or interactive command.
1840 This is similar to
1841 .Sx \&Cm
1842 but used for instructions rather than values.
1844 Examples:
1845 .Dl \&.Ic :wq
1846 .Dl \&.Ic hash
1847 .Dl \&.Ic alias
1849 Note that using
1850 .Sx \&Bd Fl literal
1852 .Sx \&D1
1853 is preferred for displaying code; the
1854 .Sx \&Ic
1855 macro is used when referring to specific instructions.
1856 .Ss \&In
1857 The name of an include file.
1858 This macro is most often used in section 2, 3, and 9 manual pages.
1860 When invoked as the first macro on an input line in the
1861 .Em SYNOPSIS
1862 section, the argument is displayed in angle brackets
1863 and preceded by
1864 .Qq #include ,
1865 and a blank line is inserted in front if there is a preceding
1866 function declaration.
1867 In other sections, it only encloses its argument in angle brackets
1868 and causes no line break.
1870 Examples:
1871 .Dl \&.In sys/types.h
1873 See also
1874 .Sx MANUAL STRUCTURE .
1875 .Ss \&It
1876 A list item.
1877 The syntax of this macro depends on the list type.
1879 Lists
1880 of type
1881 .Fl hang ,
1882 .Fl ohang ,
1883 .Fl inset ,
1885 .Fl diag
1886 have the following syntax:
1888 .D1 Pf \. Sx \&It Ar args
1890 Lists of type
1891 .Fl bullet ,
1892 .Fl dash ,
1893 .Fl enum ,
1894 .Fl hyphen
1896 .Fl item
1897 have the following syntax:
1899 .D1 Pf \. Sx \&It
1901 with subsequent lines interpreted within the scope of the
1902 .Sx \&It
1903 until either a closing
1904 .Sx \&El
1905 or another
1906 .Sx \&It .
1909 .Fl tag
1910 list has the following syntax:
1912 .D1 Pf \. Sx \&It Op Cm args
1914 Subsequent lines are interpreted as with
1915 .Fl bullet
1916 and family.
1917 The line arguments correspond to the list's left-hand side; body
1918 arguments correspond to the list's contents.
1921 .Fl column
1922 list is the most complicated.
1923 Its syntax is as follows:
1925 .D1 Pf \. Sx \&It Ar cell Op <TAB> Ar cell ...
1926 .D1 Pf \. Sx \&It Ar cell Op Sx \&Ta Ar cell ...
1928 The arguments consist of one or more lines of text and macros
1929 representing a complete table line.
1930 Cells within the line are delimited by tabs or by the special
1931 .Sx \&Ta
1932 block macro.
1933 The tab cell delimiter may only be used within the
1934 .Sx \&It
1935 line itself; on following lines, only the
1936 .Sx \&Ta
1937 macro can be used to delimit cells, and
1938 .Sx \&Ta
1939 is only recognised as a macro when called by other macros,
1940 not as the first macro on a line.
1942 Note that quoted strings may span tab-delimited cells on an
1943 .Sx \&It
1944 line.
1945 For example,
1947 .Dl .It \(dqcol1 ; <TAB> col2 ;\(dq \&;
1949 will preserve the semicolon whitespace except for the last.
1951 See also
1952 .Sx \&Bl .
1953 .Ss \&Lb
1954 Specify a library.
1955 The syntax is as follows:
1957 .D1 Pf \. Sx \&Lb Ar library
1960 .Ar library
1961 parameter may be a system library, such as
1962 .Cm libz
1964 .Cm libpam ,
1965 in which case a small library description is printed next to the linker
1966 invocation; or a custom library, in which case the library name is
1967 printed in quotes.
1968 This is most commonly used in the
1969 .Em SYNOPSIS
1970 section as described in
1971 .Sx MANUAL STRUCTURE .
1973 Examples:
1974 .Dl \&.Lb libz
1975 .Dl \&.Lb mdoc
1976 .Ss \&Li
1977 Denotes text that should be in a
1978 .Li literal
1979 font mode.
1980 Note that this is a presentation term and should not be used for
1981 stylistically decorating technical terms.
1983 On terminal output devices, this is often indistinguishable from
1984 normal text.
1986 See also
1987 .Sx \&Bf ,
1988 .Sx \&Em ,
1989 .Sx \&No ,
1991 .Sx \&Sy .
1992 .Ss \&Lk
1993 Format a hyperlink.
1994 Its syntax is as follows:
1996 .D1 Pf \. Sx \&Lk Ar uri Op Ar name
1998 Examples:
1999 .Dl \&.Lk http://bsd.lv \(dqThe BSD.lv Project\(dq
2000 .Dl \&.Lk http://bsd.lv
2002 See also
2003 .Sx \&Mt .
2004 .Ss \&Lp
2005 Synonym for
2006 .Sx \&Pp .
2007 .Ss \&Ms
2008 Display a mathematical symbol.
2009 Its syntax is as follows:
2011 .D1 Pf \. Sx \&Ms Ar symbol
2013 Examples:
2014 .Dl \&.Ms sigma
2015 .Dl \&.Ms aleph
2016 .Ss \&Mt
2017 Format a
2018 .Dq mailto:
2019 hyperlink.
2020 Its syntax is as follows:
2022 .D1 Pf \. Sx \&Mt Ar address
2024 Examples:
2025 .Dl \&.Mt discuss@manpages.bsd.lv
2026 .Dl \&.An Kristaps Dzonsons \&Aq \&Mt kristaps@bsd.lv
2027 .Ss \&Nd
2028 A one line description of the manual's content.
2029 This is the mandatory last macro of the
2030 .Em NAME
2031 section and not appropriate for other sections.
2033 Examples:
2034 .Dl Pf . Sx \&Nd mdoc language reference
2035 .Dl Pf . Sx \&Nd format and display UNIX manuals
2038 .Sx \&Nd
2039 macro technically accepts child macros and terminates with a subsequent
2040 .Sx \&Sh
2041 invocation.
2042 Do not assume this behaviour: some
2043 .Xr whatis 1
2044 database generators are not smart enough to parse more than the line
2045 arguments and will display macros verbatim.
2047 See also
2048 .Sx \&Nm .
2049 .Ss \&Nm
2050 The name of the manual page, or \(em in particular in section 1
2051 pages \(em of an additional command or feature documented in
2052 the manual page.
2053 When first invoked, the
2054 .Sx \&Nm
2055 macro expects a single argument, the name of the manual page.
2056 Usually, the first invocation happens in the
2057 .Em NAME
2058 section of the page.
2059 The specified name will be remembered and used whenever the macro is
2060 called again without arguments later in the page.
2062 .Sx \&Nm
2063 macro uses
2064 .Sx Block full-implicit
2065 semantics when invoked as the first macro on an input line in the
2066 .Em SYNOPSIS
2067 section; otherwise, it uses ordinary
2068 .Sx In-line
2069 semantics.
2071 Examples:
2072 .Bd -literal -offset indent
2073 \&.Sh SYNOPSIS
2074 \&.Nm cat
2075 \&.Op Fl benstuv
2076 \&.Op Ar
2079 In the
2080 .Em SYNOPSIS
2081 of section 2, 3 and 9 manual pages, use the
2082 .Sx \&Fn
2083 macro rather than
2084 .Sx \&Nm
2085 to mark up the name of the manual page.
2086 .Ss \&No
2087 Normal text.
2088 Closes the scope of any preceding in-line macro.
2089 When used after physical formatting macros like
2090 .Sx \&Em
2092 .Sx \&Sy ,
2093 switches back to the standard font face and weight.
2094 Can also be used to embed plain text strings in macro lines
2095 using semantic annotation macros.
2097 Examples:
2098 .Dl ".Em italic , Sy bold , No and roman"
2100 .Bd -literal -offset indent -compact
2101 \&.Sm off
2102 \&.Cm :C No / Ar pattern No / Ar replacement No /
2103 \&.Sm on
2106 See also
2107 .Sx \&Em ,
2108 .Sx \&Li ,
2110 .Sx \&Sy .
2111 .Ss \&Ns
2112 Suppress a space between the output of the preceding macro
2113 and the following text or macro.
2114 Following invocation, input is interpreted as normal text
2115 just like after an
2116 .Sx \&No
2117 macro.
2119 This has no effect when invoked at the start of a macro line.
2121 Examples:
2122 .Dl ".Ar name Ns = Ns Ar value"
2123 .Dl ".Cm :M Ns Ar pattern"
2124 .Dl ".Fl o Ns Ar output"
2126 See also
2127 .Sx \&No
2129 .Sx \&Sm .
2130 .Ss \&Nx
2131 Format the
2133 version provided as an argument, or a default value if
2134 no argument is provided.
2136 Examples:
2137 .Dl \&.Nx 5.01
2138 .Dl \&.Nx
2140 See also
2141 .Sx \&At ,
2142 .Sx \&Bsx ,
2143 .Sx \&Bx ,
2144 .Sx \&Dx ,
2145 .Sx \&Fx ,
2147 .Sx \&Ox .
2148 .Ss \&Oc
2149 Close multi-line
2150 .Sx \&Oo
2151 context.
2152 .Ss \&Oo
2153 Multi-line version of
2154 .Sx \&Op .
2156 Examples:
2157 .Bd -literal -offset indent -compact
2158 \&.Oo
2159 \&.Op Fl flag Ns Ar value
2160 \&.Oc
2162 .Ss \&Op
2163 Optional part of a command line.
2164 Prints the argument(s) in brackets.
2165 This is most often used in the
2166 .Em SYNOPSIS
2167 section of section 1 and 1M manual pages.
2169 Examples:
2170 .Dl \&.Op \&Fl a \&Ar b
2171 .Dl \&.Op \&Ar a | b
2173 See also
2174 .Sx \&Oo .
2175 .Ss \&Os
2176 Operating system version for display in the page footer.
2177 This is the mandatory third macro of
2180 file.
2181 Its syntax is as follows:
2183 .D1 Pf \. Sx \&Os Op Ar system Op Ar version
2185 The optional
2186 .Ar system
2187 parameter specifies the relevant operating system or environment.
2188 It is suggested to leave it unspecified, in which case
2189 .Xr mandoc 1
2190 uses its
2191 .Fl Ios
2192 argument or, if that isn't specified either,
2193 .Fa sysname
2195 .Fa release
2196 as returned by
2197 .Xr uname 3 .
2199 Examples:
2200 .Dl \&.Os
2201 .Dl \&.Os KTH/CSC/TCS
2202 .Dl \&.Os BSD 4.3
2204 See also
2205 .Sx \&Dd
2207 .Sx \&Dt .
2208 .Ss \&Ot
2209 This macro is obsolete.
2211 .Sx \&Ft
2212 instead; with
2213 .Xr mandoc 1 ,
2214 both have the same effect.
2216 Historical
2218 packages described it as
2219 .Dq "old function type (FORTRAN)" .
2220 .Ss \&Ox
2221 Format the
2223 version provided as an argument, or a default value
2224 if no argument is provided.
2226 Examples:
2227 .Dl \&.Ox 4.5
2228 .Dl \&.Ox
2230 See also
2231 .Sx \&At ,
2232 .Sx \&Bsx ,
2233 .Sx \&Bx ,
2234 .Sx \&Dx ,
2235 .Sx \&Fx ,
2237 .Sx \&Nx .
2238 .Ss \&Pa
2239 An absolute or relative file system path, or a file or directory name.
2240 If an argument is not provided, the character
2241 .Sq \(ti
2242 is used as a default.
2244 Examples:
2245 .Dl \&.Pa /usr/bin/mandoc
2246 .Dl \&.Pa /usr/share/man/man5/mdoc.5
2248 See also
2249 .Sx \&Lk .
2250 .Ss \&Pc
2251 Close parenthesised context opened by
2252 .Sx \&Po .
2253 .Ss \&Pf
2254 Removes the space between its argument and the following macro.
2255 Its syntax is as follows:
2257 .D1 .Pf Ar prefix macro arguments ...
2259 This is equivalent to:
2261 .D1 .No \e& Ns Ar prefix No \&Ns Ar macro arguments ...
2264 .Ar prefix
2265 argument is not parsed for macro names or delimiters,
2266 but used verbatim as if it were escaped.
2268 Examples:
2269 .Dl ".Pf $ Ar variable_name"
2270 .Dl ".Pf . Ar macro_name"
2271 .Dl ".Pf 0x Ar hex_digits"
2273 See also
2274 .Sx \&Ns
2276 .Sx \&Sm .
2277 .Ss \&Po
2278 Multi-line version of
2279 .Sx \&Pq .
2280 .Ss \&Pp
2281 Break a paragraph.
2282 This will assert vertical space between prior and subsequent macros
2283 and/or text.
2285 Paragraph breaks are not needed before or after
2286 .Sx \&Sh
2288 .Sx \&Ss
2289 macros or before displays
2290 .Pq Sx \&Bd
2291 or lists
2292 .Pq Sx \&Bl
2293 unless the
2294 .Fl compact
2295 flag is given.
2296 .Ss \&Pq
2297 Parenthesised enclosure.
2299 See also
2300 .Sx \&Po .
2301 .Ss \&Qc
2302 Close quoted context opened by
2303 .Sx \&Qo .
2304 .Ss \&Ql
2305 In-line literal display.
2306 This can for example be used for complete command invocations and
2307 for multi-word code fragments when more specific markup is not
2308 appropriate and an indented display is not desired.
2309 While
2310 .Xr mandoc 1
2311 always encloses the arguments in single quotes, other formatters
2312 usually omit the quotes on non-terminal output devices when the
2313 arguments have three or more characters.
2315 See also
2316 .Sx \&Dl
2318 .Sx \&Bd
2319 .Fl literal .
2320 .Ss \&Qo
2321 Multi-line version of
2322 .Sx \&Qq .
2323 .Ss \&Qq
2324 Encloses its arguments in
2325 .Qq typewriter
2326 double-quotes.
2327 Consider using
2328 .Sx \&Dq .
2330 See also
2331 .Sx \&Dq ,
2332 .Sx \&Sq ,
2334 .Sx \&Qo .
2335 .Ss \&Re
2336 Close an
2337 .Sx \&Rs
2338 block.
2339 Does not have any tail arguments.
2340 .Ss \&Rs
2341 Begin a bibliographic
2342 .Pq Dq reference
2343 block.
2344 Does not have any head arguments.
2345 The block macro may only contain
2346 .Sx \&%A ,
2347 .Sx \&%B ,
2348 .Sx \&%C ,
2349 .Sx \&%D ,
2350 .Sx \&%I ,
2351 .Sx \&%J ,
2352 .Sx \&%N ,
2353 .Sx \&%O ,
2354 .Sx \&%P ,
2355 .Sx \&%Q ,
2356 .Sx \&%R ,
2357 .Sx \&%T ,
2358 .Sx \&%U ,
2360 .Sx \&%V
2361 child macros (at least one must be specified).
2363 Examples:
2364 .Bd -literal -offset indent -compact
2365 \&.Rs
2366 \&.%A J. E. Hopcroft
2367 \&.%A J. D. Ullman
2368 \&.%B Introduction to Automata Theory, Languages, and Computation
2369 \&.%I Addison-Wesley
2370 \&.%C Reading, Massachusetts
2371 \&.%D 1979
2372 \&.Re
2375 If an
2376 .Sx \&Rs
2377 block is used within a SEE ALSO section, a vertical space is asserted
2378 before the rendered output, else the block continues on the current
2379 line.
2380 .Ss \&Rv
2381 Insert a standard sentence regarding a function call's return value of 0
2382 on success and \-1 on error, with the
2383 .Va errno
2384 libc global variable set on error.
2385 Its syntax is as follows:
2387 .D1 Pf \. Sx \&Rv Fl std Op Ar function ...
2390 .Ar function
2391 is not specified, the document's name set by
2392 .Sx \&Nm
2393 is used.
2394 Multiple
2395 .Ar function
2396 arguments are treated as separate functions.
2398 See also
2399 .Sx \&Ex .
2400 .Ss \&Sc
2401 Close single-quoted context opened by
2402 .Sx \&So .
2403 .Ss \&Sh
2404 Begin a new section.
2405 For a list of conventional manual sections, see
2406 .Sx MANUAL STRUCTURE .
2407 These sections should be used unless it's absolutely necessary that
2408 custom sections be used.
2410 Section names should be unique so that they may be keyed by
2411 .Sx \&Sx .
2412 Although this macro is parsed, it should not consist of child node or it
2413 may not be linked with
2414 .Sx \&Sx .
2416 See also
2417 .Sx \&Pp ,
2418 .Sx \&Ss ,
2420 .Sx \&Sx .
2421 .Ss \&Sm
2422 Switches the spacing mode for output generated from macros.
2423 Its syntax is as follows:
2425 .D1 Pf \. Sx \&Sm Op Cm on | off
2427 By default, spacing is
2428 .Cm on .
2429 When switched
2430 .Cm off ,
2431 no white space is inserted between macro arguments and between the
2432 output generated from adjacent macros, but text lines
2433 still get normal spacing between words and sentences.
2435 When called without an argument, the
2436 .Sx \&Sm
2437 macro toggles the spacing mode.
2438 Using this is not recommended because it makes the code harder to read.
2439 .Ss \&So
2440 Multi-line version of
2441 .Sx \&Sq .
2442 .Ss \&Sq
2443 Encloses its arguments in
2444 .Sq typewriter
2445 single-quotes.
2447 See also
2448 .Sx \&Dq ,
2449 .Sx \&Qq ,
2451 .Sx \&So .
2452 .Ss \&Ss
2453 Begin a new subsection.
2454 Unlike with
2455 .Sx \&Sh ,
2456 there is no convention for the naming of subsections.
2457 Except
2458 .Em DESCRIPTION ,
2459 the conventional sections described in
2460 .Sx MANUAL STRUCTURE
2461 rarely have subsections.
2463 Sub-section names should be unique so that they may be keyed by
2464 .Sx \&Sx .
2465 Although this macro is parsed, it should not consist of child node or it
2466 may not be linked with
2467 .Sx \&Sx .
2469 See also
2470 .Sx \&Pp ,
2471 .Sx \&Sh ,
2473 .Sx \&Sx .
2474 .Ss \&St
2475 Replace an abbreviation for a standard with the full form.
2476 The following standards are recognised.
2477 Where multiple lines are given without a blank line in between,
2478 they all refer to the same standard, and using the first form
2479 is recommended.
2480 .Bl -tag -width 1n
2481 .It C language standards
2483 .Bl -tag -width "-p1003.1g-2000" -compact
2484 .It \-ansiC
2485 .St -ansiC
2486 .It \-ansiC-89
2487 .St -ansiC-89
2488 .It \-isoC
2489 .St -isoC
2490 .It \-isoC-90
2491 .St -isoC-90
2493 The original C standard.
2495 .It \-isoC-amd1
2496 .St -isoC-amd1
2498 .It \-isoC-tcor1
2499 .St -isoC-tcor1
2501 .It \-isoC-tcor2
2502 .St -isoC-tcor2
2504 .It \-isoC-99
2505 .St -isoC-99
2507 The second major version of the C language standard.
2509 .It \-isoC-2011
2510 .St -isoC-2011
2512 The third major version of the C language standard.
2514 .It POSIX.1 before the Single UNIX Specification
2516 .Bl -tag -width "-p1003.1g-2000" -compact
2517 .It \-p1003.1-88
2518 .St -p1003.1-88
2519 .It \-p1003.1
2520 .St -p1003.1
2522 The original POSIX standard, based on ANSI C.
2524 .It \-p1003.1-90
2525 .St -p1003.1-90
2526 .It \-iso9945-1-90
2527 .St -iso9945-1-90
2529 The first update of POSIX.1.
2531 .It \-p1003.1b-93
2532 .St -p1003.1b-93
2533 .It \-p1003.1b
2534 .St -p1003.1b
2536 Real-time extensions.
2538 .It \-p1003.1c-95
2539 .St -p1003.1c-95
2541 POSIX thread interfaces.
2543 .It \-p1003.1i-95
2544 .St -p1003.1i-95
2546 Technical Corrigendum.
2548 .It \-p1003.1-96
2549 .St -p1003.1-96
2550 .It \-iso9945-1-96
2551 .St -iso9945-1-96
2553 Includes POSIX.1-1990, 1b, 1c, and 1i.
2555 .It X/Open Portability Guide version 4 and related standards
2557 .Bl -tag -width "-p1003.1g-2000" -compact
2558 .It \-xpg3
2559 .St -xpg3
2561 An XPG4 precursor, published in 1989.
2563 .It \-p1003.2
2564 .St -p1003.2
2565 .It \-p1003.2-92
2566 .St -p1003.2-92
2567 .It \-iso9945-2-93
2568 .St -iso9945-2-93
2570 An XCU4 precursor.
2572 .It \-p1003.2a-92
2573 .St -p1003.2a-92
2575 Updates to POSIX.2.
2577 .It \-xpg4
2578 .St -xpg4
2580 Based on POSIX.1 and POSIX.2, published in 1992.
2582 .It Single UNIX Specification version 1 and related standards
2584 .Bl -tag -width "-p1003.1g-2000" -compact
2585 .It \-susv1
2586 .St -susv1
2587 .It \-xpg4.2
2588 .St -xpg4.2
2590 This standard was published in 1994.
2591 It was used as the basis for UNIX 95 certification.
2592 The following three refer to parts of it.
2594 .It \-xsh4.2
2595 .St -xsh4.2
2597 .It \-xcurses4.2
2598 .St -xcurses4.2
2600 .It \-p1003.1g-2000
2601 .St -p1003.1g-2000
2603 Networking APIs, including sockets.
2605 .It \-svid4
2606 .St -svid4 ,
2608 Published in 1995.
2610 .It Single UNIX Specification version 2 and related standards
2612 .Bl -tag -width "-p1003.1g-2000" -compact
2613 .It \-susv2
2614 .St -susv2
2615 This Standard was published in 1997
2616 and is also called X/Open Portability Guide version 5.
2617 It was used as the basis for UNIX 98 certification.
2618 The following refer to parts of it.
2620 .It \-xbd5
2621 .St -xbd5
2623 .It \-xsh5
2624 .St -xsh5
2626 .It \-xcu5
2627 .St -xcu5
2629 .It \-xns5
2630 .St -xns5
2631 .It \-xns5.2
2632 .St -xns5.2
2634 .It Single UNIX Specification version 3
2636 .Bl -tag -width "-p1003.1-2001" -compact
2637 .It \-p1003.1-2001
2638 .St -p1003.1-2001
2639 .It \-susv3
2640 .St -susv3
2642 This standard is based on C99, SUSv2, POSIX.1-1996, 1d, and 1j.
2643 It is also called X/Open Portability Guide version 6.
2644 It is used as the basis for UNIX 03 certification.
2646 .It \-p1003.1-2004
2647 .St -p1003.1-2004
2649 The second and last Technical Corrigendum.
2651 .It Single UNIX Specification version 4
2653 .Bl -tag -width "-p1003.1g-2000" -compact
2654 .It \-p1003.1-2008
2655 .St -p1003.1-2008
2656 .It \-susv4
2657 .St -susv4
2659 This standard is also called
2660 X/Open Portability Guide version 7.
2662 .It \-p1003.1-2013
2663 .St -p1003.1-2013
2665 This is the first Technical Corrigendum.
2667 .It Other standards
2669 .Bl -tag -width "-p1003.1g-2000" -compact
2670 .It \-ieee754
2671 .St -ieee754
2673 Floating-point arithmetic.
2675 .It \-iso8601
2676 .St -iso8601
2678 Representation of dates and times, published in 1988.
2680 .It \-iso8802-3
2681 .St -iso8802-3
2683 Ethernet local area networks.
2685 .It \-ieee1275-94
2686 .St -ieee1275-94
2689 .Ss \&Sx
2690 Reference a section or subsection in the same manual page.
2691 The referenced section or subsection name must be identical to the
2692 enclosed argument, including whitespace.
2694 Examples:
2695 .Dl \&.Sx MANUAL STRUCTURE
2697 See also
2698 .Sx \&Sh
2700 .Sx \&Ss .
2701 .Ss \&Sy
2702 Request a boldface font.
2704 This is most often used to indicate importance or seriousness (not to be
2705 confused with stress emphasis, see
2706 .Sx \&Em ) .
2707 When none of the semantic macros fit, it is also adequate for syntax
2708 elements that have to be given or that appear verbatim.
2710 Examples:
2711 .Bd -literal -compact -offset indent
2712 \&.Sy Warning :
2714 \&.Sy s
2715 appears in the owner permissions, set-user-ID mode is set.
2716 This utility replaces the former
2717 \&.Sy dumpdir
2718 program.
2721 See also
2722 .Sx \&Bf ,
2723 .Sx \&Em ,
2724 .Sx \&Li ,
2726 .Sx \&No .
2727 .Ss \&Ta
2728 Table cell separator in
2729 .Sx \&Bl Fl column
2730 lists; can only be used below
2731 .Sx \&It .
2732 .Ss \&Tn
2733 Supported only for compatibility, do not use this in new manuals.
2734 Even though the macro name
2735 .Pq Dq tradename
2736 suggests a semantic function, historic usage is inconsistent, mostly
2737 using it as a presentation-level macro to request a small caps font.
2738 .Ss \&Ud
2739 Supported only for compatibility, do not use this in new manuals.
2740 Prints out
2741 .Dq currently under development.
2742 .Ss \&Ux
2743 Supported only for compatibility, do not use this in new manuals.
2744 Prints out
2745 .Dq Ux .
2746 .Ss \&Va
2747 A variable name.
2749 Examples:
2750 .Dl \&.Va foo
2751 .Dl \&.Va const char *bar ;
2753 For function arguments and parameters, use
2754 .Sx \&Fa
2755 instead.
2756 For declarations of global variables in the
2757 .Em SYNOPSIS
2758 section, use
2759 .Sx \&Vt .
2760 .Ss \&Vt
2761 A variable type.
2763 This is also used for indicating global variables in the
2764 .Em SYNOPSIS
2765 section, in which case a variable name is also specified.
2766 Note that it accepts
2767 .Sx Block partial-implicit
2768 syntax when invoked as the first macro on an input line in the
2769 .Em SYNOPSIS
2770 section, else it accepts ordinary
2771 .Sx In-line
2772 syntax.
2773 In the former case, this macro starts a new output line,
2774 and a blank line is inserted in front if there is a preceding
2775 function definition or include directive.
2777 Examples:
2778 .Dl \&.Vt unsigned char
2779 .Dl \&.Vt extern const char * const sys_signame[] \&;
2781 For parameters in function prototypes, use
2782 .Sx \&Fa
2783 instead, for function return types
2784 .Sx \&Ft ,
2785 and for variable names outside the
2786 .Em SYNOPSIS
2787 section
2788 .Sx \&Va ,
2789 even when including a type with the name.
2790 See also
2791 .Sx MANUAL STRUCTURE .
2792 .Ss \&Xc
2793 Close a scope opened by
2794 .Sx \&Xo .
2795 .Ss \&Xo
2796 Extend the header of an
2797 .Sx \&It
2798 macro or the body of a partial-implicit block macro
2799 beyond the end of the input line.
2800 This macro originally existed to work around the 9-argument limit
2801 of historic
2802 .Xr mandoc_roff 5 .
2803 .Ss \&Xr
2804 Link to another manual
2805 .Pq Qq cross-reference .
2806 Its syntax is as follows:
2808 .D1 Pf \. Sx \&Xr Ar name Op section
2810 Cross reference the
2811 .Ar name
2813 .Ar section
2814 number of another man page;
2815 omitting the section number is rarely useful.
2817 Examples:
2818 .Dl \&.Xr mandoc 1
2819 .Dl \&.Xr mandoc 1 \&;
2820 .Dl \&.Xr mandoc 1 \&Ns s behaviour
2821 .Ss \&br
2822 Emits a line-break.
2823 This macro should not be used; it is implemented for compatibility with
2824 historical manuals.
2826 Consider using
2827 .Sx \&Pp
2828 in the event of natural paragraph breaks.
2829 .Ss \&sp
2830 Emits vertical space.
2831 This macro should not be used; it is implemented for compatibility with
2832 historical manuals.
2833 Its syntax is as follows:
2835 .D1 Pf \. Sx \&sp Op Ar height
2838 .Ar height
2839 argument is a scaling width as described in
2840 .Xr mandoc_roff 5 .
2841 If unspecified,
2842 .Sx \&sp
2843 asserts a single vertical space.
2844 .Sh MACRO SYNTAX
2845 The syntax of a macro depends on its classification.
2846 In this section,
2847 .Sq \-arg
2848 refers to macro arguments, which may be followed by zero or more
2849 .Sq parm
2850 parameters;
2851 .Sq \&Yo
2852 opens the scope of a macro; and if specified,
2853 .Sq \&Yc
2854 closes it out.
2857 .Em Callable
2858 column indicates that the macro may also be called by passing its name
2859 as an argument to another macro.
2860 For example,
2861 .Sq \&.Op \&Fl O \&Ar file
2862 produces
2863 .Sq Op Fl O Ar file .
2864 To prevent a macro call and render the macro name literally,
2865 escape it by prepending a zero-width space,
2866 .Sq \e& .
2867 For example,
2868 .Sq \&Op \e&Fl O
2869 produces
2870 .Sq Op \&Fl O .
2871 If a macro is not callable but its name appears as an argument
2872 to another macro, it is interpreted as opaque text.
2873 For example,
2874 .Sq \&.Fl \&Sh
2875 produces
2876 .Sq Fl \&Sh .
2879 .Em Parsed
2880 column indicates whether the macro may call other macros by receiving
2881 their names as arguments.
2882 If a macro is not parsed but the name of another macro appears
2883 as an argument, it is interpreted as opaque text.
2886 .Em Scope
2887 column, if applicable, describes closure rules.
2888 .Ss Block full-explicit
2889 Multi-line scope closed by an explicit closing macro.
2890 All macros contains bodies; only
2891 .Sx \&Bf
2893 .Pq optionally
2894 .Sx \&Bl
2895 contain a head.
2896 .Bd -literal -offset indent
2897 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead...\(rB
2898 \(lBbody...\(rB
2899 \&.Yc
2901 .Bl -column "MacroX" "CallableX" "ParsedX" "closed by XXX" -offset indent
2902 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Scope
2903 .It Sx \&Bd  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Ed
2904 .It Sx \&Bf  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Ef
2905 .It Sx \&Bk  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Ek
2906 .It Sx \&Bl  Ta    \&No     Ta    \&No     Ta    closed by Sx \&El
2907 .It Sx \&Ed  Ta    \&No     Ta    \&No     Ta    opened by Sx \&Bd
2908 .It Sx \&Ef  Ta    \&No     Ta    \&No     Ta    opened by Sx \&Bf
2909 .It Sx \&Ek  Ta    \&No     Ta    \&No     Ta    opened by Sx \&Bk
2910 .It Sx \&El  Ta    \&No     Ta    \&No     Ta    opened by Sx \&Bl
2912 .Ss Block full-implicit
2913 Multi-line scope closed by end-of-file or implicitly by another macro.
2914 All macros have bodies; some
2916 .Sx \&It Fl bullet ,
2917 .Fl hyphen ,
2918 .Fl dash ,
2919 .Fl enum ,
2920 .Fl item
2922 don't have heads; only one
2924 .Sx \&It
2926 .Sx \&Bl Fl column
2928 has multiple heads.
2929 .Bd -literal -offset indent
2930 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead... \(lBTa head...\(rB\(rB
2931 \(lBbody...\(rB
2933 .Bl -column "MacroX" "CallableX" "ParsedX" "closed by XXXXXXXXXXX" -offset indent
2934 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Scope
2935 .It Sx \&It Ta \&No Ta Yes  Ta closed by Sx \&It , Sx \&El
2936 .It Sx \&Nd Ta \&No Ta \&No Ta closed by Sx \&Sh
2937 .It Sx \&Nm Ta \&No Ta Yes  Ta closed by Sx \&Nm , Sx \&Sh , Sx \&Ss
2938 .It Sx \&Sh Ta \&No Ta Yes  Ta closed by Sx \&Sh
2939 .It Sx \&Ss Ta \&No Ta Yes  Ta closed by Sx \&Sh , Sx \&Ss
2942 Note that the
2943 .Sx \&Nm
2944 macro is a
2945 .Sx Block full-implicit
2946 macro only when invoked as the first macro
2947 in a
2948 .Em SYNOPSIS
2949 section line, else it is
2950 .Sx In-line .
2951 .Ss Block partial-explicit
2952 Like block full-explicit, but also with single-line scope.
2953 Each has at least a body and, in limited circumstances, a head
2955 .Sx \&Fo ,
2956 .Sx \&Eo
2958 and/or tail
2959 .Pq Sx \&Ec .
2960 .Bd -literal -offset indent
2961 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead...\(rB
2962 \(lBbody...\(rB
2963 \&.Yc \(lBtail...\(rB
2965 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead...\(rB \
2966 \(lBbody...\(rB \&Yc \(lBtail...\(rB
2968 .Bl -column "MacroX" "CallableX" "ParsedX" "closed by XXXX" -offset indent
2969 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Scope
2970 .It Sx \&Ac  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Ao
2971 .It Sx \&Ao  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Ac
2972 .It Sx \&Bc  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Bo
2973 .It Sx \&Bo  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Bc
2974 .It Sx \&Brc Ta    Yes      Ta    Yes      Ta    opened by Sx \&Bro
2975 .It Sx \&Bro Ta    Yes      Ta    Yes      Ta    closed by Sx \&Brc
2976 .It Sx \&Dc  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Do
2977 .It Sx \&Do  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Dc
2978 .It Sx \&Ec  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Eo
2979 .It Sx \&Eo  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Ec
2980 .It Sx \&Fc  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Fo
2981 .It Sx \&Fo  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Fc
2982 .It Sx \&Oc  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Oo
2983 .It Sx \&Oo  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Oc
2984 .It Sx \&Pc  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Po
2985 .It Sx \&Po  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Pc
2986 .It Sx \&Qc  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Oo
2987 .It Sx \&Qo  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Oc
2988 .It Sx \&Re  Ta    \&No     Ta    \&No     Ta    opened by Sx \&Rs
2989 .It Sx \&Rs  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Re
2990 .It Sx \&Sc  Ta    Yes      Ta    Yes      Ta    opened by Sx \&So
2991 .It Sx \&So  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Sc
2992 .It Sx \&Xc  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Xo
2993 .It Sx \&Xo  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Xc
2995 .Ss Block partial-implicit
2996 Like block full-implicit, but with single-line scope closed by the
2997 end of the line.
2998 .Bd -literal -offset indent
2999 \&.Yo \(lB\-arg \(lBval...\(rB\(rB \(lBbody...\(rB \(lBres...\(rB
3001 .Bl -column "MacroX" "CallableX" "ParsedX" -offset indent
3002 .It Em Macro Ta Em Callable Ta Em Parsed
3003 .It Sx \&Aq  Ta    Yes      Ta    Yes
3004 .It Sx \&Bq  Ta    Yes      Ta    Yes
3005 .It Sx \&Brq Ta    Yes      Ta    Yes
3006 .It Sx \&D1  Ta    \&No     Ta    \&Yes
3007 .It Sx \&Dl  Ta    \&No     Ta    Yes
3008 .It Sx \&Dq  Ta    Yes      Ta    Yes
3009 .It Sx \&En  Ta    Yes      Ta    Yes
3010 .It Sx \&Op  Ta    Yes      Ta    Yes
3011 .It Sx \&Pq  Ta    Yes      Ta    Yes
3012 .It Sx \&Ql  Ta    Yes      Ta    Yes
3013 .It Sx \&Qq  Ta    Yes      Ta    Yes
3014 .It Sx \&Sq  Ta    Yes      Ta    Yes
3015 .It Sx \&Vt  Ta    Yes      Ta    Yes
3018 Note that the
3019 .Sx \&Vt
3020 macro is a
3021 .Sx Block partial-implicit
3022 only when invoked as the first macro
3023 in a
3024 .Em SYNOPSIS
3025 section line, else it is
3026 .Sx In-line .
3027 .Ss Special block macro
3029 .Sx \&Ta
3030 macro can only be used below
3031 .Sx \&It
3033 .Sx \&Bl Fl column
3034 lists.
3035 It delimits blocks representing table cells;
3036 these blocks have bodies, but no heads.
3037 .Bl -column "MacroX" "CallableX" "ParsedX" "closed by XXXX" -offset indent
3038 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Scope
3039 .It Sx \&Ta  Ta    Yes      Ta    Yes    Ta closed by Sx \&Ta , Sx \&It
3041 .Ss In-line
3042 Closed by the end of the line, fixed argument lengths,
3043 and/or subsequent macros.
3044 In-line macros have only text children.
3045 If a number (or inequality) of arguments is
3046 .Pq n ,
3047 then the macro accepts an arbitrary number of arguments.
3048 .Bd -literal -offset indent
3049 \&.Yo \(lB\-arg \(lBval...\(rB\(rB \(lBargs...\(rB \(lBres...\(rB
3051 \&.Yo \(lB\-arg \(lBval...\(rB\(rB \(lBargs...\(rB Yc...
3053 \&.Yo \(lB\-arg \(lBval...\(rB\(rB arg0 arg1 argN
3055 .Bl -column "MacroX" "CallableX" "ParsedX" "Arguments" -offset indent
3056 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Arguments
3057 .It Sx \&%A  Ta    \&No     Ta    \&No     Ta    >0
3058 .It Sx \&%B  Ta    \&No     Ta    \&No     Ta    >0
3059 .It Sx \&%C  Ta    \&No     Ta    \&No     Ta    >0
3060 .It Sx \&%D  Ta    \&No     Ta    \&No     Ta    >0
3061 .It Sx \&%I  Ta    \&No     Ta    \&No     Ta    >0
3062 .It Sx \&%J  Ta    \&No     Ta    \&No     Ta    >0
3063 .It Sx \&%N  Ta    \&No     Ta    \&No     Ta    >0
3064 .It Sx \&%O  Ta    \&No     Ta    \&No     Ta    >0
3065 .It Sx \&%P  Ta    \&No     Ta    \&No     Ta    >0
3066 .It Sx \&%Q  Ta    \&No     Ta    \&No     Ta    >0
3067 .It Sx \&%R  Ta    \&No     Ta    \&No     Ta    >0
3068 .It Sx \&%T  Ta    \&No     Ta    \&No     Ta    >0
3069 .It Sx \&%U  Ta    \&No     Ta    \&No     Ta    >0
3070 .It Sx \&%V  Ta    \&No     Ta    \&No     Ta    >0
3071 .It Sx \&Ad  Ta    Yes      Ta    Yes      Ta    >0
3072 .It Sx \&An  Ta    Yes      Ta    Yes      Ta    >0
3073 .It Sx \&Ap  Ta    Yes      Ta    Yes      Ta    0
3074 .It Sx \&Ar  Ta    Yes      Ta    Yes      Ta    n
3075 .It Sx \&At  Ta    Yes      Ta    Yes      Ta    1
3076 .It Sx \&Bsx Ta    Yes      Ta    Yes      Ta    n
3077 .It Sx \&Bt  Ta    \&No     Ta    \&No     Ta    0
3078 .It Sx \&Bx  Ta    Yes      Ta    Yes      Ta    n
3079 .It Sx \&Cd  Ta    Yes      Ta    Yes      Ta    >0
3080 .It Sx \&Cm  Ta    Yes      Ta    Yes      Ta    >0
3081 .It Sx \&Db  Ta    \&No     Ta    \&No     Ta    1
3082 .It Sx \&Dd  Ta    \&No     Ta    \&No     Ta    n
3083 .It Sx \&Dt  Ta    \&No     Ta    \&No     Ta    n
3084 .It Sx \&Dv  Ta    Yes      Ta    Yes      Ta    >0
3085 .It Sx \&Dx  Ta    Yes      Ta    Yes      Ta    n
3086 .It Sx \&Em  Ta    Yes      Ta    Yes      Ta    >0
3087 .It Sx \&Er  Ta    Yes      Ta    Yes      Ta    >0
3088 .It Sx \&Es  Ta    Yes      Ta    Yes      Ta    2
3089 .It Sx \&Ev  Ta    Yes      Ta    Yes      Ta    >0
3090 .It Sx \&Ex  Ta    \&No     Ta    \&No     Ta    n
3091 .It Sx \&Fa  Ta    Yes      Ta    Yes      Ta    >0
3092 .It Sx \&Fd  Ta    \&No     Ta    \&No     Ta    >0
3093 .It Sx \&Fl  Ta    Yes      Ta    Yes      Ta    n
3094 .It Sx \&Fn  Ta    Yes      Ta    Yes      Ta    >0
3095 .It Sx \&Fr  Ta    Yes      Ta    Yes      Ta    >0
3096 .It Sx \&Ft  Ta    Yes      Ta    Yes      Ta    >0
3097 .It Sx \&Fx  Ta    Yes      Ta    Yes      Ta    n
3098 .It Sx \&Hf  Ta    \&No     Ta    \&No     Ta    n
3099 .It Sx \&Ic  Ta    Yes      Ta    Yes      Ta    >0
3100 .It Sx \&In  Ta    \&No     Ta    \&No     Ta    1
3101 .It Sx \&Lb  Ta    \&No     Ta    \&No     Ta    1
3102 .It Sx \&Li  Ta    Yes      Ta    Yes      Ta    >0
3103 .It Sx \&Lk  Ta    Yes      Ta    Yes      Ta    >0
3104 .It Sx \&Lp  Ta    \&No     Ta    \&No     Ta    0
3105 .It Sx \&Ms  Ta    Yes      Ta    Yes      Ta    >0
3106 .It Sx \&Mt  Ta    Yes      Ta    Yes      Ta    >0
3107 .It Sx \&Nm  Ta    Yes      Ta    Yes      Ta    n
3108 .It Sx \&No  Ta    Yes      Ta    Yes      Ta    0
3109 .It Sx \&Ns  Ta    Yes      Ta    Yes      Ta    0
3110 .It Sx \&Nx  Ta    Yes      Ta    Yes      Ta    n
3111 .It Sx \&Os  Ta    \&No     Ta    \&No     Ta    n
3112 .It Sx \&Ot  Ta    Yes      Ta    Yes      Ta    >0
3113 .It Sx \&Ox  Ta    Yes      Ta    Yes      Ta    n
3114 .It Sx \&Pa  Ta    Yes      Ta    Yes      Ta    n
3115 .It Sx \&Pf  Ta    Yes      Ta    Yes      Ta    1
3116 .It Sx \&Pp  Ta    \&No     Ta    \&No     Ta    0
3117 .It Sx \&Rv  Ta    \&No     Ta    \&No     Ta    n
3118 .It Sx \&Sm  Ta    \&No     Ta    \&No     Ta    <2
3119 .It Sx \&St  Ta    \&No     Ta    Yes      Ta    1
3120 .It Sx \&Sx  Ta    Yes      Ta    Yes      Ta    >0
3121 .It Sx \&Sy  Ta    Yes      Ta    Yes      Ta    >0
3122 .It Sx \&Tn  Ta    Yes      Ta    Yes      Ta    >0
3123 .It Sx \&Ud  Ta    \&No     Ta    \&No     Ta    0
3124 .It Sx \&Ux  Ta    Yes      Ta    Yes      Ta    n
3125 .It Sx \&Va  Ta    Yes      Ta    Yes      Ta    n
3126 .It Sx \&Vt  Ta    Yes      Ta    Yes      Ta    >0
3127 .It Sx \&Xr  Ta    Yes      Ta    Yes      Ta    >0
3128 .It Sx \&br  Ta    \&No     Ta    \&No     Ta    0
3129 .It Sx \&sp  Ta    \&No     Ta    \&No     Ta    1
3131 .Ss Delimiters
3132 When a macro argument consists of one single input character
3133 considered as a delimiter, the argument gets special handling.
3134 This does not apply when delimiters appear in arguments containing
3135 more than one character.
3136 Consequently, to prevent special handling and just handle it
3137 like any other argument, a delimiter can be escaped by prepending
3138 a zero-width space
3139 .Pq Sq \e& .
3140 In text lines, delimiters never need escaping, but may be used
3141 as normal punctuation.
3143 For many macros, when the leading arguments are opening delimiters,
3144 these delimiters are put before the macro scope,
3145 and when the trailing arguments are closing delimiters,
3146 these delimiters are put after the macro scope.
3147 For example,
3149 .D1 Pf \. \&Aq "( [ word ] ) ."
3151 renders as:
3153 .D1 Aq ( [ word ] ) .
3155 Opening delimiters are:
3157 .Bl -tag -width Ds -offset indent -compact
3158 .It \&(
3159 left parenthesis
3160 .It \&[
3161 left bracket
3164 Closing delimiters are:
3166 .Bl -tag -width Ds -offset indent -compact
3167 .It \&.
3168 period
3169 .It \&,
3170 comma
3171 .It \&:
3172 colon
3173 .It \&;
3174 semicolon
3175 .It \&)
3176 right parenthesis
3177 .It \&]
3178 right bracket
3179 .It \&?
3180 question mark
3181 .It \&!
3182 exclamation mark
3185 Note that even a period preceded by a backslash
3186 .Pq Sq \e.\&
3187 gets this special handling; use
3188 .Sq \e&.
3189 to prevent that.
3191 Many in-line macros interrupt their scope when they encounter
3192 delimiters, and resume their scope when more arguments follow that
3193 are not delimiters.
3194 For example,
3196 .D1 Pf \. \&Fl "a ( b | c \e*(Ba d ) e"
3198 renders as:
3200 .D1 Fl a ( b | c \*(Ba d ) e
3202 This applies to both opening and closing delimiters,
3203 and also to the middle delimiter:
3205 .Bl -tag -width Ds -offset indent -compact
3206 .It \&|
3207 vertical bar
3210 As a special case, the predefined string \e*(Ba is handled and rendered
3211 in the same way as a plain
3212 .Sq \&|
3213 character.
3214 Using this predefined string is not recommended in new manuals.
3215 .Ss Font handling
3218 documents, usage of semantic markup is recommended in order to have
3219 proper fonts automatically selected; only when no fitting semantic markup
3220 is available, consider falling back to
3221 .Sx Physical markup
3222 macros.
3223 Whenever any
3225 macro switches the
3226 .Xr mandoc_roff 5
3227 font mode, it will automatically restore the previous font when exiting
3228 its scope.
3229 Manually switching the font using the
3230 .Xr mandoc_roff 5
3231 .Ql \ef
3232 font escape sequences is never required.
3233 .Sh COMPATIBILITY
3234 This section provides an incomplete list of compatibility issues
3235 between mandoc and GNU troff
3236 .Pq Qq groff .
3238 The following problematic behaviour is found in groff:
3240 .Bl -dash -compact
3242 .Sx \&Dd
3243 with non-standard arguments behaves very strangely.
3244 When there are three arguments, they are printed verbatim.
3245 Any other number of arguments is replaced by the current date,
3246 but without any arguments the string
3247 .Dq Epoch
3248 is printed.
3250 .Sx \&Lk
3251 only accepts a single link-name argument; the remainder is misformatted.
3253 .Sx \&Pa
3254 does not format its arguments when used in the FILES section under
3255 certain list types.
3257 .Sx \&Ta
3258 can only be called by other macros, but not at the beginning of a line.
3260 .Sx \&%C
3261 is not implemented (up to and including groff-1.22.2).
3263 .Sq \ef
3264 .Pq font face
3266 .Sq \eF
3267 .Pq font family face
3268 .Sx Text Decoration
3269 escapes behave irregularly when specified within line-macro scopes.
3271 Negative scaling units return to prior lines.
3272 Instead, mandoc truncates them to zero.
3275 The following features are unimplemented in mandoc:
3277 .Bl -dash -compact
3279 .Sx \&Bd
3280 .Fl file Ar file
3281 is unsupported for security reasons.
3283 .Sx \&Bd
3284 .Fl filled
3285 does not adjust the right margin, but is an alias for
3286 .Sx \&Bd
3287 .Fl ragged .
3289 .Sx \&Bd
3290 .Fl literal
3291 does not use a literal font, but is an alias for
3292 .Sx \&Bd
3293 .Fl unfilled .
3295 .Sx \&Bd
3296 .Fl offset Cm center
3298 .Fl offset Cm right
3299 don't work.
3300 Groff does not implement centered and flush-right rendering either,
3301 but produces large indentations.
3303 .Sh SEE ALSO
3304 .Xr man 1 ,
3305 .Xr mandoc 1 ,
3306 .Xr eqn 5 ,
3307 .Xr man 5 ,
3308 .Xr mandoc_char 5 ,
3309 .Xr mandoc_roff 5 ,
3310 .Xr tbl 5
3311 .Sh HISTORY
3314 language first appeared as a troff macro package in
3315 .Bx 4.4 .
3316 It was later significantly updated by Werner Lemberg and Ruslan Ermilov
3317 in groff-1.17.
3318 The standalone implementation that is part of the
3319 .Xr mandoc 1
3320 utility written by Kristaps Dzonsons appeared in
3321 .Ox 4.6 .
3322 .Sh AUTHORS
3325 reference was written by
3326 .An Kristaps Dzonsons Aq Mt kristaps@bsd.lv .