aboutsummaryrefslogtreecommitdiff
path: root/share/doc/usd/22.trofftut/tt04
blob: c44c94baa51f406d2f0ae6828f5dcd26821a280f (plain) (blame)
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
.\" This module is believed to contain source code proprietary to AT&T.
.\" Use and redistribution is subject to the Berkeley Software License
.\" Agreement and your Software Agreement with AT&T (Western Electric).
.\"
.\"	@(#)tt04	8.1 (Berkeley) 6/8/93
.\" Copyright (C) Caldera International Inc. 2001-2002.  All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions are
.\" met:
.\"
.\" Redistributions of source code and documentation must retain the above
.\" copyright notice, this list of conditions and the following
.\" disclaimer.
.\"
.\" Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\"
.\" All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\"
.\" This product includes software developed or owned by Caldera
.\" International, Inc.  Neither the name of Caldera International, Inc.
.\" nor the names of other contributors may be used to endorse or promote
.\" products derived from this software without specific prior written
.\" permission.
.\"
.\" USE OF THE SOFTWARE PROVIDED FOR UNDER THIS LICENSE BY CALDERA
.\" INTERNATIONAL, INC.  AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
.\" DISCLAIMED.  IN NO EVENT SHALL CALDERA INTERNATIONAL, INC. BE LIABLE
.\" FOR ANY DIRECT, INDIRECT INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
.\" BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
.\" WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
.\" OR OTHERWISE) RISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
.\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.\" $FreeBSD$
.\"
.NH
Indents and Line Lengths
.PP
.UL troff
starts with a line length of 6.5 inches,
which some people think is too wide for 8\(12\(mu11 paper.
To reset the line length,
use
the
.BD .ll
command, as in
.P1
^ll 6i
.P2
As with
.BD .sp ,
the actual length can be specified in several ways;
inches are probably the most intuitive.
.PP
The maximum line length provided by the typesetter is 7.5 inches, by the way.
To use the full width, you will have to reset the default physical left margin (``page offset''),
which is normally slightly less than one inch from the left edge
of the paper.
This is done by the
.BD .po
command.
.P1
^po 0
.P2
sets the offset as far to the left as it will go.
.WS
.PP
The indent command
.BD .in
causes the left margin to be indented
by some specified amount from the page offset.
If we use
.BD .in
to move the left margin in,
and
.BD .ll
to move the right margin to the left,
we can
make offset blocks of text:
.P1
^in 0.3i
^ll \(mi0.3i
text to be set into a block
^ll +0.3i
^in \(mi0.3i
.P2
will create a block that looks like this:
.P1
.fi
.ll -0.3i
Pater noster qui est in caelis sanctificetur nomen tuum;
adveniat regnum tuum; fiat voluntas tua, sicut in caelo,
et in terra. ...
Amen.
.ll +0.3i
.P2
Notice the use of `+' and `\(mi'
to specify the amount of change.
These change the previous setting by the specified amount,
rather than just overriding it.
The distinction is quite important:
.BD .ll\ +1i
makes lines one inch longer;
.BD .ll\ 1i
makes them one inch
.ul
long.
.PP
With
.BD .in ,
.BD .ll
and
.BD .po ,
the previous value is used if no argument is specified.
.PP
To indent a single line, use the `temporary indent'
command
.BD .ti .
For example, all paragraphs in this memo
effectively begin with the command
.P1
^ti 3
.P2
Three of what?
The default unit for
.BD .ti ,
as for most horizontally oriented commands
.BD .ll , (
.BD .in ,
.BD .po ),
is ems;
an em is roughly the width of the letter `m'
in the current point size.
(Precisely, an em in size
.ul
p
is
.ul
p
points.)
Although inches are usually clearer than ems to people who don't set type
for a living,
ems have a place:
they are a measure of size that is proportional to the current point size.
If you want to make text that keeps its proportions
regardless of point size,
you should use ems for all dimensions.
Ems can be specified as scale factors directly,
as in
.BD .ti\ 2.5m .
.PP
Lines can also be indented negatively
if the indent is already positive:
.P1
^ti \(mi0.3i
.P2
causes the next line to be moved back three tenths of an inch.
Thus to make a decorative initial capital,
we indent the whole paragraph, then move the letter `P' back with
a
.BD .ti
command:
.P1
.ll -0.3i
.fi
.in +.3i
.ti -0.3i
\s36\v'2'P\v'-2'\s0ater noster qui est in caelis sanctificetur
nomen tuum;
adveniat regnum tuum;
'in -.3i
fiat voluntas tua,
sicut in caelo, et in terra. ...
Amen.
.ll +0.3i
.P2
Of course, there is also some trickery to make the `P'
bigger (just a `\es36P\es0'),
and to move it
down from its normal position
(see the section on local motions).