Adapt to use .UR/.UE and .MT/.ME.
[s-roff.git] / man / groff.man
blobbb0c52b5e816b58fcd711a298ecfcf02b0075620
1 '\" t
2 .ig
3 groff.man
5 Last update: 26 Oct 2006
7 This file is part of groff, the GNU roff type-setting system.
9 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006
10   Free Software Foundation, Inc.
11 written by Bernd Warken <bwarken@mayn.de>
12 maintained by Werner Lemberg <wl@gnu.org>
14 Permission is granted to copy, distribute and/or modify this document
15 under the terms of the GNU Free Documentation License, Version 1.1 or
16 any later version published by the Free Software Foundation; with the
17 Invariant Sections being this .ig-section and AUTHORS, with no
18 Front-Cover Texts, and with no Back-Cover Texts.
20 A copy of the Free Documentation License is included as a file called
21 FDL in the main directory of the groff source package.
24 .\" --------------------------------------------------------------------
25 .\" Setup
26 .\" --------------------------------------------------------------------
28 .do nr groff_C \n[.C]
29 .cp 0
31 .mso www.tmac
33 .if n \{\
34 .  mso tty-char.tmac
35 .  ftr CR R
36 .  ftr CI I
37 .  ftr CB B
38 .\}
40 .if '\*[.T]'dvi' \{\
41 .  ftr CB CW
42 .\}
45 .\" --------------------------------------------------------------------
46 .\" start of macro definitions
47 .eo
49 .de c
52 .de TPx
53 .  TP 10n
55 .c ---------------------------------------------------------------------
56 .c .Text anything ...
58 .c All arguments are printed as text.
60 .de Text
61 .  nop \)\$*
63 .c ---------------------------------------------------------------------
64 .c .ExecFF macro font1 font2 text1 text2 text1 text2 ...
66 .c Concat text arguments using alternating fonts and feed into macro.
67 .c For a trailing punctuation, terminate the call with \c.
69 .de ExecFF
70 .  if (\n[.$] < 4) \
71 .    return
72 .  ds @a\"
73 .  ds @m \$1\"
74 .  ds @f1 \$2\"
75 .  ds @f2 \$3\"
76 .  shift 3
77 .  ds @s\"
78 .  while 1 \{\
79 .    if (\n[.$] = 0) \
80 .      break
81 .    ds @a \$1\"
82 .    as @s \f[\*[@f1]]\*[@a]\f[]\"
83 .    shift
84 .    if (\n[.$] = 0) \
85 .      break
86 .    ds @a \$1\"
87 .    as @s \f[\*[@f2]]\*[@a]\f[]\"
88 .    shift
89 .  \}
90 .  \*[@m] "\*[@s]\f[R]"
91 .  ft P                 \" to make \c happy
92 .  rm @m
93 .  rm @s
94 .  rm @a
95 .  rm @f1
96 .  rm @f2
99 .c --------- command line option ---------
101 .de option
102 .  Text \f[CB]\$*
103 .  ft P
106 .c --------- characters ---------
108 .de character
109 .  ExecFF Text CB R \$*
111 .de squoted_char
112 .  ds @1 \$1\"
113 .  shift
114 .  ExecFF Text R CB \[oq] \*[@1] "\[cq]\$*"
115 .  rm @1
117 .de dquoted_char
118 .  ds @1 \$1\"
119 .  shift
120 .  ExecFF Text R CB \[lq] \*[@1] "\[rq]\$*"
121 .  rm @1
123 .c --------- requests ---------
125 .c synopsis of a request
126 .de REQ
127 .  if (\n[.$] = 0) \
128 .    return
129 .  ds @1 \$1\"
130 .  shift 1
131 .  ie (\n[.$] = 0) \{\
132 .    TP 10n
133 .    Text \f[CB]\*[@1]\f[]
134 .  \}
135 .  el \{\
136 .    TP 10n
137 .    Text \f[CB]\*[@1]\~\f[]\f[I]\$*\f[]
138 .  \}
139 .  rm @1
141 .c reference of a request
142 .de request
143 .  BR \$*
146 .c --------- numerical elements ---------
148 .c number with a trailing unit
149 .de scalednumber
150 .  Text \$1\^\f[CB]\$2\f[]\$3\f[R]
151 .  ft P
154 .c representation of units within the text
155 .de scaleindicator
156 .  Text \f[CB]\$1\f[]\$2\f[R]
157 .  ft P
160 .c representation of mathematical operators within the text
161 .de operator
162 .  squoted_char \$@
166 .c --------- escape sequences ---------
168 .c ---------------------------------------------------------------------
169 .c .ESC name [arg]
171 .c Synopsis of an escape sequence, optionally with argument
172 .c Args   : 1 or 2; `name' obligatory, `arg' optional
173 .c   name : suitable name for an escape sequence (c, (xy, [long])
174 .c   arg  : arbitrary word
175 .c Result : prints \namearg, where `name' is in CB, `arg' in I
177 .de ESC
178 .  if (\n[.$] < 1)
179 .    ab .ESC needs 1 or 2 arguments.
180 .  ExecFF IP CB I "\[rs]\$1" "\,\$2\/"
182 .c ---------------------------------------------------------------------
183 .c .ESC[] name arg
185 .c Synopsis for escape sequence with a bracketed long argument
186 .c Args   : 2 obligatory
187 .c   name : suitable name for an escape sequence (c, (xy, [long])
188 .c   arg  : arbitrary text
189 .c Result : prints \name[arg], where `name' is in CB, `arg' in I
191 .de ESC[]
192 .  if !(\n[.$] = 2) \
193 .    ab .ESC[] needs exactly 2 arguments.
194 .  ExecFF IP CB I "\[rs]\$1\[lB]" "\h'-0.2m'\$2\h'-0.15m'" \[rB]
196 .c ---------------------------------------------------------------------
197 .c .ESCq name arg
199 .c Synopsis for escape sequence with a bracketed long argument
200 .c Args   : 2 obligatory
201 .c   name : suitable name for an escape sequence (c, (xy, [long])
202 .c   arg  : arbitrary text
203 .c Result : prints \name'arg', where `name' is in CB, `arg' in I
205 .de ESCq
206 .  if !(\n[.$] = 2) \
207 .    ab .ESCq needs exactly 2 argument.
208 .  ExecFF IP CB I "\[rs]\$1\[cq]" "\h'-0.3m'\$2" \[cq]
210 .c ---------------------------------------------------------------------
211 .c .ESC? arg
213 .c Synopsis for escape sequence with a bracketed long argument
214 .c Args   : 1 obligatory
215 .c   arg  : arbitrary text
216 .c Result : prints `\?arg?', where the `?' are in CB, `arg' in I
218 .de ESC?
219 .  if !(\n[.$] = 1) \
220 .    ab .ESC? needs exactly 1 arguments.
221 .  ExecFF IP CB I \[rs]? "\$1" ?
223 .c ---------------------------------------------------------------------
224 .c .esc name [punct]
226 .c Reference of an escape sequence (no args), possibly punctuation
227 .c Args    : 1 obligatory
228 .c   name  : suitable name for an escape sequence (c, (xy, [long])
229 .c   punct : arbitrary
230 .c Result  : prints \name, where `name' is in B, `punct' in R
232 .de esc
233 .  if (\n[.$] < 1) \
234 .    ab .esc needs 1 or 2 arguments.
235 .  BR "\[rs]\$1" \$2
237 .c ---------------------------------------------------------------------
238 .c .escarg name arg [punct]
240 .c Reference of an escape sequence (no args)
241 .c Args    : 1 obligatory, 1 optional
242 .c   name  : suitable name for an escape sequence (c, (xy, [long])
243 .c   arg   : arbitrary word
244 .c Result  : prints \namearg, where
245 .c           `name' is in B, `arg' in I
247 .de escarg
248 .  if (\n[.$] < 2) \
249 .    ab .esc needs 2 or 3 arguments.
250 .  Text \f[B]\[rs]\$1\f[]\f[I]\$2\f[]\$3
252 .c ---------------------------------------------------------------------
253 .c .esc[] name arg [punct]
255 .c Reference for escape sequence with a bracketed long argument
256 .c Args   : 2 obligatory
257 .c   name : suitable name for an escape sequence (c, (xy, [long])
258 .c   arg  : arbitrary text
259 .c Result : prints \name[arg], where `name' is in CB, `arg' in CI
261 .de esc[]
262 .  if (\n[.$] < 2) \
263 .    ab .esc[] needs 2 or 3 arguments.
264 .  Text \f[B]\[rs]\$1\[lB]\f[]\f[I]\$2\f[]\f[B]\[rB]\f[]\$3
267 .c ---------------------------------------------------------------------
268 .c .escq name arg
270 .c Reference for escape sequence with a bracketed long argument
271 .c Args   : 2 obligatory
272 .c   name : suitable name for an escape sequence (c, (xy, [long])
273 .c   arg  : arbitrary text
274 .c Result : prints \name'arg', where `name' is in CB, `arg' in CI
276 .de escq
277 .  if (\n[.$] < 2) \
278 .    ab .escq needs 2 arguments.
279 .  Text \f[B]\[rs]\$1\[cq]\f[]\f[I]\$2\f[]\f[B]\[cq]\f[]\$3
282 .c --------- strings ---------
284 .c synopsis for string, with \*[]
285 .de STRING
286 .  ds @1 \$1\"
287 .  shift 1
288 .  TP 10n
289 .  ExecFF Text R CB \[rs]*[ \*[@1]\f[]\f[R]] \$*
290 .  rm @1
292 .c synopsis for a long string
293 .de string
294 .  if (\n[.$] = 0) \
295 .    return
296 .  Text \f[CB]\[rs]*\[lB]\$1\[rB]\f[]\$2
300 .c --------- registers ---------
302 .c synopsis for registers, with \n[]
303 .de REG
304 .  ds @1 \$1\"
305 .  shift 1
306 .  TP 10n
307 .  ExecFF Text R CB \[rs]n[ \*[@1]\f[]\f[R]] \$*
308 .  rm @1
310 .c reference of a register, without decoration
311 .de register
312 .  Text register
313 .  BR \$*
317 .\" end of macro definitions
320 .\" --------------------------------------------------------------------
321 .\" Title
322 .\" --------------------------------------------------------------------
324 .TH GROFF @MAN7EXT@ "@MDATE@" "Groff Version @VERSION@"
325 .SH NAME
326 groff \- a short reference for the GNU roff language
329 .\" --------------------------------------------------------------------
330 .SH DESCRIPTION
331 .\" --------------------------------------------------------------------
333 The name
334 .I groff
335 stands for
336 .I GNU roff
337 and is the free implementation of the roff type-setting system.
340 .BR roff (@MAN7EXT@)
341 for a survey and the background of the groff system.
344 This document gives only short descriptions of the predefined roff
345 language elements as used in groff.
347 Both the classical features and the groff extensions are provided.
350 Historically, the
351 .I roff language
352 was called
353 .IR troff .
354 .I groff
355 is compatible with the classical system and provides proper
356 extensions.
358 So in GNU, the terms
359 .IR roff ,
360 .IR troff ,
362 .I groff language
363 could be used as synonyms.
365 However
366 .I troff
367 slightly tends to refer more to the classical aspects, whereas
368 .I groff
369 emphasizes the GNU extensions, and
370 .I roff
371 is the general term for the language.
374 This file is only a short version of the complete documentation that
375 is found in the
376 .I groff
377 .BR info (1)
378 file, which contains more detailed, actual, and concise information.
381 The general syntax for writing groff documents is relatively easy, but
382 writing extensions to the roff language can be a bit harder.
385 The roff language is line-oriented.
387 There are only two kinds of lines, control lines and text lines.
389 The control lines start with a control character, by default a period
390 .dquoted_char .
391 or a single quote
392 .dquoted_char ' ;
393 all other lines are text lines.
396 .B Control lines
397 represent commands, optionally with arguments.
399 They have the following syntax.
401 The leading control character can be followed by a command name;
402 arguments, if any, are separated by blanks from the command name and
403 among themselves, for example,
407 .Text .command_name arg1 arg2
411 For indentation, any number of space or tab characters can be inserted
412 between the leading control character and the command name, but the
413 control character must be on the first position of the line.
416 .B Text lines
417 represent the parts that is printed.
418 They can be modified by escape sequences, which are recognized by a
419 leading backslash
420 .squoted_char \[rs] .
421 These are in-line or even in-word formatting elements or functions.
423 Some of these take arguments separated by single quotes
424 .dquoted_char ' ,
425 others are regulated by a length encoding introduced by an open
426 parenthesis
427 .squoted_char (
428 or enclosed in brackets
429 .squoted_char [
431 .squoted_char ] .
434 The roff language provides flexible instruments for writing language
435 extension, such as macros.
437 When interpreting macro definitions, the roff system enters a special
438 operating mode, called the
439 .BR "copy mode" .
442 The copy mode behavior can be quite tricky, but there are some rules
443 that ensure a safe usage.
445 .IP 1.
446 Printable backslashes must be denoted as
447 .esc e .
448 To be more precise,
449 .esc e
450 represents the current escape character.
452 To get a backslash glyph, use
453 .esc (rs
455 .esc [rs] .
456 .IP 2.
457 Double all backslashes.
458 .IP 3.
459 Begin all text lines with the special non-spacing character
460 .esc & .
463 This does not produce the most efficient code, but it should work as a
464 first measure.
466 For better strategies, see the groff info file and
467 .BR groff_tmac (@MAN5EXT@).
470 Reading roff source files is easier, just reduce all double backslashes
471 to a single one in all macro definitions.
474 .\" --------------------------------------------------------------------
475 .SH "GROFF ELEMENTS"
476 .\" --------------------------------------------------------------------
478 The roff language elements add formatting information to a text file.
480 The fundamental elements are predefined commands and variables that
481 make roff a full-blown programming language.
484 There are two kinds of roff commands, possibly with arguments.
485 .B Requests
486 are written on a line of their own starting with a dot
487 .squoted_char .
488 or a
489 .dquoted_char ' ,
490 whereas
491 .B Escape sequences
492 are in-line functions and in-word formatting elements starting with a
493 backslash
494 .squoted_char \[rs] .
497 The user can define her own formatting commands using the
498 .request de
499 request.
501 These commands are called
502 .BR macros ,
503 but they are used exactly like requests.
505 Macro packages are pre-defined sets of macros written in the groff
506 language.
508 A user's possibilities to create escape sequences herself is very
509 limited, only special characters can be mapped.
512 The groff language provides several kinds of variables with
513 different interfaces.
515 There are pre-defined variables, but the user can define her own
516 variables as well.
519 .B String
520 variables store character sequences.
522 They are set with the
523 .request ds
524 request and retrieved by the
525 .esc *
526 escape sequences.
528 Strings can have variables.
531 .B Register
532 variables can store numerical values, numbers with a scale unit, and
533 occasionally string-like objects.
535 They are set with the
536 .request nr
537 request and retrieved by the
538 .esc n
539 escape sequences.
542 .B Environments
543 allow the user to temporarily store global formatting parameters like
544 line length, font size, etc.\& for later reuse.
546 This is done by the
547 .request ev
548 request.
551 .B Fonts
552 are identified either by a name or by an internal number.
554 The current font is chosen by the
555 .request ft
556 request or by the
557 .esc f
558 escape sequences.
560 Each device has special fonts, but the following fonts are available
561 for all devices.
562 .B R
563 is the standard font Roman.
564 .B B
565 is its
566 .B bold
567 counterpart.
570 .I italic
571 font is called
572 .B I
573 and is available everywhere, but on text devices it is displayed as an
574 underlined Roman font.
576 For the graphical output devices, there exist constant-width pendants
577 of these fonts,
578 .BR CR ,
579 .BR CI ,
581 .BR CB .
582 On text devices, all characters have a constant width anyway.
585 Moreover, there are some advanced roff elements.
588 .B diversion
589 stores information into a macro for later usage.
592 .B trap
593 is a positional condition like a certain number of lines from page top
594 or in a diversion or in the input.
596 Some action can be prescribed to be run automatically when the
597 condition is met.
600 More detailed information and examples can be found in the groff info
601 file.
604 .\" --------------------------------------------------------------------
605 .SH "CONTROL CHARACTERS"
606 .\" --------------------------------------------------------------------
608 There is a small set of characters that have a special controlling
609 task in certain conditions.
612 .character .
613 A dot is only special at the beginning of a line or after the
614 condition in the requests
615 .request if ,
616 .request ie ,
617 .request el ,
619 .request while .
620 There it is the control character that introduces a request (or macro).
622 The special behavior can be delayed by using the
623 .esc .
624 escape.
626 By using the 
627 .request cc
628 request, the control character can be set to a different character,
629 making the dot
630 .squoted_char .
631 a non-special character.
632 .IP ""
633 In all other positions, it just means a dot character.
635 In text paragraphs, it is advantageous to start each sentence at a
636 line of its own.
639 .character '
640 The single quote has two controlling tasks.
642 At the beginning of a line and in the conditional requests it is the
643 non-breaking control character.
645 That means that it introduces a request like the dot, but with the
646 additional property that this request doesn't cause a linebreak.
648 By using the 
649 .request c2
650 request, the non-break control character can be set to a different
651 character.
653 .IP ""
654 As a second task, it is the most commonly used argument separator in
655 some functional escape sequences (but any pair of characters not part
656 of the argument do work).
658 In all other positions, it denotes the single quote or apostrophe
659 character.
661 Groff provides a printable representation with the
662 .esc (cq
663 escape sequence.
666 .character \[dq]
667 The double quote is used to enclose arguments in requests, macros, and
668 strings.
670 In the
671 .request ds
673 .request as
674 requests, a leading double quote in the argument is stripped off,
675 making everything else afterwards the string to be defined (enabling
676 leading whitespace).
678 The escaped double quote
679 .esc \[dq]
680 introduces a comment.
682 Otherwise, it is not special.
684 Groff provides a printable representation with the
685 .esc (dq
686 escape sequence.
689 .character \[rs]
690 The backslash usually introduces an escape sequence (this can be
691 changed with the
692 .request ec
693 request).
695 A printed version of the escape character is the
696 .esc e
697 escape; a backslash glyph can be obtained by
698 .esc (rs .
700 .character (
701 The open parenthesis is only special in escape sequences when
702 introducing an escape name or argument consisting of exactly two
703 characters.
705 In groff, this behavior can be replaced by the \f[CB][]\f[] construct.
707 .character [
708 The opening bracket is only special in groff escape sequences; there
709 it is used to introduce a long escape name or long escape argument.
711 Otherwise, it is non-special, e.g.\& in macro calls.
713 .character ]
714 The closing bracket is only special in groff escape sequences; there
715 it terminates a long escape name or long escape argument.
717 Otherwise, it is non-special.
719 \f[CI]space\f[]
720 Space characters are only functional characters.
722 They separate the arguments in requests, macros, and strings, and the words
723 in text lines.
725 They are subject to groff's horizontal spacing calculations.
727 To get a defined space width, escape sequences like
728 .squoted_char "\[rs]\ "
729 (this is the escape character followed by a space),
730 .esc | ,
731 .esc ^ ,
733 .esc h
734 should be used.
736 .IP \f[CI]newline\f[]
737 In text paragraphs, newlines mostly behave like space characters.
739 Continuation lines can be specified by an escaped newline, i.e., by
740 specifying a backslash
741 .squoted_char \[rs]
742 as the last character of a line.
743 .IP \f[CI]tab\f[]
744 If a tab character occurs during text the interpreter makes a
745 horizontal jump to the next pre-defined tab position.
747 There is a sophisticated interface for handling tab positions.
750 .\" --------------------------------------------------------------------
751 .SH "NUMERICAL EXPRESSIONS"
752 .\" --------------------------------------------------------------------
755 .B numerical value
756 is a signed or unsigned integer or float with or without an appended
757 scaling indicator.
760 .B scaling indicator
761 is a one-character abbreviation for a unit of measurement.
763 A number followed by a scaling indicator signifies a size value.
765 By default, numerical values do not have a scaling indicator, i.e., they
766 are normal numbers.
770 .I roff
771 language defines the following scaling indicators.
775 .PD 0
778 .TPx
779 .B c
780 Centimeter
782 .TPx
783 .B i
784 Inch
786 .TPx
787 .B P
788 Pica\ \[eq]\ 1/6\ inch
790 .TPx
791 .B p
792 Point\ \[eq]\ 1/72\ inch
794 .TPx
795 .B m
796 Em\ \[eq]\ \f[R]the font size in points (width of letter `\f[CR]m\f[R]')
798 .TPx
799 .B M
800 100\^th \f[R]of an \f[CR]Em
802 .TPx
803 .B n
804 En\ \[eq]\ Em/2
806 .TPx
807 .B u
808 Basic unit for actual output device
810 .TPx
811 .B v
812 Vertical line space in basic units
813 scaled point\ \[eq]\ 1/\f[CI]sizescale\f[R] of a point (defined in
814 font \f[I]DESC\f[] file)
816 .TPx
817 .B f
818 Scale by 65536.
823 .B Numerical expressions
824 are combinations of the numerical values defined above with the
825 following arithmetical operators already defined in classical troff.
828 .PD 0
831 .TPx
832 .B +
833 Addition
835 .TPx
836 .B \-
837 Subtraction
839 .TPx
840 .B *
841 Multiplication
843 .TPx
844 .B /
845 Division
847 .TPx
848 .B %
849 Modulo
851 .TPx
852 .B =
853 Equals
855 .TPx
856 .B ==
857 Equals
859 .TPx
860 .B <
861 Less than
863 .TPx
864 .B >
865 Greater than
867 .TPx
868 .B <=
869 Less or equal
871 .TPx
872 .B >=
873 Greater or equal
875 .TPx
876 .B &
877 Logical and
879 .TPx
880 .B :
881 Logical or
883 .TPx
884 .B !
885 Logical not
887 .TPx
888 .B (
889 Grouping of expressions
891 .TPx
892 .B )
893 Close current grouping
899 Moreover,
900 .I groff
901 added the following operators for numerical expressions:
904 .PD 0
907 .TPx
908 .ExecFF Text I CB e1 >? e2
909 The maximum of
910 .I e1
912 .IR e2 .
914 .TPx
915 .ExecFF Text I CB e1 <? e2
916 The minimum of
917 .I e1
919 .IR e2 .
921 .TPx
922 .ExecFF Text CB I ( c ; e )
923 Evaluate
924 .I e
925 using
926 .I c
927 as the default scaling indicator.
933 For details see the groff info file.
936 .\" --------------------------------------------------------------------
937 .SH CONDITIONS
938 .\" --------------------------------------------------------------------
940 .B Conditions
941 occur in tests raised by the
942 .request if ,
943 .request ie ,
944 and the
945 .request while
946 requests.
948 The following table characterizes the different types of conditions.
951 .PD 0
954 .TPx
955 .I N
956 A numerical expression
957 .I N
958 yields true if its value is greater than\~0.
960 .TPx
961 .BI ! N
962 True if the value of
963 .I I
964 is\~0.
966 .TPx
967 .BI ' s1 ' s2 '
968 True if string\~\c
969 .I s1
970 is identical to string\~\c
971 .IR s2 .
973 .TPx
974 .BI !' s1 ' s2 '
975 True if string\~\c
976 .I s1
977 is not identical to string\~\c
978 .IR s2 .
980 .TPx
981 .BI c ch
982 True if there is a character\~\c
983 .I ch
984 available.
986 .TPx
987 .BI d name
988 True if there is a string, macro, diversion, or request called
989 .IR name .
991 .TPx
992 .B e
993 Current page number is even.
995 .TPx
996 .B o
997 Current page number is odd.
999 .TPx
1000 .BI m name
1001 True if there is a color called
1002 .IR name .
1004 .TPx
1005 .B n
1006 Formatter is
1007 .BR nroff .
1009 .TPx
1010 .BI r reg
1011 True if there is a register named
1012 .IR reg .
1014 .TPx
1015 .B t
1016 Formatter is
1017 .BR troff .
1019 .TPx
1020 .BI F font
1021 True if there exists a font named
1022 .IR font .
1024 .TPx
1025 .BI S style
1026 True if a style named
1027 .I style
1028 has been registered.
1034 .\" --------------------------------------------------------------------
1035 .SH REQUESTS
1036 .\" --------------------------------------------------------------------
1038 This section provides a short reference for the predefined requests.
1040 In groff, request and macro names can be arbitrarily long.
1042 No bracketing or marking of long names is needed.
1045 Most requests take one or more arguments.
1047 The arguments are separated by space characters (no tabs!); there is
1048 no inherent limit for their length or number.
1050 An argument can be enclosed by a pair of double quotes.
1052 This is very handy if an argument contains space characters, e.g.,
1053 .RI \[dq] "arg with space" \[dq]
1054 denotes a single argument.
1057 Some requests have optional arguments with a different behaviour.
1059 Not all of these details are outlined here.
1061 Refer to the groff info file and
1062 .BR groff_diff (@MAN7EXT@)
1063 for all details.
1066 In the following request specifications, most argument names were
1067 chosen to be descriptive.
1069 Only the following denotations need clarification.
1072 .PD 0
1075 .TPx
1076 .I c
1077 denotes a single character.
1079 .TPx
1080 .I font
1081 a font either specified as a font name or a font number.
1083 .TPx
1084 .I anything
1085 all characters up to the end of the line or within
1086 .esc {
1088 .esc } .
1090 .TPx
1091 .I n
1092 is a numerical expression that evaluates to an integer value.
1094 .TPx
1095 .I N
1096 is an arbitrary numerical expression, signed or unsigned.
1098 .TPx
1099 .I \[+-]N
1100 has three meanings depending on its sign, described below.
1106 If an expression defined as
1107 .I \[+-]N
1108 starts with a
1109 .squoted_char +
1110 sign the resulting value of the expression is added to an already
1111 existing value inherent to the related request, e.g.\& adding to a number
1112 register.
1114 If the expression starts with a
1115 .squoted_char -
1116 the value of the expression is subtracted from the request value.
1119 Without a sign,
1120 .I N
1121 replaces the existing value directly.
1123 To assign a negative number either prepend\~0 or enclose the negative
1124 number in parentheses.
1127 .\" --------------------------------------------------------------------
1128 .SS "Request Short Reference"
1129 .\" --------------------------------------------------------------------
1131 .PD 0
1133 .REQ .
1134 Empty line, ignored.
1136 Useful for structuring documents.
1138 .REQ .\[rs]\[dq] anything
1139 Complete line is a comment.
1141 .REQ .ab string
1142 Print
1143 .I string
1144 on standard error, exit program.
1146 .REQ .ad
1147 Begin line adjustment for output lines in current adjust mode.
1149 .REQ .ad c
1150 Start line adjustment in mode
1151 .I c
1152 (\f[CI]c\f[]\f[CR]\|\^\[eq]\|l,r,b,n\f[]).
1154 .REQ .af register c
1155 Assign format
1156 .I c
1158 .I register
1159 (\f[CI]c\f[]\f[CR]\|\^\[eq]\|l,i,I,a,A\f[]).
1161 .REQ .aln alias register
1162 Create alias name for
1163 .IR register .
1165 .REQ .als alias object
1166 Create alias name for request, string, macro, or diversion
1167 .IR object .
1169 .REQ .am macro
1170 Append to
1171 .I macro
1172 until
1173 .B ..\&
1174 is encountered.
1176 .REQ .am macro end
1177 Append to
1178 .I macro
1179 until
1180 .request .end
1181 is called.
1183 .REQ .am1 macro
1184 Same as
1185 .request .am
1186 but with compatibility mode switched off during macro expansion.
1188 .REQ .am1 macro end
1189 Same as
1190 .request .am
1191 but with compatibility mode switched off during macro expansion.
1193 .REQ .ami macro
1194 Append to a macro whose name is contained in the string register
1195 .I macro
1196 until
1197 .B ..\&
1198 is encountered.
1200 .REQ .ami macro end
1201 Append to a macro indirectly.
1202 .I macro
1204 .I end
1205 are string registers whose contents are interpolated for the macro name
1206 and the end macro, respectively.
1208 .REQ .ami1 macro
1209 Same as
1210 .request .ami
1211 but with compatibility mode switched off during macro expansion.
1213 .REQ .ami1 macro end
1214 Same as
1215 .request .ami
1216 but with compatibility mode switched off during macro expansion.
1218 .REQ .as stringvar anything
1219 Append
1220 .I anything
1222 .IR stringvar .
1224 .REQ .as1 stringvar anything
1225 Same as
1226 .request .as
1227 but with compatibility mode switched off during string expansion.
1229 .REQ .asciify diversion
1230 Unformat ASCII characters, spaces, and some escape sequences in
1231 .IR diversion .
1233 .REQ .backtrace
1234 Print a backtrace of the input on stderr.
1236 .REQ .bd font N
1237 Embolden
1238 .I font
1240 .IR N -1
1241 units.
1243 .REQ .bd S font N
1244 Embolden Special Font
1245 .I S
1246 when current font is
1247 .IR font .
1249 .REQ .blm
1250 Unset the blank line macro.
1252 .REQ .blm macro
1253 Set the blank line macro to
1254 .IR macro .
1256 .REQ .box
1257 End current diversion.
1259 .REQ .box macro
1260 Divert to
1261 .IR macro ,
1262 omitting a partially filled line.
1264 .REQ .boxa
1265 End current diversion.
1267 .REQ .boxa macro
1268 Divert and append to
1269 .IR macro ,
1270 omitting a partially filled line.
1272 .REQ .bp
1273 Eject current page and begin new page.
1275 .REQ .bp \[+-]N
1276 Eject current page; next page number
1277 .IR \[+-]N .
1279 .REQ .br
1280 Line break.
1282 .REQ .brp
1283 Break and spread output line.
1284 Same as
1285 .esc p .
1287 .REQ .break
1288 Break out of a while loop.
1290 .REQ .c2
1291 Reset no-break control character to
1292 .dquoted_char ' .
1294 .REQ .c2 c
1295 Set no-break control character to
1296 .IR c .
1298 .REQ .cc
1299 Reset control character to
1300 .squoted_char . .
1302 .REQ .cc c
1303 Set control character to
1304 .IR c .
1306 .REQ .ce
1307 Center the next input line.
1309 .REQ .ce N
1310 Center following
1311 .I N
1312 input lines.
1314 .REQ .cf filename
1315 Copy contents of file
1316 .I filename
1317 unprocessed to stdout or to the diversion.
1319 .REQ .cflags mode c1 c2 .\|.\|.\&
1320 Treat characters
1321 .IR c1 ,
1322 .IR c2 ,
1323 .I .\|.\|.\&
1324 according to
1325 .I mode
1326 number.
1328 .REQ .ch trap N
1329 Change
1330 .I trap
1331 location
1333 .IR N .
1335 .REQ .char c anything
1336 Define character
1337 .I c
1338 as string
1339 .IR anything .
1341 .REQ .chop object
1342 Chop the last character off macro, string, or diversion
1343 .IR object .
1345 .REQ .close stream
1346 Close the
1347 .IR stream .
1349 .REQ .color
1350 Enable colors.
1352 .REQ .color N
1354 .I N
1355 is zero disable colors, otherwise enable them.
1357 .REQ .composite from to
1358 Map glyph name
1359 .I from
1360 to glyph name
1361 .I to
1362 while constructing a composite glyph name.
1364 .REQ .continue
1365 Finish the current iteration of a while loop.
1367 .REQ .cp
1368 Enable compatibility mode.
1370 .REQ .cp N
1372 .I N
1373 is zero disable compatibility mode, otherwise enable it.
1375 .REQ .cs font N M
1376 Set constant character width mode for
1377 .I font
1379 .IR N /36
1380 ems with em
1381 .IR M .
1383 .REQ .cu N
1384 Continuous underline in nroff, like
1385 .request .ul
1386 in troff.
1388 .REQ .da
1389 End current diversion.
1391 .REQ .da macro
1392 Divert and append to
1393 .IR macro .
1395 .REQ .de macro
1396 Define or redefine
1397 .I macro
1398 until
1399 .B ..\&
1400 is encountered.
1402 .REQ .de macro end
1403 Define or redefine
1404 .I macro
1405 until
1406 .request .end
1407 is called.
1409 .REQ .de1 macro
1410 Same as
1411 .request .de
1412 but with compatibility mode switched off during macro expansion.
1414 .REQ .de1 macro end
1415 Same as
1416 .request .de
1417 but with compatibility mode switched off during macro expansion.
1419 .REQ .defcolor color scheme component
1420 Define or redefine a color with name
1421 .IR color .
1422 .I scheme
1423 can be
1424 .BR rgb ,
1425 .BR cym ,
1426 .BR cymk ,
1427 .BR gray ,
1429 .BR grey .
1430 .I component
1431 can be single components specified as fractions in the range 0 to 1
1432 (default scaling indicator\~\c
1433 .scaleindicator f ),
1434 as a string of two-digit hexadecimal color components with a leading
1435 .BR # ,
1436 or as a string of four-digit hexadecimal components with two leading
1437 .BR # .
1438 The color
1439 .B default
1440 can't be redefined.
1442 .REQ .dei macro
1443 Define or redefine a macro whose name is contained in the string register
1444 .I macro
1445 until
1446 .B ..\&
1447 is encountered.
1449 .REQ .dei macro end
1450 Define or redefine a macro indirectly.
1451 .I macro
1453 .I end
1454 are string registers whose contents are interpolated for the macro name
1455 and the end macro, respectively.
1457 .REQ .dei1 macro
1458 Same as
1459 .request .dei
1460 but with compatibility mode switched off during macro expansion.
1462 .REQ .dei1 macro end
1463 Same as
1464 .request .dei
1465 but with compatibility mode switched off during macro expansion.
1467 .REQ .device anything
1468 Write
1469 .I anything
1470 to the intermediate output as a device control function.
1472 .REQ .devicem name
1473 Write contents of macro or string
1474 .I name
1475 uninterpreted to the intermediate output as a device control function.
1477 .REQ .di
1478 End current diversion.
1480 .REQ .di macro
1481 Divert to
1482 .IR macro .
1484 .REQ .do name
1485 Interpret
1486 .request .name
1487 with compatibility mode disabled.
1489 .REQ .ds stringvar anything
1491 .I stringvar
1493 .IR anything .
1495 .REQ .ds1 stringvar anything
1496 Same as
1497 .request .ds
1498 but with compatibility mode switched off during string expansion.
1500 .REQ .dt N trap
1501 Set diversion trap to position
1502 .I N
1503 (default scaling indicator\~\c
1504 .scaleindicator v ).
1506 .REQ .ec
1507 Reset escape character to
1508 .squoted_char \[rs] .
1510 .REQ .ec c
1511 Set escape character to
1512 .IR c .
1514 .REQ .ecr
1515 Restore escape character saved with
1516 .request .ecs .
1518 .REQ .ecs
1519 Save current escape character.
1521 .REQ .el anything
1522 Else part for if-else (\c
1523 .request ie )
1524 request.
1526 .REQ .em macro
1528 .I macro
1529 is run after the end of input.
1531 .REQ .eo
1532 Turn off escape character mechanism.
1534 .REQ .ev
1535 Switch to previous environment.
1537 .REQ .ev env
1538 Push down environment number or name
1539 .I env
1540 and switch to it.
1542 .REQ .evc env
1543 Copy the contents of environment
1544 .I env
1545 to the current environment.
1546 No pushing or popping.
1548 .REQ .ex
1549 Exit from roff processing.
1551 .REQ .fam
1552 Return to previous font family.
1554 .REQ .fam name
1555 Set the current font family to
1556 .IR name .
1558 .REQ .fc
1559 Disable field mechanism.
1561 .REQ .fc a
1562 Set field delimiter to
1563 .I a
1564 and pad character to space.
1566 .REQ .fc a b
1567 Set field delimiter to
1568 .I a
1569 and pad character to
1570 .IR b .
1572 .REQ .fchar c anything
1573 Define fallback character
1574 .I c
1575 as string
1576 .IR anything .
1578 .REQ .fcolor
1579 Set fill color to previous fill color.
1581 .REQ .fcolor c
1582 Set fill color to
1583 .IR c .
1585 .REQ .fi
1586 Fill output lines.
1588 .REQ .fl
1589 Flush output buffer.
1591 .REQ .fp n font
1592 Mount
1593 .I font
1594 on position
1595 .IR n .
1597 .REQ .fp n internal external
1598 Mount font with long
1599 .I external
1600 name to short
1601 .I internal
1602 name on position
1603 .IR n .
1605 .REQ .fschar f c anything
1606 Define fallback character
1607 .I c
1608 for font
1609 .I f
1610 as string
1611 .IR anything .
1613 .REQ .fspecial font
1614 Reset list of special fonts for
1615 .I font
1616 to be empty.
1618 .REQ .fspecial font s1 s2 .\|.\|.\&
1619 When the current font is
1620 .IR font ,
1621 then the fonts
1622 .IR s1 ,
1623 .IR s2 ,
1624 .I .\|.\|.\&
1625 are special.
1627 .REQ .ft
1628 Return to previous font.
1629 Same as
1630 .request \[rs]f[]
1632 .request \[rs]fP .
1634 .REQ .ft font
1635 Change to font name or number
1636 .IR font ;
1637 same as
1638 .esc[] f font
1639 escape sequence.
1641 .REQ .ftr font1 font2
1642 Translate
1643 .I font1
1645 .IR font2 .
1647 .REQ .fzoom font
1648 Don't magnify
1649 .IR font .
1651 .REQ .fzoom font zoom
1652 Set zoom factor for
1653 .I font
1654 (in multiples of 1/1000th).
1656 .REQ .gcolor
1657 Set glyph color to previous glyph color.
1659 .REQ .gcolor c
1660 Set glyph color to
1661 .IR c .
1663 .REQ .hc
1664 Remove additional hyphenation indicator character.
1666 .REQ .hc c
1667 Set up additional hyphenation indicator character\~\c
1668 .IR c .
1670 .REQ .hcode c1 code1 c2 code2 .\|.\|.\&
1671 Set the hyphenation code of character
1672 .I c1
1674 .IR code1 ,
1675 that of
1676 .I c2
1678 .IR code2 ,
1679 etc.
1681 .REQ .hla lang
1682 Set the current hyphenation language to
1683 .IR lang .
1685 .REQ .hlm n
1686 Set the maximum number of consecutive hyphenated lines to
1687 .IR n .
1689 .REQ .hpf file
1690 Read hyphenation patterns from
1691 .IR file .
1693 .REQ .hpfa file
1694 Append hyphenation patterns from
1695 .IR file .
1697 .REQ .hpfcode a b c d .\|.\|.\&
1698 Set input mapping for
1699 .request .hpf .
1701 .REQ .hw words
1702 List of
1703 .I words
1704 with exceptional hyphenation.
1706 .REQ .hy N
1707 Switch to hyphenation mode
1708 .IR N .
1710 .REQ .hym n
1711 Set the hyphenation margin to
1712 .I n
1713 (default scaling indicator\~\c
1714 .scaleindicator m ).
1716 .REQ .hys n
1717 Set the hyphenation space to
1718 .IR n .
1720 .REQ .ie cond anything
1722 .I cond
1723 then
1724 .I anything
1725 else goto
1726 .request .el .
1728 .REQ .if cond anything
1730 .I cond
1731 then
1732 .IR anything ;
1733 otherwise do nothing.
1735 .REQ .ig
1736 Ignore text until
1737 .B ..\&
1738 is encountered.
1740 .REQ .ig end
1741 Ignore text until
1742 .request .end .
1744 .REQ .in
1745 Change to previous indent value.
1747 .REQ .in \[+-]N
1748 Change indent according to
1749 .I \[+-]N
1750 (default scaling indicator\~\c
1751 .scaleindicator m ).
1753 .REQ .it N trap
1754 Set an input-line count trap for the next
1755 .I N
1756 lines.
1758 .REQ .itc N trap
1759 Same as
1760 .request .it
1761 but count lines interrupted with
1762 .esc c
1763 as one line.
1765 .REQ .kern
1766 Enable pairwise kerning.
1768 .REQ .kern n
1770 .I n
1771 is zero, disable pairwise kerning, otherwise enable it.
1773 .REQ .lc
1774 Remove leader repetition character.
1776 .REQ .lc c
1777 Set leader repetition character to\~\c
1778 .IR c .
1780 .REQ .length register anything
1781 Write the length of the string
1782 .I anything
1784 .IR register .
1786 .REQ .linetabs
1787 Enable line-tabs mode (i.e., calculate tab positions relative to output
1788 line).
1790 .REQ .linetabs n
1792 .I n
1793 is zero, disable line-tabs mode, otherwise enable it.
1795 .REQ .lf N
1796 Set input line number to
1797 .IR N .
1799 .REQ .lf N file
1800 Set input line number to
1801 .I N
1802 and filename to
1803 .IR file .
1805 .REQ .lg N
1806 Ligature mode on if
1807 .IR N >0.
1809 .REQ .ll
1810 Change to previous line length.
1812 .REQ .ll \[+-]N
1813 Set line length according to
1814 .I \[+-]N
1815 (default size
1816 .scalednumber 6.5 i ,
1817 default scaling indicator\~\c
1818 .scaleindicator m ).
1820 .REQ .ls
1821 Change to the previous value of additional intra-line skip.
1823 .REQ .ls N
1824 Set additional intra-line skip value to
1825 .IR N ,
1826 i.e.,
1827 .IR N -1
1828 blank lines are inserted after each text output line.
1830 .REQ .lt \[+-]N
1831 Length of title (default scaling indicator\~\c
1832 .scaleindicator m ).
1834 .REQ .mc
1835 Margin character off.
1837 .REQ .mc c
1838 Print character
1839 .I c
1840 after each text line at actual distance from right margin.
1842 .REQ .mc c N
1843 Set margin character to
1844 .I c
1845 and distance to
1846 .I N
1847 from right margin (default scaling indicator\~\c
1848 .scaleindicator m ).
1850 .REQ .mk register
1851 Mark current vertical position in
1852 .IR register .
1854 .REQ .mso file
1855 The same as the .so request except that
1856 .I file
1857 is searched in the tmac directories.
1859 .REQ .na
1860 No output-line adjusting.
1862 .REQ .ne
1863 Need a one-line vertical space.
1865 .REQ .ne N
1866 Need
1867 .I N
1868 vertical space (default scaling indicator\~\c
1869 .scaleindicator v ).
1871 .REQ .nf
1872 No filling or adjusting of output-lines.
1874 .REQ .nh
1875 No hyphenation.
1877 .REQ .nm
1878 Number mode off.
1880 .REQ .nm \[+-]N \fR[\fPM \fR[\fPS \fR[\fPI\fR]]]\fP
1881 In line number mode, set number, multiple, spacing, and indent.
1883 .REQ .nn
1884 Do not number next line.
1886 .REQ .nn N
1887 Do not number next
1888 .I N
1889 lines.
1891 .REQ .nop anything
1892 Always execute
1893 .IR anything .
1895 .REQ .nr register \[+-]N M
1896 Define or modify
1897 .I register
1898 using
1899 .I \[+-]N
1900 with auto-increment
1901 .IR M .
1903 .REQ .nroff
1904 Make the built-in condition
1905 .B n
1906 true and
1907 .B t
1908 false.
1910 .REQ .ns
1911 Turn no-space mode on.
1913 .REQ .nx
1914 Immediately jump to end of current file.
1916 .REQ .nx filename
1917 Next file.
1919 .REQ .open stream filename
1920 Open
1921 .register filename
1922 for writing and associate the stream named
1923 .register stream
1924 with it.
1926 .REQ .opena stream filename
1927 Like
1928 .request .open
1929 but append to it.
1931 .REQ .os
1932 Output vertical distance that was saved by the
1933 .request sv
1934 request.
1936 .REQ .output string
1937 Emit
1938 .I string
1939 directly to intermediate output, allowing leading whitespace if
1940 .I string
1941 starts with
1942 .character \[dq]
1943 (which is stripped off).
1945 .REQ .pc
1946 Reset page number character to\~\c
1947 .squoted_char % .
1949 .REQ .pc c
1950 Page number character.
1952 .REQ .pev
1953 Print the current environment and each defined environment
1954 state to stderr.
1956 .REQ .pi program
1957 Pipe output to
1958 .I program
1959 (nroff only).
1961 .REQ .pl
1962 Set page length to default
1963 .scalednumber 11 i .
1964 The current page length is stored in
1965 .register .p .
1967 .REQ .pl \[+-]N
1968 Change page length to
1969 .I \[+-]N
1970 (default scaling indicator\~\c
1971 .scaleindicator v ).
1973 .REQ .pm
1974 Print macro names and sizes (number of blocks of 128 bytes).
1976 .REQ ".pm t"
1977 Print only total of sizes of macros (number of 128 bytes blocks).
1979 .REQ .pn \[+-]N
1980 Next page number
1981 .IR N .
1983 .REQ .pnr
1984 Print the names and contents of all currently defined number registers
1985 on stderr.
1987 .REQ .po
1988 Change to previous page offset.
1990 The current page offset is available in
1991 .register .o .
1993 .REQ .po \[+-]N
1994 Page offset
1995 .IR N .
1997 .REQ .ps
1998 Return to previous point-size.
1999 .REQ .ps \[+-]N
2000 Point size; same as
2001 .esc[] s \[+-]N .
2003 .REQ .psbb filename
2004 Get the bounding box of a PostScript image
2005 .IR filename .
2007 .REQ .pso command
2008 This behaves like the
2009 .request so
2010 request except that input comes from the standard output of
2011 .IR command .
2013 .REQ .ptr
2014 Print the names and positions of all traps (not including input line
2015 traps and diversion traps) on stderr.
2017 .REQ .pvs
2018 Change to previous post-vertical line spacing.
2020 .REQ .pvs \[+-]N
2021 Change post-vertical line spacing according to
2022 .I \[+-]N
2023 (default scaling indicator\~\c
2024 .scaleindicator p ).
2026 .REQ .rchar c1 c2 .\|.\|.\&
2027 Remove the definitions of characters
2028 .IR c1 ,
2029 .IR c2 ,
2030 .I .\|.\|.\&
2032 .REQ .rd prompt
2033 Read insertion.
2035 .REQ .return
2036 Return from a macro.
2038 .REQ .return anything
2039 Return twice, namely from the macro at the current level and from the macro
2040 one level higher.
2042 .REQ .rfschar f c1 c2 .\|.\|.\&
2043 Remove the definitions of characters
2044 .IR c1 ,
2045 .IR c2 ,
2046 .I .\|.\|.\&
2047 for font
2048 .IR f .
2050 .REQ .rj n
2051 Right justify the next
2052 .I n
2053 input lines.
2055 .REQ .rm name
2056 Remove request, macro, or string
2057 .IR name .
2059 .REQ .rn old new
2060 Rename request, macro, or string
2061 .I old
2063 .IR new .
2065 .REQ .rnn reg1 reg2
2066 Rename register
2067 .I reg1
2069 .IR reg2 .
2071 .REQ .rr register
2072 Remove
2073 .IR register .
2075 .REQ .rs
2076 Restore spacing; turn no-space mode off.
2078 .REQ .rt \[+-]N
2079 Return
2080 .I (upward only)
2081 to marked vertical place (default scaling indicator\~\c
2082 .scaleindicator v ).
2084 .REQ .schar c anything
2085 Define global fallback character
2086 .I c
2087 as string
2088 .IR anything .
2090 .REQ .shc
2091 Reset soft hyphen character to
2092 .esc (hy .
2094 .REQ .shc c
2095 Set the soft hyphen character to
2096 .IR c .
2098 .REQ .shift n
2099 In a macro, shift the arguments by
2100 .IR n \~\c
2101 positions.
2103 .REQ .sizes s1 s2 .\|.\|.\& sn \fB[0]\fP
2104 Set available font sizes similar to the
2105 .B sizes
2106 command in a
2107 .B DESC
2108 file.
2110 .REQ .so filename
2111 Include source file.
2113 .REQ .sp
2114 Skip one line vertically.
2116 .REQ .sp N
2117 Space vertical distance
2118 .I N
2119 up or down according to sign of
2120 .I N
2121 (default scaling indicator\~\c
2122 .scaleindicator v ).
2124 .REQ .special
2125 Reset global list of special fonts to be empty.
2127 .REQ .special s1 s2 .\|.\|.\&
2128 Fonts
2129 .IR s1 ,
2130 .IR s2 ,
2131 etc.\& are special and are searched for characters not in the
2132 current font.
2134 .REQ .spreadwarn
2135 Toggle the spread warning on and off without changing its value.
2137 .REQ .spreadwarn limit
2138 Emit a warning if each space in an output line is widened by
2139 .I limit
2140 or more (default scaling indicator\~\c
2141 .scaleindicator m ).
2143 .REQ .ss N
2144 Space-character size set to
2145 .IR N /12
2146 of the spacewidth in the current font.
2148 .REQ .ss N M
2149 Space-character size set to
2150 .IR N /12
2151 and sentence space size set to
2152 .IR M /12
2153 of the spacewidth in the current font (\f[CR]\[eq]1/3 em\f[]).
2155 .REQ .sty n style
2156 Associate
2157 .I style
2158 with font position
2159 .IR n .
2161 .REQ .substring xx n1 n2
2162 Replace the string named
2163 .I xx
2164 with the substring defined by the indices
2165 .I n1
2167 .IR n2 .
2169 .REQ .sv
2170 Save
2171 .scalednumber 1 v
2172 of vertical space.
2174 .REQ .sv N
2175 Save the vertical distance
2176 .I N
2177 for later output with
2178 .request os
2179 request.
2181 .REQ .sy command-line
2182 Execute program
2183 .IR command-line .
2185 .REQ ".ta T" N
2186 Set tabs after every position that is a multiple of
2187 .I N
2188 (default scaling indicator\~\c
2189 .scaleindicator m ).
2190 .REQ .ta n1 n2 .\|.\|.\& nn \f[CB]T\f[] r1 r2 .\|.\|.\& rn
2191 Set tabs at positions
2192 .IR n1 ,
2193 .IR n2 ,
2194 .Text .\|.\|.,
2195 .IR nn ,
2196 then set tabs at
2197 .IR nn + r1 ,
2198 .IR nn + r2 ,
2199 .Text .\|.\|.,
2200 .IR nn + rn ,
2201 then at
2202 .IR nn + rn + r1 ,
2203 .IR nn + rn + r2 ,
2204 .Text .\|.\|.,
2205 .IR nn + rn + rn ,
2206 and so on.
2208 .\".REQ .tar
2209 .\"Restore internally saved tab positions.
2210 .\".
2211 .\".REQ .tas
2212 .\"Save tab positions internally.
2214 .REQ .tc
2215 Remove tab repetition character.
2216 .REQ .tc c
2217 Set tab repetition character to\~\c
2218 .IR c .
2220 .REQ .ti \[+-]N
2221 Temporary indent next line (default scaling indicator\~\c
2222 .scaleindicator m ).
2224 .REQ .tkf font s1 n1 s2 n2
2225 Enable track kerning for
2226 .IR font .
2228 .REQ .tl \f[CB]\[cq]\f[]left\f[CB]\[cq]\f[]center\f[CB]\[cq]\f[]right\f[CB]\[cq]\f[]
2229 Three-part title.
2231 .REQ .tm anything
2232 Print
2233 .I anything
2234 on terminal (UNIX standard message output).
2236 .REQ .tm1 anything
2237 Print
2238 .I anything
2239 on terminal (UNIX standard message output), allowing leading
2240 whitespace if
2241 .I anything
2242 starts with
2243 .character \[dq]
2244 (which is stripped off).
2246 .REQ .tmc anything
2247 Similar to
2248 .request .tm1
2249 without emitting a final newline.
2251 .REQ .tr abcd.\|.\|.\&
2252 Translate
2253 .I a
2255 .IR b ,
2256 .I c
2258 .IR d ,
2259 etc.\& on output.
2261 .REQ .trf filename
2262 Transparently output the contents of file
2263 .IR filename .
2265 .REQ .trin abcd.\|.\|.\&
2266 This is the same as the
2267 .request tr
2268 request except that the
2269 .B asciify
2270 request uses the character code (if any) before the character
2271 translation.
2273 .REQ .trnt abcd.\|.\|.\&
2274 This is the same as the
2275 .request tr
2276 request except that the translations do not apply to text that is
2277 transparently throughput into a diversion with
2278 .esc ! .
2280 .REQ .troff
2281 Make the built-in condition
2282 .B t
2283 true and
2284 .B n
2285 false.
2287 .REQ .uf font
2288 Underline font set to
2289 .I font
2290 (to be switched to by
2291 .request .ul ).
2293 .REQ .ul N
2294 Underline (italicize in troff)
2295 .I N
2296 input lines.
2298 .REQ .unformat diversion
2299 Unformat space characters and tabs, preserving font information in
2300 .IR diversion .
2301 .REQ .vpt n
2302 Enable vertical position traps if
2303 .I n
2304 is non-zero, disable them otherwise.
2306 .REQ .vs
2307 Change to previous vertical base line spacing.
2309 .REQ .vs \[+-]N
2310 Set vertical base line spacing according to
2311 .I \[+-]N
2312 (default scaling indicator\~\c
2313 .scaleindicator p ).
2314 Default value is
2315 .scalednumber 12 p .
2317 .REQ .warn n
2318 Set warnings code to
2319 .IR n .
2321 .REQ .warnscale si
2322 Set scaling indicator used in warnings to
2323 .IR si .
2325 .REQ .wh N
2326 Remove (first) trap at position
2327 .IR N .
2329 .REQ .wh N trap
2330 Set location trap; negative means from page bottom.
2332 .REQ .while cond anything
2333 While condition
2334 .I cond
2335 is true, accept
2336 .I anything
2337 as input.
2339 .REQ .write stream anything
2340 Write
2341 .I anything
2342 to the stream named
2343 .IR stream .
2345 .REQ .writec stream anything
2346 Similar to
2347 .request .write
2348 without emitting a final newline.
2350 .REQ .writem stream xx
2351 Write contents of macro or string
2352 .I xx
2353 to the stream named
2354 .IR stream .
2359 Besides these standard groff requests, there might be further macro
2360 calls.
2361 They can originate from a macro package (see
2362 .BR roff (@MAN7EXT@)
2363 for an overview) or from a preprocessor.
2366 Preprocessor macros are easy to be recognized.
2368 They enclose their code into a pair of characteristic macros.
2372 box, center, tab (@);
2373 c | c | c
2374 CfCB | CfCB | CfCB.
2375 preprocessor@start macro@ end macro
2377 eqn@.EQ@.EN
2378 grap@.G1@.G2
2379 grn@.GS@.GE
2380 pic@.PS@.PE
2381 refer@.R1@.R2
2382 soelim@\f[I]none@\f[I]none
2383 tbl@.TS@.TE
2388 .\" --------------------------------------------------------------------
2389 .SH "ESCAPE SEQUENCES"
2390 .\" --------------------------------------------------------------------
2392 Escape sequences are in-line language elements usually introduced by a
2393 backslash
2394 .squoted_char \[rs]
2395 and followed by an escape name and sometimes by a required argument.
2397 Input processing is continued directly after the escaped character or
2398 the argument resp.\& without an intervening separation character.
2400 So there must be a way to determine the end of the escape name and the
2401 end of the argument.
2404 This is done by enclosing names (escape name and arguments consisting
2405 of a variable name) by a pair of brackets
2406 .BI \[lB] name \[rB] 
2407 and constant arguments (number expressions and characters) by
2408 apostrophes (ASCII 0x27) like
2409 .BI \[cq] constant \[cq] \f[R].
2412 There are abbreviations for short names.
2414 Two character escape names can be specified by an opening parenthesis
2415 like
2416 .esc ( xy
2417 without a closing counterpart.
2419 And all one-character names different from the special characters
2420 .squoted_char [
2422 .squoted_char (
2423 can even be specified without a marker in the form
2424 .esc c .
2427 Constant arguments of length\~1 can omit the marker apostrophes, too,
2428 but there is no two-character analogue.
2431 While 1-character escape sequences are mainly used for in-line
2432 functions and system related tasks, the 2-letter names following the
2433 .esc (
2434 construct are used for special characters predefined by the roff system.
2436 Escapes sequences with names of more than two characters
2437 .esc[] "" name
2438 denote user defined named characters (see the
2439 .request char
2440 request).
2443 .\" --------------------------------------------------------------------
2444 .SS "Single Character Escapes"
2445 .\" --------------------------------------------------------------------
2447 .PD 0
2449 .\" --------- comments ---------
2451 .ESC \[dq]
2452 Beginning of a comment.
2454 Everything up to the end of the line is ignored.
2456 .ESC #
2457 Everything up to and including the next newline is ignored.
2459 This is interpreted in copy mode.
2461 This is like
2462 .esc \[dq]
2463 except that the terminating newline is ignored as well.
2465 .\" --------- strings ---------
2467 .ESC *\f[I]s\f[]
2468 The string stored in the string variable with 1-character name
2469 .IR s .
2471 .ESC *(\f[I]st\f[]
2472 The string stored in the string variable with 2-character name
2473 .IR st .
2475 .ESC[] * "stringvar arg1 arg2 .\|.\|."
2476 The string stored in the string variable with arbitrary length name
2477 .IR stringvar ,
2478 taking
2479 .IR arg1 ,
2480 .IR arg2 ,
2481 .I .\|.\|.\&
2482 as arguments.
2484 .\" --------- macro arguments ---------
2486 .ESC $0
2487 The name by which the current macro was invoked.
2490 .request als
2491 request can make a macro have more than one name.
2493 .ESC $ x
2494 Macro or string argument with 1-place number
2495 .IR x ,
2496 where
2497 .I x
2498 is a digit between 1 and 9.
2500 .ESC $( xy
2501 Macro or string argument with 2-digit number
2502 .IR xy .
2504 .ESC[] $ nexp
2505 Macro or string argument with number
2506 .IR nexp ,
2507 where
2508 .I nexp
2509 is a numerical expression evaluating to an integer \[>=]1.
2511 .ESC $*
2512 In a macro or string, the concatenation of all the arguments separated
2513 by spaces.
2515 .ESC $@
2516 In a macro or string, the concatenation of all the arguments with each
2517 surrounded by double quotes, and separated by spaces.
2519 .ESC $^
2520 In a macro, the representation of all parameters as if they were an
2521 argument to the
2522 .request ds
2523 request.
2525 .\" --------- escaped characters ---------
2527 .ESC \[rs]
2528 reduces to a single backslash; useful to delay its interpretation as
2529 escape character in copy mode.
2531 For a printable backslash, use
2532 .esc e ,
2533 or even better
2534 .esc [rs] ,
2535 to be independent from the current escape character.
2537 .ESC \[cq]
2538 The acute accent \[aa]; same as
2539 .esc (aa .
2540 Unescaped: apostrophe, right quotation mark, single quote (ASCII 0x27).
2542 .ESC `
2543 The grave accent \[ga]; same as
2544 .esc (ga .
2545 Unescaped: left quote, backquote (ASCII 0x60).
2547 .ESC \-
2548 The \- sign in the current font.
2550 .ESC .
2551 An uninterpreted dot (period), even at start of line.
2553 .ESC %
2554 Default optional hyphenation character.
2556 .ESC !
2557 Transparent line indicator.
2559 .ESC? anything
2560 In a diversion, this transparently embeds
2561 .I anything
2562 in the diversion.
2563 .I anything
2564 is read in copy mode.
2566 See also the escape sequences
2567 .esc !
2569 .esc ? .
2572 .\" --------- spacing ---------
2574 .ESC \& space
2575 Unpaddable space-size space character (no line break).
2577 .ESC 0
2578 Digit width.
2580 .ESC |
2581 1/6\ em narrow space character; zero width in nroff.
2583 .ESC ^
2584 1/12\ em half-narrow space character; zero width in nroff.
2586 .ESC &
2587 Non-printable, zero width character.
2589 .ESC )
2590 Like
2591 .esc &
2592 except that it behaves like a character declared with the cflags
2593 request to be transparent for the purposes of end of sentence
2594 recognition.
2596 .ESC /
2597 Increases the width of the preceding character so that the spacing
2598 between that character and the following character is correct if
2599 the following character is a roman character.
2601 .ESC ,
2602 Modifies the spacing of the following character so that the spacing
2603 between that character and the preceding character is correct if the
2604 preceding character is a roman character.
2606 .ESC ~
2607 Unbreakable space that stretches like a normal inter-word space when a
2608 line is adjusted.
2610 .ESC :
2611 Inserts a zero-width break point (similar to
2612 .esc %
2613 but without a soft hyphen character).
2615 .ESC "" newline
2616 Ignored newline, for continuation lines.
2618 .\" --------- structuring ---------
2620 .ESC {
2621 Begin conditional input.
2623 .ESC }
2624 End conditional input.
2626 .\" --------- longer escape names ---------
2628 .ESC ( sc
2629 The special character with 2-character name
2630 .IR sc ,
2631 see section
2632 .BR "Special Characters" .
2634 .ESC[] "" name
2635 The named character (or rather glyph) with arbitrary length name
2636 .IR name .
2638 .ESC[] "" "comp1 comp2 .\|.\|."
2639 A composite glyph with components
2640 .IR comp1 ,
2641 .IR comp2 ,
2642 .I .\|.\|.
2644 .\" --------- alphabetical escapes ---------
2646 .ESC a
2647 Non-interpreted leader character.
2649 .ESCq A anything
2651 .I anything
2652 is acceptable as a name of a string, macro, diversion, register,
2653 environment or font it expands to\~1, and to\~0 otherwise.
2655 .ESCq b abc.\|.\|.\&
2656 Bracket building function.
2658 .ESCq B anything
2660 .I anything
2661 is acceptable as a valid numeric expression it expands to\~1, and
2662 to\~0 otherwise.
2664 .ESC c
2665 Interrupt text processing.
2667 .ESCq C char
2668 The character called
2669 .IR char ;
2670 same as
2671 .esc[] "" char ,
2672 but compatible to other roff versions.
2674 .ESC d
2675 Forward (down) 1/2 em vertical unit (1/2 line in nroff).
2677 .ESCq D charseq
2678 Draw a graphical element defined by the characters in
2679 .IR charseq ;
2680 see groff info file for details.
2682 .ESC e
2683 Printable version of the current escape character.
2685 .ESC E
2686 Equivalent to an escape character, but is not interpreted in copy-mode.
2688 .ESC f F
2689 Change to font with 1-character name or 1-digit number
2690 .IR F .
2692 .ESC fP
2693 Switch back to previous font.
2695 .ESC f( fo
2696 Change to font with 2-character name or 2-digit number
2697 .IR fo .
2699 .ESC[] f font
2700 Change to font with arbitrary length name or number expression
2701 .IR font .
2703 .ESC[] f ""
2704 Switch back to previous font.
2706 .ESC F f
2707 Change to font family with 1-character name
2708 .IR f .
2710 .ESC F( fm
2711 Change to font family with 2-character name
2712 .IR fm .
2714 .ESC[] F fam
2715 Change to font family with arbitrary length name
2716 .IR fam .
2718 .ESC[] F ""
2719 Switch back to previous font family.
2721 .ESC[] g reg
2722 Return format of register with name
2723 .I reg
2724 suitable for
2725 .request .af .
2727 Alternative forms
2728 .escarg g( xy
2730 .escarg g x .
2732 .ESCq h N
2733 Local horizontal motion; move right
2734 .I N
2735 (left if negative).
2737 .ESCq H N
2738 Set height of current font to
2739 .IR N .
2741 .ESC[] k reg
2742 Mark horizontal input place in register with arbitrary length name
2743 .IR reg .
2744 Alternative forms
2745 .escarg k( xy
2747 .escarg k x .
2749 .ESCq l Nc
2750 Horizontal line drawing function (optionally using character
2751 .IR c ).
2753 .ESCq L Nc
2754 Vertical line drawing function (optionally using character
2755 .IR c ).
2757 .ESC[] m color
2758 Change to color
2759 .IR color .
2761 Alternative forms
2762 .escarg m( co
2764 .escarg m c .
2766 .ESC[] m ""
2767 Switch back to previous color.
2769 .ESC[] M color
2770 Change filling color for closed drawn objects to color
2771 .IR color .
2773 Alternative forms
2774 .escarg M( co
2776 .escarg M c .
2778 .ESC[] M ""
2779 Switch to previous fill color.
2781 .ESC n r
2782 The numerical value stored in the register variable with the
2783 1-character name
2784 .IR r .
2786 .ESC n( re
2787 The numerical value stored in the register variable with the
2788 2-character name
2789 .IR re .
2791 .ESC[] n reg
2792 The numerical value stored in the register variable with arbitrary
2793 length name
2794 .IR reg .
2796 .ESCq N n
2797 Typeset the character with code
2798 .I n
2799 in the current font, no special fonts are searched.
2801 Useful for adding characters to a font using the
2802 .request char
2803 request.
2805 .ESCq o abc.\|.\|.\&
2806 Overstrike characters
2807 .IR a ,
2808 .IR b ,
2809 .IR c ,
2810 etc.
2812 .ESC O 0
2813 Disable glyph output.
2815 Mainly for internal use.
2817 .ESC O 1
2818 Enable glyph output.
2820 Mainly for internal use.
2822 .ESC p
2823 Break and spread output line.
2825 .ESC r
2826 Reverse 1\ em vertical motion (reverse line in nroff).
2828 .ESCq R "name\~\[+-]n"
2829 The same as
2830 .request .nr
2831 .I name
2832 .IR \[+-]n .
2834 .ESC[] s \[+-]N
2835 Set the point size to
2836 .I N
2837 scaled points.
2839 Note the alternative forms
2840 .BI \[rs]s \[+-] [ N ]\c
2842 .BI \[rs]s' \[+-]N '\c
2843 .Text ,
2844 .BI \[rs]s \[+-] ' N '\c
2845 .Text ,
2846 .escarg s( \[+-]xy\c
2847 .Text ,
2848 .BI \[rs]s \[+-] ( xy\c
2849 .Text ,
2850 .escarg s \[+-]x .
2851 Same as
2852 .request ps
2853 request.
2855 .ESCq S N
2856 Slant output
2857 .I N
2858 degrees.
2860 .ESC t
2861 Non-interpreted horizontal tab.
2863 .ESC u
2864 Reverse (up) 1/2 em vertical motion (1/2 line in nroff).
2866 .ESCq v N
2867 Local vertical motion; move down
2868 .I N
2869 (up if negative).
2871 .ESC[] V env
2872 The contents of the environment variable
2873 .IR env .
2875 Alternative forms
2876 .escarg V( xy
2878 .escarg V x .
2880 .ESCq w string
2881 The width of the character sequence
2882 .IR string .
2884 .ESCq x N
2885 Extra line-space function (negative before, positive after).
2887 .ESCq X string
2888 Output
2889 .I string
2890 as device control function.
2892 .ESC[] Y name
2893 Output string variable or macro
2894 .I name
2895 uninterpreted as device control function.
2897 Alternative forms
2898 .escarg Y( xy
2900 .escarg Y x .
2902 .ESC z c
2903 Print
2904 .I c
2905 with zero width (without spacing).
2907 .ESCq Z anything
2908 Print
2909 .I anything
2910 and then restore the horizontal and vertical position;
2911 .I anything
2912 may not contain tabs or leaders.
2916 The escape sequences
2917 .esc e ,
2918 .esc . ,
2919 .esc \[dq] ,
2920 .esc $ ,
2921 .esc * ,
2922 .esc a ,
2923 .esc n ,
2924 .esc t ,
2925 .esc g ,
2927 .escarg \& newline
2928 are interpreted in copy mode.
2931 Escape sequences starting with
2932 .esc (
2934 .esc [
2935 do not represent single character escape sequences, but introduce escape
2936 names with two or more characters.
2939 If a backslash is followed by a character that does not constitute a
2940 defined escape sequence the backslash is silently ignored and the
2941 character maps to itself.
2944 .\" --------------------------------------------------------------------
2945 .SS "Special Characters"
2946 .\" --------------------------------------------------------------------
2948 Common special characters are predefined by escape sequences of the
2949 form
2950 .BI \[rs]( xy
2951 with characters
2952 .I x
2954 .IR y .
2956 Some of these exist in the usual font while most of them are only
2957 available in the special font.
2959 Below you'll find a selection of the most important glyphs; a complete
2960 list can be found in
2961 .BR groff_char (@MAN7EXT@).
2964 .PD 0
2966 .ESC (bu
2967 Bullet sign
2968 .ESC (co
2969 Copyright
2970 .ESC (ct
2971 Cent
2972 .ESC (dd
2973 Double dagger
2974 .ESC (de
2975 Degree
2976 .ESC (dg
2977 Dagger
2978 .ESC (rq
2979 Printable double quote
2980 .ESC (em
2981 Em-dash
2982 .ESC (hy
2983 Hyphen
2984 .ESC (rg
2985 Registered sign
2986 .ESC (rs
2987 Printable backslash character
2988 .ESC (sc
2989 Section sign
2990 .ESC (ul
2991 Underline character
2992 .ESC (==
2993 Identical
2994 .ESC (>=
2995 Larger or equal
2996 .ESC (<=
2997 Less or equal
2998 .ESC (!=
2999 Not equal
3000 .ESC (->
3001 Right arrow
3002 .ESC (<-
3003 Left arrow
3004 .ESC (+-
3005 Plus-minus sign
3010 .\" --------------------------------------------------------------------
3011 .SS "Strings"
3012 .\" --------------------------------------------------------------------
3014 Strings are defined by the
3015 .request ds
3016 request and can be retrieved by the
3017 .esc *
3018 escape sequence.
3021 Strings share their name space with macros.
3023 So strings and macros without arguments are roughly equivalent; it is
3024 possible to call a string like a macro and vice-versa, but this often
3025 leads to unpredictable results.
3027 The following strings are predefined in groff.
3029 .STRING .T
3030 The name of the current output device as specified by the
3031 .option -T
3032 command line option.
3035 .\" --------------------------------------------------------------------
3036 .SH REGISTERS
3037 .\" --------------------------------------------------------------------
3039 Registers are variables that store a value.
3040 In groff, most registers store numerical values (see section
3041 .B NUMERICAL EXPRESSIONS
3042 above), but some can also hold a string value.
3045 Each register is given a name.
3046 Arbitrary registers can be defined and set with the request
3047 .request nr
3048 .IR register .
3051 The value stored in a register can be retrieved by the escape sequences
3052 introduced by
3053 .esc n .
3056 Most useful are predefined registers.
3058 In the following the notation
3059 .I name
3060 is used to refer to a register called
3061 .register name
3062 to make clear that we speak about registers.
3064 Please keep in mind that the
3065 .esc[] n ""
3066 decoration is not part of the register name.
3069 .\" --------------------------------------------------------------------
3070 .SS "Read-only Registers"
3071 .\" --------------------------------------------------------------------
3073 The following registers have predefined values that should not be
3074 modified by the user (usually, registers starting with a dot a
3075 read-only).
3077 Mostly, they provide information on the current settings or store
3078 results from request calls.
3081 .PD 0
3083 .REG .$
3084 Number of arguments in the current macro or string.
3086 .REG .a
3087 Post-line extra line-space most recently utilized using
3088 .escq x N .
3090 .REG .A
3091 Set to\~1 in
3092 .B troff
3093 if option
3094 .B \-A
3095 is used; always\~1 in
3096 .BR nroff .
3098 .REG .br
3099 Within a macro, set to\~1 if macro called with the `normal' control
3100 character, and to\~0 otherwise.
3102 .REG .c
3103 Current input line number.
3105 .REG .C
3106 1\~if compatibility mode is in effect, 0\~otherwise.
3108 .REG .cdp
3109 The depth of the last character added to the current environment.
3110 It is positive if the character extends below the baseline.
3112 .REG .ce
3113 The number of lines remaining to be centered, as set by the
3114 .request ce
3115 request.
3117 .REG .cht
3118 The height of the last character added to the current environment.
3119 It is positive if the character extends above the baseline.
3121 .REG .color
3122 1\~if colors are enabled, 0\~otherwise.
3124 .REG .csk
3125 The skew of the last character added to the current environment.
3126 The skew of a character is how far to the right of the center of a character
3127 the center of an accent over that character should be placed.
3129 .REG .d
3130 Current vertical place in current diversion; equal to
3131 .register nl .
3133 .REG .ev
3134 The name or number of the current environment (string-valued).
3136 .REG .f
3137 Current font number.
3139 .REG .fam
3140 The current font family (string-valued).
3142 .REG .fn
3143 The current (internal) real font name (string-valued).
3145 .REG .fp
3146 The number of the next free font position.
3148 .REG .g
3149 Always 1 in GNU troff.
3151 Macros should use it to test if running under groff.
3153 .REG .h
3154 Text base-line high-water mark on current page or diversion.
3156 .REG .H
3157 Available horizontal resolution in basic units.
3159 .REG .height
3160 The current font height as set with
3161 .request \[rs]H .
3163 .REG .hla
3164 The current hyphenation language as set by the
3165 .B .hla
3166 request.
3168 .REG .hlc
3169 The number of immediately preceding consecutive hyphenated lines.
3171 .REG .hlm
3172 The maximum allowed number of consecutive hyphenated lines, as set by
3174 .request hlm
3175 request.
3177 .REG .hy
3178 The current hyphenation flags (as set by the
3179 .request hy
3180 request).
3182 .REG .hym
3183 The current hyphenation margin (as set by the
3184 .request hym
3185 request).
3187 .REG .hys
3188 The current hyphenation space (as set by the
3189 .request hys
3190 request).
3192 .REG .i
3193 Current ident.
3195 .REG .in
3196 The indent that applies to the current output line.
3198 .REG .int
3199 Positive if last output line contains
3200 .esc c .
3202 .REG .kern
3203 1\~if pairwise kerning is enabled, 0\~otherwise.
3205 .REG .l
3206 Current line length.
3208 .REG .lg
3209 The current ligature mode (as set by the
3210 .request lg
3211 request).
3213 .REG .linetabs
3214 The current line-tabs mode (as set by the
3215 .request linetabs
3216 request).
3218 .REG .ll
3219 The line length that applies to the current output line.
3221 .REG .lt
3222 The title length (as set by the
3223 .request lt
3224 request).
3226 .REG .m
3227 The current drawing color (string-valued).
3229 .REG .M
3230 The current background color (string-valued).
3232 .REG .n
3233 Length of text portion on previous output line.
3235 .REG .ne
3236 The amount of space that was needed in the last
3237 .request ne
3238 request that caused a trap to be sprung.
3240 Useful in conjunction with
3241 .register .trunc .
3243 .REG .ns
3244 1\~if in no-space mode, 0\~otherwise.
3246 .REG .o
3247 Current page offset.
3249 .REG .p
3250 Current page length.
3252 .REG .pe
3253 1\~during page ejection, 0\~otherwise.
3255 .REG .pn
3256 The number of the next page: either the value set by a
3257 .request pn
3258 request, or the number of the current page plus\ 1.
3260 .REG .ps
3261 The current pointsize in scaled points.
3263 .REG .psr
3264 The last-requested pointsize in scaled points.
3266 .REG .pvs
3267 The current post-vertical line spacing.
3269 .REG .rj
3270 The number of lines to be right-justified as set by the rj request.
3272 .REG .s
3273 Current point size as a decimal fraction.
3275 .REG .slant
3276 The slant of the current font as set with
3277 .request \[rs]S .
3279 .REG .sr
3280 The last requested pointsize in points as a decimal fraction
3281 (string-valued).
3283 .REG .ss
3284 The value of the parameters set by the first argument of the
3285 .request ss
3286 request.
3288 .REG .sss
3289 The value of the parameters set by the second argument of the
3290 .request ss
3291 request.
3293 .REG .sty
3294 The current font style (string-valued).
3296 .REG .t
3297 Distance to the next trap.
3299 .REG .T
3300 Set to\~1
3301 if option
3302 .B \-T
3303 is used.
3305 .REG .tabs
3306 A string representation of the current tab settings suitable for use
3307 as an argument to the
3308 .request ta
3309 request.
3311 .REG .trunc
3312 The amount of vertical space truncated by the most recently sprung
3313 vertical position trap, or, if the trap was sprung by a
3314 .request ne
3315 request, minus the amount of vertical motion produced by
3316 .request .ne .
3318 In other words, at the point a trap is sprung, it represents
3319 the difference of what the vertical position would have been but for
3320 the trap, and what the vertical position actually is.
3322 Useful in conjunction with the
3323 .register .ne .
3325 .REG .u
3326 Equal to 1 in fill mode and 0 in nofill mode.
3328 .REG .U
3329 Equal to 1 in safer mode and 0 in unsafe mode.
3331 .REG .v
3332 Current vertical line spacing.
3334 .REG .V
3335 Available vertical resolution in basic units.
3337 .REG .vpt
3338 1\~if vertical position traps are enabled, 0\~otherwise.
3340 .REG .w
3341 Width of previous character.
3343 .REG .warn
3344 The sum of the number codes of the currently enabled warnings.
3346 .REG .x
3347 The major version number.
3349 .REG .y
3350 The minor version number.
3352 .REG .Y
3353 The revision number of groff.
3355 .REG .z
3356 Name of current diversion.
3359 .REG .zoom
3360 Zoom factor for current font (in multiples of 1/1000th; zero if no
3361 magnification).
3364 .\" --------------------------------------------------------------------
3365 .SS "Writable Registers"
3366 .\" --------------------------------------------------------------------
3368 The following registers can be read and written by the user.
3369 They have predefined default values, but these can be modified for
3370 customizing a document.
3373 .PD 0
3374 .REG %
3375 Current page number.
3377 .REG c.
3378 Current input line number.
3380 .REG ct
3381 Character type (set by width function
3382 .esc w ).
3384 .REG dl
3385 Maximal width of last completed diversion.
3387 .REG dn
3388 Height of last completed diversion.
3390 .REG dw
3391 Current day of week (1-7).
3393 .REG dy
3394 Current day of month (1-31).
3396 .REG hours
3397 The number of hours past midnight.
3399 Initialized at start-up.
3401 .REG hp
3402 Current horizontal position at input line.
3404 .REG llx
3405 Lower left x-coordinate (in PostScript units) of a given PostScript
3406 image (set by
3407 .request .psbb ).
3409 .REG lly
3410 Lower left y-coordinate (in PostScript units) of a given PostScript
3411 image (set by
3412 .request .psbb ).
3414 .REG ln
3415 Output line number.
3417 .REG minutes
3418 The number of minutes after the hour.
3420 Initialized at start-up.
3422 .REG mo
3423 Current month (1-12).
3425 .REG nl
3426 Vertical position of last printed text base-line.
3428 .REG rsb
3429 Like
3430 .register sb ,
3431 but takes account of the heights and depths of characters.
3433 .REG rst
3434 Like
3435 .register st ,
3436 but takes account of the heights and depths of characters.
3438 .REG sb
3439 Depth of string below base line (generated by width function
3440 .esc w ).
3442 .REG seconds
3443 The number of seconds after the minute.
3445 Initialized at start-up.
3447 .REG skw
3448 Right skip width from the center of the last character in the
3449 .esc w
3450 argument.
3452 .REG slimit
3453 If greater than 0, the maximum number of objects on the input stack.
3455 If \[<=]0 there is no limit, i.e., recursion can continue until virtual
3456 memory is exhausted.
3458 .REG ssc
3459 The amount of horizontal space (possibly negative) that should be
3460 added to the last character before a subscript (generated by width
3461 function
3462 .esc w ).
3464 .REG st
3465 Height of string above base line (generated by width function
3466 .esc w ).
3468 .REG systat
3469 The return value of the
3470 .I system()
3471 function executed by the last
3472 .request sy
3473 request.
3475 .REG urx
3476 Upper right x-coordinate (in PostScript units) of a given PostScript
3477 image (set by
3478 .request .psbb ).
3480 .REG ury
3481 Upper right y-coordinate (in PostScript units) of a given PostScript
3482 image (set by
3483 .request .psbb ).
3485 .REG year
3486 The current year (year 2000 compliant).
3488 .REG yr
3489 Current year minus 1900.
3491 For Y2K compliance use
3492 .register year
3493 instead.
3498 .\" --------------------------------------------------------------------
3499 .SH COMPATIBILITY
3500 .\" --------------------------------------------------------------------
3502 The differences of the groff language in comparison to classical troff
3503 as defined by
3504 .I [CSTR\~#54]
3505 are documented in
3506 .BR groff_diff (@MAN7EXT@).
3509 The groff system provides a compatibility mode, see
3510 .BR groff (@MAN1EXT@)
3511 on how to invoke this.
3514 .\" --------------------------------------------------------------------
3515 .SH BUGS
3516 .\" --------------------------------------------------------------------
3518 Report bugs to the
3519 .MT bug-groff@gnu.org .
3520 groff bug mailing list
3522 Include a complete, self-contained example that will allow the bug to
3523 be reproduced, and say which version of groff you are using.
3526 .\" --------------------------------------------------------------------
3527 .SH AUTHORS
3528 .\" --------------------------------------------------------------------
3530 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006
3531 Free Software Foundation, Inc.
3534 This document is distributed under the terms of the FDL (GNU Free
3535 Documentation License) version 1.1 or later.
3537 You should have received a copy of the FDL on your system, it is also
3538 available on-line at the
3539 .UR http://www.gnu.org/copyleft/fdl.html
3540 GNU copyleft site .
3544 This document is part of
3545 .IR groff ,
3546 the GNU roff distribution.
3548 It was written by
3549 .MT bwarken@mayn.de ;
3550 Bernd Warken
3552 it is maintained by
3553 .MT wl@gnu.org .
3554 Werner Lemberg
3558 .\" --------------------------------------------------------------------
3559 .SH "SEE ALSO"
3560 .\" --------------------------------------------------------------------
3563 The main source of information for the groff language is the
3564 .B groff
3565 .BR info (1)
3566 file.
3568 Besides the gory details, it contains many examples.
3571 .BR groff (@MAN1EXT@)
3572 the usage of the groff program and pointers to the documentation and
3573 availability of the groff system.
3576 .BR groff_diff (@MAN7EXT@)
3577 the differences of the groff language as compared to classical roff.
3579 This is the authoritative document for the predefined language
3580 elements that are specific to groff.
3583 .BR groff_char (@MAN7EXT@)
3584 the predefined groff characters (glyphs).
3587 .BR groff_font (@MAN5EXT@)
3588 the specification of fonts and the DESC file.
3591 .BR roff (@MAN7EXT@)
3592 the history of roff, the common parts shared by all roff systems, and
3593 pointers to further documentation.
3596 .I [CSTR\~#54]
3597 .UR http://\:cm.bell-labs.com/\:cm/\:cs/\:54.ps
3598 Nroff/\:Troff User's Manual by Osanna & Kernighan
3600 \[em] the bible for classical troff.
3602 .cp \n[groff_C]
3604 .\" --------------------------------------------------------------------
3605 .\" Emacs Setup
3606 .\" --------------------------------------------------------------------
3608 .\" Local Variables:
3609 .\" mode: nroff
3610 .\" End: