diff options
Diffstat (limited to 'default.ms')
-rw-r--r-- | default.ms | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/default.ms b/default.ms new file mode 100644 index 0000000..c136843 --- /dev/null +++ b/default.ms | |||
@@ -0,0 +1,108 @@ | |||
1 | .\" **** Custom macro definitions ********************************* | ||
2 | .\" * Super/subscript | ||
3 | .\" (https://lists.gnu.org/archive/html/groff/2012-07/msg00046.html) | ||
4 | .ds { \v'-0.3m'\\s[\\n[.s]*9u/12u] | ||
5 | .ds } \s0\v'0.3m' | ||
6 | .ds < \v'0.3m'\s[\\n[.s]*9u/12u] | ||
7 | .ds > \s0\v'-0.3m' | ||
8 | .\" * Horizontal line | ||
9 | .de HLINE | ||
10 | .LP | ||
11 | .ce | ||
12 | \l'20' | ||
13 | .. | ||
14 | $if(highlighting-macros)$ | ||
15 | .\" * Syntax highlighting macros | ||
16 | $highlighting-macros$ | ||
17 | $endif$ | ||
18 | .\" **** Settings ************************************************* | ||
19 | .\" text width | ||
20 | .nr LL 5.5i | ||
21 | .\" left margin | ||
22 | .nr PO 1.25i | ||
23 | .\" top margin | ||
24 | .nr HM 1.25i | ||
25 | .\" bottom margin | ||
26 | .nr FM 1.25i | ||
27 | .\" header/footer width | ||
28 | .nr LT \n[LL] | ||
29 | .\" point size | ||
30 | .nr PS $if(pointsize)$$pointsize$$else$10p$endif$ | ||
31 | .\" line height | ||
32 | .nr VS $if(lineheight)$$lineheight$$else$12p$endif$ | ||
33 | .\" font family: A, BM, H, HN, N, P, T, ZCM | ||
34 | .fam $if(fontfamily)$$fontfamily$$else$T$endif$ | ||
35 | .\" paragraph indent | ||
36 | .nr PI $if(indent)$$indent$$else$2m$endif$ | ||
37 | .\" interparagraph space | ||
38 | .nr PD 0.33v | ||
39 | .\" footnote width | ||
40 | .nr FL \n[LL] | ||
41 | .\" footnote point size | ||
42 | .nr FPS (\n[PS] - 2000) | ||
43 | .\" color used for strikeout | ||
44 | .defcolor strikecolor rgb 0.7 0.7 0.7 | ||
45 | .\" color for links (rgb) | ||
46 | .ds PDFHREF.COLOUR 0.35 0.00 0.60 | ||
47 | .\" border for links (default none) | ||
48 | .ds PDFHREF.BORDER 0 0 0 | ||
49 | .\" point size difference between heading levels | ||
50 | .nr PSINCR 1p | ||
51 | .\" heading level above which point size no longer changes | ||
52 | .nr GROWPS 2 | ||
53 | .\" comment these out if you want a dot after section numbers: | ||
54 | .als SN SN-NO-DOT | ||
55 | .als SN-STYLE SN-NO-DOT | ||
56 | .\" pdf outline fold level | ||
57 | .nr PDFOUTLINE.FOLDLEVEL 3 | ||
58 | .\" start out in outline view | ||
59 | .pdfview /PageMode /UseOutlines | ||
60 | .\" *************************************************************** | ||
61 | .\" PDF metadata | ||
62 | .pdfinfo /Title "$title-meta$" | ||
63 | .pdfinfo /Author "$author-meta$" | ||
64 | $if(adjusting)$ | ||
65 | .ad $adjusting$ | ||
66 | $endif$ | ||
67 | $if(hyphenate)$ | ||
68 | .hy | ||
69 | $else$ | ||
70 | .nh \" Turn off hyphenation by default. | ||
71 | $endif$ | ||
72 | $if(has-inline-math)$ | ||
73 | .EQ | ||
74 | delim @@ | ||
75 | .EN | ||
76 | $endif$ | ||
77 | $for(header-includes)$ | ||
78 | $header-includes$ | ||
79 | $endfor$ | ||
80 | $if(title)$ | ||
81 | .TL | ||
82 | $title$ | ||
83 | $endif$ | ||
84 | $for(author)$ | ||
85 | .AU | ||
86 | $author$ | ||
87 | $endfor$ | ||
88 | $if(date)$ | ||
89 | .ND "$date$" | ||
90 | $endif$ | ||
91 | $if(abstract)$ | ||
92 | .AB | ||
93 | $abstract$ | ||
94 | .AE | ||
95 | $endif$ | ||
96 | .\" 1 column (use .2C for two column) | ||
97 | .1C | ||
98 | $for(include-before)$ | ||
99 | $include-before$ | ||
100 | $endfor$ | ||
101 | $body$ | ||
102 | $if(toc)$ | ||
103 | .TC | ||
104 | $endif$ | ||
105 | $for(include-after)$ | ||
106 | $include-after$ | ||
107 | $endfor$ | ||
108 | .pdfsync | ||