@@@ fltfmt 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 >= \(>=
dc6eea4e
MW
41. ds mu \(mu
42. ds sr \(sr
c752173d 43. ds ' \(fm
c4ccbbf9
MW
44. ds , \h'\w'\ 'u/2u'
45. if \n(.g \{\
46. fam P
47. ev an-1
48. fam P
49. ev
50. \}
51.\}
52.el \{\
53. ds o o
54. ds ss ^
55. ds se
56. ds us _
57. ds ue
dc6eea4e
MW
58. ds mu *
59. ds sr sqrt
c752173d 60. ds ' \(aq
c4ccbbf9 61. ds *d \,\fIdelta\/\fP
c752173d 62. ds /= /=
c4ccbbf9
MW
63. ds <= <=
64. ds >= >=
65. ds , \ \"
66.\}
67..
68.
69.\" hP TEXT -- start an indented paragraph with TEXT hanging off to the left
70.de hP
71. IP
72. ft B
73\h'-\w'\\$1\ 'u'\\$1\ \c
74. ft P
75..
76.
77.\" .VS ... .VE -- present a code sample; separate paragraphs with `.VP'
78.de VS
79. sp
80. RS
81. nf
82. ft B
83..
84.ie t \{\
85. de VP
86. sp .4v
87..
88.\}
89.el \{\
90. de VP
91. sp
92..
93.\}
94.de VE
95. ft R
96. fi
97. RE
98. sp
99..
100.
101.\"----- That's all, folks --------------------------------------------------