aboutsummaryrefslogtreecommitdiff
path: root/g.tmac
blob: bb7e2cd47022ae9b9c7813583371f66eaada378f (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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
.\"                                          "/.
.\"        mg macro package for troff        "/.
.\"        created by John Ankarström        "/.
.\"                                          "/.
.\" Permission to use, copy, modify and/or   "/.
.\" distribute this software for any purpose "/.
.\" with or without fee is hereby granted.   "/.
.\"                                          "/.
.\" For an index of the macros defined in    "/.
.\" this file, issue `grep -n [-]- g.tmac'.  "/.
.\"                                          "/.
.\" Place new macros in alphabetical order.  "/.
.\"                                          "/.
.\" Do not use .ev and .evc outside wrapper  "/.
.\" macros like _e.                          "/.
.\"                                          "/.
.
.eo \" disable backslash escapes
.
.\" Internal macros ----------------------------
.
.\" _a -- setup document
.de _a
.
. \" configure initial options
. _nr mt 1i \" margin top
. _nr mb 1i \" margin bottom
.
. \" initialize document
. wh 0 _ht
. wh -\n(mbu _ft
. sp 1u \" trigger header
. ns
.
. \" configure environments
. _e d \" date
.  _ec 0
.  nr sp 0.4v
.  ad c
. _e h \" heading
.  _ec 0
.  nr sp 1.2v
.  ps +1p
.  ft B
. _e l \" literal display
.  _ec 0
.  nr sp 0.3v
.  nf
.  in 18p
.  fam C
.  ps -1p
.  vs -1p
. _e n \" name (of author)
.  _ec 0
.  nr sp 0.4v
.  ad c
. _e p \" paragraph
.  _ec 0
.  nr sp 0.3v
.  nr ti 18p
.  ad b
. _e q \" quotation
.  _ec 0
.  nr sp 0.3v
.  nr ti 1c
.  in 18p
.  ps -1p
.  vs -1p
. _e s \" section heading
.  _ec 0
.  nr sp 1v
.  ft B
. _e t \" title
.  _ec 0
.  ps +4p
.  vs +2p
.  ft B
.  ad c
. _e
.
. \" configure special environments
. _E _f \" footnote
.  _ec 0
.  ps -2p
.  \" do not change vs!
. _E _m \" margins (header, footer)
.  _ec 0
. _E
..
.
.\" _ds -- set default string value
.de _ds
. if '\*[\$1]'' .ds \$1 \$2
..
.
.\" _E -- just set environment
.de _E
. ev \$1
..
.
.\" _e -- set environment
.de _e
.
. \" initialize document?
. if '\n(_a'0' \{\
.  nr _a 1
.  _a
. \}
.
. \" save special environment variables
. if !'\n[.ev]'0' \{\
.  nr \n[.ev]_sp \n(sp \" vertical space before any environment
.  nr \n[.ev]_sq \n(sq \" vertical space before different environment
.  nr \n[.ev]_ti \n(ti \" first line indentation
.  ev
. \}
.
. \" keep track of previous and new environment
. ds _penv \*[_env]
. ds _env \$1
.
. \" post-environment operations
. if !'\$1'' \{\
.  \" add small space after title
.  if '\*[_penv]'t' \{\
.   if '\*[_env]'n' .sp 0.1v
.   if '\*[_env]'d' .sp 0.1v
.  \}
.
.  \" add space after date/name/title
.  if !'\*[_env]'n' .if !'\*[_env]'d' \{\
.   nr _dnt 0
.   ie '\*[_penv]'t' .nr _dnt 1
.   el .ie '\*[_penv]'n' .nr _dnt 1
.   el .if '\*[_penv]'d' .nr _dnt 1
.   if \n[_dnt]==1 \{\
.    sp 0.5i
.    ns
.   \}
.  \}
. \}
.
. \" activate new environment
. if !'\$1'' \{\
.  ev \$1
.  nr sp \n[\n[.ev]_sp]
.  nr sq \n[\n[.ev]_sq]
.  nr ti \n[\n[.ev]_ti]
.  sp \n(spu
.  if !'\*[_env]'\*[_penv]' .sp \n(squ
. \}
..
.
. \" _ec -- copy environment
.de _ec
. evc \$1
. nr sp \n[\$1_sp]
. nr sq \n[\$1_sq]
. nr ti \n[\$1_ti]
..
.
.\" _ft -- footer trap
.de _ft
.
. \" collect overflowed text
. di _rest
. br
. di
.
. \" print footer
. _E _m
. sp 2v
. tl ''%''
. bp
.
. \" print overflowed text on next page
. _rest
..
.
.\" _ht -- header trap
.de _ht
. _E _m
' sp \n(mtu
..
.
.\" _nt -- footnote trap
.de _nt
. _E _m
.
. \" print collected footnotes
___________________
. br
. _n
. br
.
. \" clear footnotes
. ch _nt
. nr _dn 0
. box _n
. box
..
.
.\" _nr -- set default numeric value
.de _nr
. if \n[\$1]=0 .nr \$1 \$2
..
.
.
.\" Inline macros ------------------------------
.
.\" b -- bold font
.de b
\$3\fB\$1\fP\$2
..
.
.\" c -- constant-width font
.de c
.
. \" copy family and point size from l environment
. _E l
. ds _fam \n[.fam]
. nr _s \n(.s
. _E
.
\$3\c
. fam \*[_fam]
. ps \n(_s
\$1\c
. fam
. ps
\$2
..
.
.\" i -- italic font
.de i
\$3\fI\$1\fP\$2
..
.
.\" x -- bold italic font
.de x
\$3\f(BI\$1\fP\$2
..
.
.
.\" Hybrid macros ------------------------------
.
.\" q -- quotation
.de q
.
. \" inline
. ie !'\$1'' \$3\(lq\$1\(rq\$2
.
. \" block
. el \{\
.  br
.  _e q
.  ti \n(tiu
. \}
..
.
.
.\" Environment macros -------------------------
.
.
.\" d -- date
.de d
. br
. _e d
. af mo 00
. af dy 00
. ie '\$1'' \n[year]-\n(mo-\n(dy
. el \$1
. af mo 1
. af dy 1
..
.\" h -- heading
.de h
. br
. _e h
.
..
.\" l -- literal display
.de l
. br
. _e l
..
.\" n -- name (of author)
.de n
. br
. _e n
..
.
.\" p -- paragraph
.de p
. br
. _e p
. if '\*[_penv]'p' .ti \n(tiu
..
.
.\" s -- subheading
.de s
. br
. _e s
..
.
.\" t -- title
.de t
. br
. _e t
..
.
.
.\" Other macros -------------------------------
.
.\" ( -- begin footnote
.de (
. if !'\$1'' \&\$1\c
.
. \" increment and print number
. nr _n \n(_n+1
\v'-.3m'\s'\En(.s*80/100'\n(_n\s0\v'.3m'\c
.
. \" switch environment and capture footnote
. _E _f
. boxa _n
\v'-.3m'\s'\En(.s*80/100'\n(_n\s0\v'.3m'
..
.
.\" ) -- end footnote
.de )
. br
\!.br
. boxa
. _E
. ie !'\$1'' \&\$1
. el \&
.
. \" print footnote at bottom of page
. nr _dn +\n(dnu
. ch _nt
. if !'\n(dn'0' .wh -\n[_dn]u-1i-1v _nt
..
.
.ec \" re-enable backslash escapes