summaryrefslogtreecommitdiff
path: root/contrib/mom/momdoc/using.html
blob: e69ea87fea962442ecc59a10211e45e7afd9aace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<?xml version="1.0" encoding="iso-8859-1"?>
<!--
This file is part of groff, the GNU roff type-setting system.

Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
Written by Peter Schaffter.

Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.1 or
any later version published by the Free Software Foundation; with the
Invariant Sections being this comment section, with no Front-Cover
Texts, and with no Back-Cover Texts.

A copy of the Free Documentation License is included as a file called
FDL in the main directory of the groff source package.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1"/>
<title>Using mom</title>
</head>
<body bgcolor="#dfdfdf">

<!-- ==================================================================== -->

<a name="TOP"></a>

<p>
<a href="typesetting.html#TOP">Next</a>&nbsp;&nbsp;
<a href="definitions.html#TOP">Prev</a>&nbsp;&nbsp;
<a href="toc.html">Back to Table of Contents</a>
</p>

<a name="USING"><h1 align="center"><u>Using mom</u></h1></a>

<p>
<a href="#USING_INTRO">Introduction</a>
<br/>
<a href="#USING_MACROS">Inputting macros</a>
<br/>
<a href="#USING_INVOKING">Invoking groff</a>
<br/>
<a href="#USING_PREVIEWING">Previewing documents</a>
</p>

<hr/>

<h2><a name="USING_INTRO"><u>Introduction</u></a></h2>

<p>
As explained in the section
<a href="intro.html#INTRO">What is mom?</a>,
<strong>mom</strong> can be used in two ways: for straight
typesetting or for document processing.  The difference between
the two is that in straight typesetting, every macro is a literal
typesetting instruction that determines precisely how text
following it will look.  Document processing, on the other hand,
uses markup &quot;tags&quot; (e.g. <kbd>.PP</kbd> for paragraphs,
<kbd>.HEAD</kbd> for heads, <kbd>.FOOTNOTE</kbd> for footnotes,
etc.) that make a lot of typesetting decisions automatically.
</p>

<p>
You tell <strong>mom</strong> that you want to use the document
processing macros with the
<a href="docprocessing.html#START">START</a>
macro, explained below.  After <strong>START</strong>,
<strong>mom</strong> determines the appearance of text following
the markup tags automatically, although you, the user, can easily
change how <strong>mom</strong> interprets the tags.  This gives you
nearly complete control over document design.  In addition, the
typesetting macros, in combination with document processing, let you
meet all sorts of typesetting needs that just can't be covered by
&quot;one macro fits all&quot; markup tags.
</p>

<a name="USING_MACROS"><h2><u>How to input mom's macros</u></h2></a>

<p>
Regardless of which way you use <strong>mom</strong>, the
following apply.
</p>

<ol>
    <li>
    You need a good text editor for inputting
    <strong>mom</strong> files.

    <p>
    I cannot recommend highly enough that you use an
    editor that lets you write syntax highlighting
    rules for <strong>mom</strong>'s macros and
    <a href="definitions.html#TERMS_INLINES">inline escapes</a>.
    I use the vi clone called elvis, and find it a pure
    joy in this regard.  Simply colourizing macros and
    inlines to half-intensity can be enough to make text stand
    out clearly from formatting commands.
    </p>

    </li>

    <li>
    All <strong>mom</strong>'s macros begin with a period
    (dot) and must be entered in upper case (capital)
    letters.
    </li>

    <li>
    Macro
    <a href="definitions.html#TERMS_ARGUMENTS">arguments</a>
    are separated from the macro itself by spaces.  Multiple
    arguments to the same macro are separated from each
    other by spaces.  Any number of spaces may be used.  All
    arguments to a macro must appear on the same line as the
    macro.
    </li>

    <li>
    Any argument (except a
    <a href="definitions.html#TERMS_STRINGARGUMENT">string argument</a>)
    that is not a digit must be entered in upper case
    (capital) letters.
    </li>

    <li>
    Any argument that requires a plus or minus sign must
    have the plus or minus sign prepended to the argument
    with no intervening space (e.g. <kbd>+2, -4</kbd>).
    </li>

    <li>
    Any argument that requires a
    <a href="definitions.html#TERMS_UNITOFMEASURE">unit of measure</a>
    must have the unit appended directly to the argument, with
    no intervening space (e.g. <kbd>4P, .5i, 2v</kbd>).
    </li>

    <li>
    <a href="definitions.html#TERMS_STRINGARGUMENT">String arguments</a>,
    in the sense that the term is used in this manual, must
    be surrounded by double-quotes (&quot;text of
    string&quot;).  Multiple string arguments are separated
    from each other by spaces (each argument surrounded by
    double-quotes, of course).
    </li>

    <li>
    If a string argument, as entered in your text editor,
    becomes uncomfortably long (i.e. runs longer than the
    visible portion of your screen or window), you may break
    it into two or more lines by placing the backslash
    character (<kbd>\</kbd>) at the ends of lines to break
    them up, like this:

    <pre>
    .SUBTITLE "An In-Depth Consideration of the \
    Implications of Forty-Two as the Meaning of Life, \
    The Universe, and Everything"
    </pre>
    </li>
</ol>

<p>
It's important that formatted documents be easy to read/interpret
when you're looking at them in a text editor.  One way to achieve
this is to group macros that serve a similar purpose together, and
separate them from other groups of macros with a blank comment
line.  In groff, that's done with <kbd>\#</kbd> on a line by itself.
Consider the following, which is a template for starting the chapter
of a book.

<pre>
    .TITLE   "My Pulitzer Novel"
    .AUTHOR  "Joe Blow"
    .CHAPTER  1
    \#
    .DOCTYPE    CHAPTER
    .PRINTSTYLE TYPESET
    \#
    .FAM     P
    .PT_SIZE 10
    .LS      12
    \#
    .START
</pre>
</p>

<a name="USING_INVOKING"><h2><u>Printing &mdash; invoking groff with mom</u></h2></a>

<p>
After you've finished your document, naturally you will want to
print it.  This involves invoking groff from the command line.  In
all likelihood, you already know how to do this, but in case you
don't, here are two common ways to do it.

<pre>
    groff -mom -l &lt;filename&gt;
    groff -mom &lt;filename&gt; | lpr
</pre>
</p>

<p>
In the first, the <kbd>-l</kbd> option to groff tells groff to
send the output to your printer.  In the second, you're doing the
same thing, except you're telling groff to pipe the output to your
printer.  Basically, they're the same thing.  The only advantage to
the second is that your system may be set up to use something other
than <strong>lpr</strong> as your print command, in which case, you
can replace <kbd>lpr</kbd> with whatever is appropriate to your box.
</p>

<p>
Sadly, it is well beyond the scope of this manual to tell you
how to set up a printing system.  See the README file for
minimum requirements to run groff with <strong>mom</strong>.
</p>

<p>
<strong>NOTE FOR ADVANCED USERS:</strong> I've sporadically
had groff choke on perfectly innocent sourced files within
<strong>mom</strong> documents.  You'll know you have this problem
when groff complains that it can't find the sourced file even when
you can plainly see that the file exists, and that you've given
<kbd>.so</kbd> the right path and name.  Should this happen, pass
groff the <kbd>-U</kbd> (unsafe mode) option along with the other
options you require.  Theoretically, you only need <kbd>-U</kbd>
with <kbd>.open, .opena, .pso, .sy,</kbd> and <kbd>.pi</kbd>,
however reality seems, at times, to dictate otherwise.
</p>

<a name="USING_PREVIEWING"><h2><u>How to preview documents</u></h2></a>

<p>
Other than printing out hard copy, there are two well-established
methods for previewing your work.  Both assume you have a working
X server.
</p>

<p>
Groff itself comes with a quick and dirty previewer called
gxditview. Invoke it with

<pre>
    groff -X -mom filename
</pre>

It's not particularly pretty, doesn't have many navigation
options, requires a lot of work if you want to use other than
the &quot;standard&quot; groff PostScript fonts, and occasionally
has difficulty accurately reproducing some of
<strong>mom</strong>'s macro effects
(<a href="goodies.html#SMARTQUOTES">smartquotes</a>
and
<a href="goodies.html#LEADER">leaders</a>
come to mind).  What it does have going for it is that it's fast and
doesn't gobble up system resources.
</p>

<p>
A surer way to preview documents is with <strong>gv</strong>
(ghostview).  This involves processing documents with groff,
and directing the output to a PostScript file, like this,

<pre>
    groff -mom filename &gt; filename.ps
</pre>

then opening the .ps file in <strong>gv</strong>.
</p>

<p>
While that may sound like a lot of work, I've set up my editor
(elvis) to do it for me.  Whenever I'm working on a document that
needs previewing/checking, I fire up <strong>gv</strong> with the
&quot;Watch File&quot; option turned on.  To look at the file, I
tell elvis to process it (with groff) and send it to a temporary
file (<kbd>groff -mom filename &gt; filename.ps</kbd>), then open
the file inside <strong>gv</strong>.  Ever after, when I want to
look at any changes I make, I simply tell elvis to work his magic
again.  The Watch File option in <strong>gv</strong> registers that
the file has changed, and automatically loads the new version.
Voilą! &mdash; instant previewing.
</p>

<hr/>

<p>
<a href="typesetting.html#TOP">Next</a>&nbsp;&nbsp;
<a href="definitions.html#TOP">Prev</a>&nbsp;&nbsp;
<a href="#TOP">Top</a>&nbsp;&nbsp;
<a href="toc.html">Back to Table of Contents</a>
</p>

</body>
</html>
<!-- vim: fileencoding=latin1: nomodified:
-->