chiark / gitweb /
@@@ doc wip
[mLib] / defs.man
CommitLineData
c4ccbbf9
MW
1.\" -*-nroff-*-
2.\"
3.\" Common definitions for mLib manpages
4.\"
5.\" (c) 2024 Straylight/Edgeware
6.\"
7.
8.\"----- Licensing notice ---------------------------------------------------
9.\"
10.\" This file is part of the mLib utilities library.
11.\"
12.\" mLib is free software: you can redistribute it and/or modify it under
13.\" the terms of the GNU Library General Public License as published by
14.\" the Free Software Foundation; either version 2 of the License, or (at
15.\" your option) any later version.
16.\"
17.\" mLib is distributed in the hope that it will be useful, but WITHOUT
18.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19.\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
20.\" License for more details.
21.\"
22.\" You should have received a copy of the GNU Library General Public
23.\" License along with mLib. If not, write to the Free Software
24.\" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
25.\" USA.
26.
27.\"--------------------------------------------------------------------------
28.\" Preliminary definitions.
29.
30.\" String definitions and font selection.
31.ie t \{\
32. ds o \(bu
33. ds ss \s8\u
34. ds se \d\s0
35. ds us \s8\d
36. ds ue \u\s0
37. ds *d \(*d
c752173d
MW
38. ds /= \(!=
39. ds <= \(<=
c4ccbbf9 40. ds >= \(>=
c752173d 41. ds ' \(fm
c4ccbbf9
MW
42. ds , \h'\w'\ 'u/2u'
43. if \n(.g \{\
44. fam P
45. ev an-1
46. fam P
47. ev
48. \}
49.\}
50.el \{\
51. ds o o
52. ds ss ^
53. ds se
54. ds us _
55. ds ue
c752173d 56. ds ' \(aq
c4ccbbf9 57. ds *d \,\fIdelta\/\fP
c752173d 58. ds /= /=
c4ccbbf9
MW
59. ds <= <=
60. ds >= >=
61. ds , \ \"
62.\}
63..
64.
65.\" hP TEXT -- start an indented paragraph with TEXT hanging off to the left
66.de hP
67. IP
68. ft B
69\h'-\w'\\$1\ 'u'\\$1\ \c
70. ft P
71..
72.
73.\" .VS ... .VE -- present a code sample; separate paragraphs with `.VP'
74.de VS
75. sp
76. RS
77. nf
78. ft B
79..
80.ie t \{\
81. de VP
82. sp .4v
83..
84.\}
85.el \{\
86. de VP
87. sp
88..
89.\}
90.de VE
91. ft R
92. fi
93. RE
94. sp
95..
96.
97.\"----- That's all, folks --------------------------------------------------