Writing Papers with NROFF using -me
Eric P. Allman*
Project INGRES
Electronics Research Laboratory
University of California, Berkeley
Berkeley, California 94720
This document describes the text processing facilities available on the UNIX** operating system via NROFF** and the -me macro package. It is assumed that the reader already is generally familiar with the UNIX operating system and a text editor such as ex. This is intended to be a casual introduction, and as such not all material is covered. In particular, many variations and additional features of the -me macro package are not explained. For a complete discussion of this and other issues, see The -me Reference Manual and The NROFF/TROFF Reference Manual.
NROFF, a computer program that runs on the UNIX operating system, reads an input file prepared by the user and outputs a formatted paper suitable for publication or framing. The input consists of text, or words to be printed, and requests, which give instructions to the NROFF program telling how to format the printed copy.
Section 1 describes the basics of text processing. Section 2 describes the basic requests. Section 3 introduces displays. Annotations, such as footnotes, are handled in section 4. The more complex requests which are not discussed in section 2 are covered in section 5. Finally, section 6 discusses things you will need to know if you want to typeset documents. If you are a novice, you probably won't want to read beyond section 4 until you have tried some of the basic features out.
When you have your raw text ready, call the NROFF formatter by typing as a request to the UNIX shell:
nroff -me -Ttype files
The word argument is used in this manual to mean a word or number which appears on the same line as a request which modifies the meaning of that request. For example, the request
.sp
.sp 4
The primary function of NROFF is to collect words from input lines, fill output lines with those words, justify the right hand margin by inserting extra spaces in the line, and output the result. For example, the input:
Now is the time for all good men to come to the aid of their party. Four score and seven years ago,...
Not all input lines are text to be formatted. Some of the input lines are requests which describe how to format the text. Requests always have a period or an apostrophe (``''') as the first character of the input line.
The text formatter also does more complex things, such as automatically numbering pages, skipping over page folds, putting footnotes in the correct place, and so forth.
I can offer you a few hints
for preparing text
for input to NROFF.
First,
keep the input lines short.
Short input lines are easier to edit,
and NROFF will pack words onto longer lines
for you anyhow.
In keeping with this,
it is helpful
to begin a new line
after every period,
comma,
or phrase,
since common corrections
are to add or delete sentences
or phrases.
Second,
do not put spaces at the end of lines,
since this can sometimes confuse the NROFF
processor.
Third,
do not hyphenate words at the end of lines
(except words that should have hyphens in them,
such as
``mother-in-law'');
NROFF is smart enough to hyphenate words
for you as needed,
but is not smart enough
to take hyphens out
and join a word back together.
Also,
words such as
``mother-in-law''
should not be broken
over a line,
since then you will get a space
where not wanted,
such as
``mother@ in@law''.
Paragraphs are begun by using the .pp request. For example, the input:
.pp Now is the time for all good men to come to the aid of their party. Four score and seven years ago,...
Notice that the sentences of the paragraphs must not begin with a space, since blank lines and lines beginning with spaces cause a break. For example, if I had typed:
.pp Now is the time for all good men to come to the aid of their party. Four score and seven years ago,...
There are many fancier types of paragraphs, which will be described later.
Arbitrary headers and footers can be put at the top and bottom of every page. Two requests of the form .he title and .fo title define the titles to put at the head and the foot of every page, respectively. The titles are called three-part titles, that is, there is a left-justified part, a centered part, and a right-justified part. To separate these three parts the first character of title (whatever it may be) is used as a delimiter. Any character may be used, but backslash and double quote marks should be avoided. The percent sign is replaced by the current page number whenever found in the title. For example, the input:
.he ''%'' .fo 'Jane Jones''My Book'
NROFF will double space output text automatically if you use the request .ls 2, as is done in this section. You can revert to single spaced mode by typing .ls 1.
A number of requests allow you to change the way the printed copy looks, sometimes called the layout of the output page. Most of these requests adjust the placing of ``white space'' (blank lines or spaces). In these explanations, characters in italics should be replaced with values you wish to use; bold characters represent characters which should actually be typed.
The .bp request starts a new page.
The request .sp N leaves N lines of blank space. N can be omitted (meaning skip a single line) or can be of the form Ni (for N inches) or Nc (for N centimeters). For example, the input:
.sp 1.5i My thoughts on the subject .sp
The .in +N request changes the amount of white space on the left of the page (the indent). The argument N can be of the form +N (meaning leave N spaces more than you are already leaving), -N (meaning leave less than you do now), or just N (meaning leave exactly N spaces). N can be of the form Ni or Nc also. For example, the input:
initial text .in 5 some text .in +1i more text .in -2c final text
initial text some text more text final text
The .ti +N (temporary indent) request is used like .in +N when the indent should apply to one line only, after which it should revert to the previous indent. For example, the input:
.in 1i .ti 0 Ware, James R. The Best of Confucius, Halcyon House, 1950. An excellent book containing translations of most of Confucius' most delightful sayings. A definite must for anyone interested in the early foundations of Chinese philosophy.
Text lines can be centered by using the .ce request. The line after the .ce is centered (horizontally) on the page. To center more than one line, use .ce N (where N is the number of lines to center), followed by the N lines. If you want to center many lines but don't want to count them, type:
.ce 1000 lines to center .ce 0
All of these requests cause a break; that is, they always start a new line. If you want to start a new line without performing any other action, use .br.
Text can be underlined using the .ul request. The .ul request causes the next input line to be underlined when output. You can underline multiple lines by stating a count of input lines to underline, followed by those lines (as with the .ce request). For example, the input:
.ul 2 Notice that these two input lines are underlined.
Displays are sections of text to be set off from the body of the paper. Major quotes, tables, and figures are types of displays, as are all the examples used in this document. All displays except centered blocks are output single spaced.
Major quotes are quotes which are several lines long, and hence are set in from the rest of the text without quote marks around them. These can be generated using the commands .(q and .)q to surround the quote. For example, the input:
As Weizenbaum points out: .(q It is said that to explain is to explain away. This maxim is nowhere so well fulfilled as in the areas of computer programming,... .)q
As Weizenbaum points out:
It is said that to explain is to explain away. This maxim is nowhere so well fulfilled as in the areas of computer programming,...
A list is an indented, single spaced, unfilled display. Lists should be used when the material to be printed should not be filled and justified like normal text, such as columns of figures or the examples used in this paper. Lists are surrounded by the requests .(l and .)l. For example, type:
Alternatives to avoid deadlock are: .(l Lock in a specified order Detect deadlock and back out one process Lock all resources needed before proceeding .)l
Lock in a specified order Detect deadlock and back out one process Lock all resources needed before proceeding
A keep is a display of lines which are kept on a single page if possible. An example of where you would use a keep might be a diagram. Keeps differ from lists in that lists may be broken over a page boundary whereas keeps will not.
Blocks are the basic kind of keep. They begin with the request .(b and end with the request .)b. If there is not room on the current page for everything in the block, a new page is begun. This has the unpleasant effect of leaving blank space at the bottom of the page. When this is not appropriate, you can use the alternative, called floating keeps.
Floating keeps
move relative to the text.
Hence,
they are good for things
which will be referred to
by name,
such as
``See figure 3''.
A floating keep will appear
at the bottom of the current page
if it will fit;
otherwise,
it will appear at the top
of the next page.
Floating keeps begin with the line
.(z
and end with the line
.)z.
For an example of a floating keep,
see figure 1.
The .hl request is used to draw a horizontal line so that the figure stands out from the text.
.(z .hl Text of keep to be floated. .sp .ce Figure 1. Example of a Floating Keep. .hl .)z Figure 1. Example of a Floating Keep.
Keeps and lists are normally collected in nofill mode, so that they are good for tables and such. If you want a display in fill mode (for text), type .(l F (Throughout this section, comments applied to .(l also apply to .(b and .(z). This kind of display will be indented from both margins. For example, the input:
.(l F And now boys and girls, a newer, bigger, better toy than ever before! Be the first on your block to have your own computer! Yes kids, you too can have one of these modern data processing devices. You too can produce beautifully formatted papers without even batting an eye! .)l
Lists and blocks are also normally indented (floating keeps are normally left justified). To get a left-justified list, type .(l L. To get a list centered line-for-line, type .(l C. For example, to get a filled, left justified list, enter:
.(l L F text of block .)l
.(l first line of unfilled display more lines .)l
first line of unfilled display more lines
first line of unfilled display more linesUsing C instead of L produces the line-at-a-time centered output:
first line of unfilled display
more lines
Sometimes it may be that you want to center several lines as a group, rather than centering them one line at a time. To do this use centered blocks, which are surrounded by the requests .(c and .)c. All the lines are centered as a unit, such that the longest line is centered and the rest are lined up around that line. Notice that lines do not move relative to each other using centered blocks, whereas they do using the C argument to keeps.
Centered blocks are not keeps, and may be used in conjunction with keeps. For example, to center a group of lines as a unit and keep them on one page, use:
.(b L .(c first line of unfilled display more lines .)c .)b
first line of unfilled displayIf the block requests (.(b and .)b) had been omitted the result would have been the same, but with no guarantee that the lines of the centered block would have all been on one page. Note the use of the L argument to .(b; this causes the centered block to center within the entire line rather than within the line minus the indent. Also, the center requests must be nested inside the keep requests.
more lines
There are a number of requests to save text for later printing. Footnotes are printed at the bottom of the current page. Delayed text is intended to be a variant form of footnote; the text is printed only when explicitly called for, such as at the end of each chapter. Indexes are a type of delayed text having a tag (usually the page number) attached to each entry after a row of dots. Indexes are also saved until called for explicitly.
Footnotes begin with the request .(f and end with the request .)f. The current footnote number is maintained automatically, and can be used by typing \**, to produce a footnote number[1]. The number is automatically incremented after every footnote. For example, the input:
.(q A man who is not upright and at the same time is presumptuous; one who is not diligent and at the same time is ignorant; one who is untruthful and at the same time is incompetent; such men I do not count among acquaintances.\** .(f \**James R. Ware, .ul The Best of Confucius, Halcyon House, 1950. Page 77. .)f .)q
A man who is not upright and at the same time is presumptuous; one who is not diligent and at the same time is ignorant; one who is untruthful and at the same time is incompetent; such men I do not count among acquaintances.[2]It is important that the footnote appears inside the quote, so that you can be sure that the footnote will appear on the same page as the quote.
Delayed text is very similar to a footnote except that it is printed when called for explicitly. This allows a list of references to appear (for example) at the end of each chapter, as is the convention in some disciplines. Use \*# on delayed text instead of \** as on footnotes.
If you are using delayed text as your standard reference mechanism, you can still use footnotes, except that you may want to reference them with special characters* rather than numbers.
An ``index'' (actually more like a table of contents, since the entries are not sorted alphabetically) resembles delayed text, in that it is saved until called for. However, each entry has the page number (or some other tag) appended to the last line of the index entry after a row of dots.
Index entries begin with the request .(x and end with .)x. The .)x request may have a argument, which is the value to print as the ``page number''. It defaults to the current page number. If the page number given is an underscore (``_'') no page number or line of dots is printed at all. To get the line of dots without a page number, type .)x "", which specifies an explicitly null page number.
The .xp request prints the index.
For example, the input:
.(x Sealing wax .)x .(x Cabbages and kings .)x _ .(x Why the sea is boiling hot .)x 2.5a .(x Whether pigs have wings .)x "" .(x This is a terribly long index entry, such as might be used for a list of illustrations, tables, or figures; I expect it to take at least two lines. .)x .xp
The .(x request may have a single character argument, specifying the ``name'' of the index; the normal index is x. Thus, several ``indices'' may be maintained simultaneously (such as a list of tables, table of contents, etc.).
Notice that the index must be printed at the end of the paper, rather than at the beginning where it will probably appear (as a table of contents); the pages may have to be physically rearranged after printing.
A large number of fancier requests exist, notably requests to provide other sorts of paragraphs, numbered sections of the form 1.2.3 (such as used in this document), and multicolumn output.
Paragraphs generally start with a blank line and with the first line indented. It is possible to get left-justified block-style paragraphs by using .lp instead of .pp, as demonstrated by the next paragraph.
Sometimes you want to use paragraphs that have the body indented, and the first line exdented (opposite of indented) with a label. This can be done with the .ip request. A word specified on the same line as .ip is printed in the margin, and the body is lined up at a prespecified position (normally five spaces). For example, the input:
.ip one This is the first paragraph. Notice how the first line of the resulting paragraph lines up with the other lines in the paragraph. .ip two And here we are at the second paragraph already. You may notice that the argument to .ip appears in the margin. .lp We can continue text...
We can continue text without starting a new indented paragraph by using the .lp request.
If you have spaces in the label of a .ip request, you must use an ``unpaddable space'' instead of a regular space. This is typed as a backslash character (``\'') followed by a space. For example, to print the label ``Part 1'', enter:
.ip "Part\ 1"
If a label of an indented paragraph (that is, the argument to .ip) is longer than the space allocated for the label, .ip will begin a new line after the label. For example, the input:
.ip longlabel This paragraph had a long label. The first character of text on the first line will not line up with the text on second and subsequent lines, although they will line up with each other.
It is possible to change the size of the label by using a second argument which is the size of the label. For example, the above example could be done correctly by saying:
.ip longlabel 10
.nr ii 1i
If .ip is used with no argument at all no hanging tag will be printed. For example, the input:
.ip [a] This is the first paragraph of the example. We have seen this sort of example before. .ip This paragraph is lined up with the previous paragraph, but it has no tag in the margin.
A special case of .ip is .np, which automatically numbers paragraphs sequentially from 1. The numbering is reset at the next .pp, .lp, or .sh (to be described in the next section) request. For example, the input:
.np This is the first point. .np This is the second point. Points are just regular paragraphs which are given sequence numbers automatically by the .np request. .pp This paragraph will reset numbering by .np. .np For example, we have reverted to numbering from one now.
This paragraph will reset numbering by .np.
The .bu request gives lists of this sort that are identified with bullets rather than numbers. The paragraphs are also crunched together. For example, the input:
.bu One egg yolk .bu One tablespoon cream or top milk .bu Salt, cayenne, and lemon juice to taste .bu A generous two tablespoonfuls of butter
Section numbers (such as the ones used in this document) can be automatically generated using the .sh request. You must tell .sh the depth of the section number and a section title. The depth specifies how many numbers are to appear (separated by decimal points) in the section number. For example, the section number 4.2.5 has a depth of three.
Section numbers are incremented in a fairly intuitive fashion. If you add a number (increase the depth), the new number starts out at one. If you subtract section numbers (or keep the same number) the final number is incremented. For example, the input:
.sh 1 "The Preprocessor" .sh 2 "Basic Concepts" .sh 2 "Control Inputs" .sh 3 .sh 3 .sh 1 "Code Generation" .sh 3
1. The Preprocessor 1.1. Basic Concepts 1.2. Control Inputs 1.2.1. 1.2.2. 2. Code Generation 2.1.1.
You can specify the section number to begin by placing the section number after the section title, using spaces instead of dots. For example, the request:
.sh 3 "Another section" 7 3 4
There are more complex features which will cause each section to be indented proportionally to the depth of the section. For example, if you enter:
.nr si N
.nr si 0.5i
.nr si 3n
Section headers without automatically generated numbers can be done using:
.uh "Title"
There are some requests which assist in setting up papers. The .tp request initializes for a title page. There are no headers or footers on a title page, and unlike other pages you can space down and leave blank space at the top. For example, a typical title page might appear as:
.tp .sp 2i .(l C THE GROWTH OF TOENAILS IN UPPER PRIMATES .sp by .sp Frank N. Furter .)l .bp
The request .th sets up the environment of the NROFF processor to do a thesis, using the rules established at Berkeley. It defines the correct headers and footers (a page number in the upper right hand corner only), sets the margins correctly, and double spaces.
The .+c T request can be used to start chapters. Each chapter is automatically numbered from one, and a heading is printed at the top of each chapter with the chapter number and the chapter name T. For example, to begin a chapter called ``Conclusions'', use the request:
.+c "CONCLUSIONS"
CHAPTER 5with appropriate spacing for a thesis. Also, the header is moved to the foot of the page on the first page of a chapter. Although the .+c request was not designed to work only with the .th request, it is tuned for the format acceptable for a PhD thesis at Berkeley.
CONCLUSIONS
If the title parameter T is omitted from the .+c request, the result is a chapter with no heading. This can also be used at the beginning of a paper; for example, .+c was used to generate page one of this document.
Although
papers traditionally have the abstract,
table of contents,
and so forth at the front of the paper,
it is more convenient to format
and print them last
when using NROFF.
This is so that index entries
can be collected and then printed
for the table of contents
(or whatever).
At the end of the paper,
issue the
.++ P
request,
which begins the preliminary part
of the paper.
After issuing this request,
the
.+c
request will begin a preliminary section
of the paper.
Most notably,
this prints the page number
restarted from one
in lower case Roman numbers.
.+c
may be used repeatedly
to begin different parts of the
front material
for example,
the abstract,
the table of contents,
acknowledgments,
list of illustrations,
etc.
The request
.++ B
may also be used
to begin the bibliographic section
at the end of the paper.
For example,
the paper might appear
as outlined in figure 2.
(In this figure,
comments begin with the sequence
\".)
.th \" set for thesis mode .fo ''DRAFT'' \" define footer for each page .tp \" begin title page .(l C \" center a large block THE GROWTH OF TOENAILS IN UPPER PRIMATES .sp by .sp Frank Furter .)l \" end centered part .+c INTRODUCTION \" begin chapter named "INTRODUCTION" .(x t \" make an entry into index `t' Introduction .)x \" end of index entry text of chapter one .+c "NEXT CHAPTER" \" begin another chapter .(x t \" enter into index `t' again Next Chapter .)x text of chapter two .+c CONCLUSIONS .(x t Conclusions .)x text of chapter three .++ B \" begin bibliographic information .+c BIBLIOGRAPHY \" begin another `chapter' .(x t Bibliography .)x text of bibliography .++ P \" begin preliminary material .+c "TABLE OF CONTENTS" .xp t \" print index `t' collected above .+c PREFACE \" begin another preliminary section text of preface Figure 2. Outline of a Sample Paper
Two special UNIX programs exist to format special types of material. Eqn and neqn set equations for the phototypesetter and NROFF respectively. Tbl arranges to print extremely pretty tables in a variety of formats. This document will only describe the embellishments to the standard features; consult the reference manuals for those processors for a description of their use.
The eqn and neqn programs are described fully in the document Typesetting Mathematics - User's Guide by Brian W. Kernighan and Lorinda L. Cherry. Equations are centered, and are kept on one page. They are introduced by the .EQ request and terminated by the .EN request.
The .EQ request may take an equation number as an optional argument, which is printed vertically centered on the right hand side of the equation. If the equation becomes too long it should be split between two lines. To do this, type:
.EQ (eq 34) text of equation 34 .EN C .EQ continuation of equation 34 .EN
The tbl program produces tables. It is fully described (including numerous examples) in the document Tbl - A Program to Format Tables by M. E. Lesk. Tables begin with the .TS request and end with the .TE request. Tables are normally kept on a single page. If you have a table which is too big to fit on a single page, so that you know it will extend to several pages, begin the table with the request .TS H and put the request .TH after the part of the table which you want duplicated at the top of every page that the table is printed on. For example, a table definition for a long table might look like:
.TS H c s s n n n. THE TABLE TITLE .TH text of the table .TE
You can get two column output automatically by using the request .2c. This causes everything after it to be output in two-column form. The request .bc will start a new column; it differs from .bp in that .bp may leave a totally blank column when it starts a new page. To revert to single column output, use .1c.
A macro is a collection of requests and text which may be used by stating a simple request. Macros begin with the line .de xx (where xx is the name of the macro to be defined) and end with the line consisting of two dots. After defining the macro, stating the line .xx is the same as stating all the other lines. For example, to define a macro that spaces 3 lines and then centers the next input line, enter:
.de SS .sp 3 .ce ..
.SS Title Line (beginning of text)
Macro names may be one or two characters. In order to avoid conflicts with names in -me, always use upper case letters as names. The only names to avoid are TS, TH, TE, EQ, and EN.
Sometimes you may want to put a footnote or index entry inside a keep. For example, if you want to maintain a ``list of figures'' you will want to do something like:
.(z .(c text of figure .)c .ce Figure 5. .(x f Figure 5 .)x .)z
.(z .(c Text of figure .)c .ce Figure 5. \!.(x f \!Figure 5 \!.)x .)z
With a little care, you can prepare documents that will print nicely on either a regular terminal or when phototypeset using the TROFF formatting program.
A font is a style of type. There are three fonts that are available simultaneously, Times Roman, Times Italic, and Times Bold, plus the special math font. The normal font is Roman. Text which would be underlined in NROFF with the .ul request is set in italics in TROFF.
There are ways of switching between fonts. The requests .r, .i, and .b switch to Roman, italic, and bold fonts respectively. You can set a single word in some font by typing (for example):
.i word
Notice that if you are setting more than one word in whatever font, you must surround that word with double quote marks (`"') so that it will appear to the NROFF processor as a single word. The quote marks will not appear in the formatted text. If you do want a quote mark to appear, you should quote the entire string (even if a single word), and use two quote marks where you want one to appear. For example, if you want to produce the text:
"Master Control"
.i """Master Control\|"""
"Master Control"
There are also several ``pseudo-fonts'' available. The input:
.(b .u underlined .bi "bold italics" .bx "words in a box" .)b
words in a box
.bi "some bold italics" and .bx "words in a box"
The second parameter of all font requests is set in the original font. For example, the font request:
.b bold face
boldface.
.b "bold face"
You can mix fonts in a word by using the special sequence \c at the end of a line to indicate ``continue text processing''; this allows input lines to be joined together without a space between them. For example, the input:
.u under \c .i italics
.u under .i italics
The phototypesetter supports different sizes of type, measured in points. The default point size is 10 points for most text, 8 points for footnotes. To change the pointsize, type:
.sz +N
These pointsize changes are temporary!!! For example, to reset the pointsize of basic text to twelve point, use:
.nr pp 12 .nr sp 12 .nr tp 12
.nr sp 11
A single word or phrase can be set in a smaller pointsize than the surrounding text using the .sm request. This is especially convenient for words that are all capitals, due to the optical illusion that makes them look even larger than they actually are. For example:
.sm UNIX
Warning: changing point sizes on the phototypesetter is a slow mechanical operation. On laser printers it may require loading new fonts. Size changes should be considered carefully.
It is conventional when using the typesetter to use pairs of grave and acute accents to generate double quotes, rather than the double quote character (`"'). This is because it looks better to use grave and acute accents; for example, compare "quote" to ``quote''.
In order to make quotes compatible between the typesetter and terminals, you may use the sequences \*(lq and \*(rq to stand for the left and right quote respectively. These both appear as " on most terminals, but are typeset as `` and '' respectively. For example, use:
\*(lqSome things aren't true even if they did happen.\*(rq
``Some things aren't true even if they did happen.''
.q "quoted text"