.\" .ad .bp .br .ce .de .di .ds
.el .fi .fl .ft .i0 .ie .if .in
.it .lg .li .ll .ls .lt .na .ne
.nf .nr .ns .pl .po .ps .rm .rn
.rr .rs .so .sp .ta .ti .tl .tm
.tr
and the following in-text codes:
\$ \% \* \" \c \f \h \k \n \s \w
plus the full list of nroff/troff special characters in the original V7 troff manual.
Many restrictions are present; the behavior in general is a subset of nroff's. Of particular note are the following:
.AT .B .BI .BR .BY .DE .DS .DT .HP .I .IB .IP .IR .IX .LP .NB .P .PD .PP .RB .RE .RI .RS .SH .SM .SS .TH .TP .UC
.BY and .NB each take a single string argument (respectively, an indication of authorship and a note about the status of the manual page) and arrange to place it in the page footer. .AT and .IX do nothing.
.(l .(q .)l .)q .b .bu .i .ip .lp .np .pp .r .sh .sm .u .uh
The .(l macro supports the C and L options. Size changes via the .sz and .sm macros are silently ignored. The .u macro just prints its argument in italics. The ps and pi number registers exist and can be changed. The td string is available and is preset to today's date. Single spacing is not enforced in lists and quotations.
The .AB, .AE, .AI, .AU, .DA, .ND, .TL and .UX macros have been retained from the ms set. The .XP macro has been borrowed from the Berkeley additions to the ms macro set.
.AB .AE .AI .AU .B .CD .DA .DE .DS .I .ID .IP .LD .LG .LP .ND .NH .NL .PP .QE .QP .QS .R .RE .RP .RS .SH .SM .TL .TP .UL .UX
Size changes are recognized but ignored, as are .RP and .ND. .UL just prints its argument in italics. .DS/.DE does not do a keep, nor do any of the other macros that normally imply keeps.
The DY string is available, is preset to today's date, and may be altered with the .DA macro. The PD, PI, and LL number registers exist and can be changed.
The CH string is preset for page numbering, and the CF string is preset to the contents of the DY string. (The DY string can be set with the .DA macro; it is preset to today's date.)
.^b fh 1 enables header string placement on the first page .^b fh 0 disables header string placement on the first page .^b HF 1 enables header/footer string placement .^b HF 0 disables header/footer string placement
There are appropriate .^b requests in the distribution man, me and ms macro files. (The me and ms macro files use another .^b request, .^b NH, to enable numbered header processing.)
One part of cawf's knowledge of the output device, related to the formation of characters, is established by a device file, which is read before the user's input. The search for it begins in cawf's library directory, under the name term.dev (where term is the value of the TERM environment variable). Failing to find that, cawf searches for dumb.dev. (See the FILES section for a description of the path to cawf's library directory.) The device file uses special internal requests to set up resolution, special characters and more normal nroff functions to set up page length, etc.
Cawf has limited support for special forms of bold and italic characters. It is provided through the -c config, -ddevice and -ffont options. See the DEVICES section for more information.
Note the distinction between the device and the output device configuration files. The device file typically defines characters and constant output parameters. The output device configuration file defines font and type face codes. It is usually not necessary to define a separate device file for each device represented in the output device configuration file - the dumb.dev device file will suffice for almost all representations.
The -c config, -ddevice and -ffont options direct the font and type face selections.
The -ddevice option specifies the name of the device. Cawf has three built-in devices - ANSI, NONE and NORMAL. When the ANSI device is selected, cawf issues the ANSI shadow mode control codes, ``ESC [ 7 m'', to represent the bold face; the ANSI underscore control codes, ``ESC [ 4 m'', to represent the italic face; and the ANSI control codes, ``ESC [ 0 m'', to represent the ROMAN face. No -ffont specification is permitted with the ANSI device.
When the NONE device is selected, cawf uses no special output codes to represent the type faces. No -ffont specification is permitted with the ANSI device.
The NORMAL output device is the default. When it's selected, cawf overprints each bold character two times, using three issuances of each bold character, separated by backspace characters; it issues an underscore and backspace before each italic character. No -ffont specification is permitted with the ANSI device. The bsfilt(1) filter may be used to further process the backspace codes output for a NORMAL device.
All other devices named in the -ddevice option must be represented by a stanza in the device configuration file. The device configuration file is usually contained in device.cf in cawf's library directory (see the FILES section for more information). An alternate device configuration file path may be specified with the -cconfig option.
The DEVICE CONFIGURATION FILE section describes the organization of the device configuration file. It is easy to add devices to the device.cf supplied in the cawf distribution.
The -ffont option may be used with the -ddevice option, when the appropriate stanza in the device configuration file contains an entry for the named font. The DEVICE CONFIGURATION FILE section describes how fonts are defined in device configuration file stanzas.
The configuration file is usually found in device.cf in cawf's library directory (see the FILES section for more information). It is organized into two main parts - comments and device stanzas. Comments are any lines that begin with the pound sign (`#') character. They are informational only and cawf ignores them. Cawf also ignores empty lines, so they may be used as vertical white space.
Stanzas name devices and define their font and type face control strings. A stanza begins with the name of the device, starting at the beginning of a line and occupying the entire line. The body of the stanza, defining fonts and type faces, is formed of lines beginning with white space (a TAB or space characters) that directly follow the device name.
Individual lines of the stanza body contain a key character, followed by a equal sign, followed by the font name (if a font key) and the output device control codes. Cawf issues the font control codes once, at the beginning of output, so only one font may be selected. The type face control codes are issued at each change of type face.
The key characters are:
b for bold
f for font definition
i for italic
r for Roman
The `b', `i' and `r' key codes are followed by an equal sign (`=') and
their control code definition.
The `f' key code is followed by an equal sign (`='), the font name,
another equal sign and the font control code definition.
Control code definitions may contain any printable ASCII characters. Non-printable characters may be encoded in octal notation with the `\nnn' form or in hexadecimal with the `\xnn' form. The special code, `\E' (or `\e') represents the ESC control character (\033 or \x1b).
Here's a sample showing the definition for the HP LaserJet III. The stanza name is ``lj3''. All its non-printable characters are ESCs; the first is coded in octal form; the second with '\E'; the rest, in hexadecimal form. TAB is used as the leading white space character for the stanza body lines. # HP LaserJet III
lj3
b=\033(s7B
i=\E(s1S
r=\x1b(s0B\x1b(s0S
f=c10=2ibm=2.0v0s0b3T
f=lg12=2
kxp1124 Panasonic KX-P1124 dot matrix printer in PGM mode
Bold:Emphasized
Fonts:c1010 Characters Per Inch (CPI) Courier
c1212 CPI Courier
bps1010 CPI Bold PS
bps1212 CPI Bold PS
p1010 CPI Prestige
p1212 CPI Prestige
s1010 CPI Script
s1212 CPI Script
ss1010 CPI Sans Serif
ss1212 CPI Sans Serif
kxp1180 Panasonic KX-P1180 dot matrix printer in PGM mode
Bold:Emphasized
Fonts:c1010 Characters Per Inch (CPI) Courier
c1212 CPI Courier
bps1010 CPI Bold PS
bps1212 CPI Bold PS
p1010 CPI Prestige
p1212 CPI Prestige
ss1010 CPI Sans Serif
ss1212 CPI Sans Serif
lj3 HP LaserJet III
Fonts:c1010 point, 12 Characters Per Inch (CPI)
Courier
c12ibm12 point, 10 CPI Courier, IBM-PC
Symbol Set
lg1212 point, 12 CPI Letter Gothic
vgamono VGA monochrome monitor for MS-DOS
(ANSI.SYS driver required for MS-DOS)
Italic:Reverse-video
Fonts:none
common common device-independent initialization device.cf output device configurations *.dev device-specific initialization m*.mac macro package files
The MS-DOS version of cawf has been compiled with version 2.5 of Microsoft's Quick-C compiler. It runs under the Mortis Kern Systems Toolkit KornShell, ksh(1), and COMMAND.COM.
Watch out for scaling factors - especially on requests like \w.
The overprinting required to create bold and italicized characters is tiresome on a slow printer. The bsfilt(1) post-filter from this distribution may be used to alleviate that nuisance by managing the backspacing codes from cawf's NORMAL device output.
The printing of bold and italic characters is sometimes better handled by special printer codes. Use cawf's -c config, -ddevice and -ffont options to produce special font and device output control codes.
Cawf has a small amount of built-in code for the man, me and ms macro packages, but none for any others.
The stacking for the .so request is limited.