doc/sod.sty: Add `\fixme' macro for making omissions more obvious.
[sod] / doc / sod.sty
CommitLineData
1f7d590d
MW
1%%% -*-latex-*-
2%%%
3%%% Styles and other hacking for the Sod manual
4%%%
5%%% (c) 2015 Straylight/Edgeware
6%%%
7
8%%%----- Licensing notice ---------------------------------------------------
9%%%
e0808c47 10%%% This file is part of the Sensible Object Design, an object system for C.
1f7d590d
MW
11%%%
12%%% SOD is free software; you can redistribute it and/or modify
13%%% it under the terms of the GNU General Public License as published by
14%%% the Free Software Foundation; either version 2 of the License, or
15%%% (at your option) any later version.
16%%%
17%%% SOD is distributed in the hope that it will be useful,
18%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
19%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20%%% GNU General Public License for more details.
21%%%
22%%% You should have received a copy of the GNU General Public License
23%%% along with SOD; if not, write to the Free Software Foundation,
24%%% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26\ProvidesPackage{sod}
27
28%% More reference types.
29\defxref{p}{part}
30
31%% Other languages with special typesetting.
32\def\Cplusplus{C\kern-\p@++}
33\def\Csharp{C\#}
34
35%% Special maths notation.
36\def\chain#1#2{\mathsf{ch}_{#1}(#2)}
37\def\chainhead#1#2{\mathsf{hd}_{#1}(#2)}
38\def\chaintail#1#2{\mathsf{tl}_{#1}(#2)}
39
40%% Other mathematical tweaks.
41\let\implies\Rightarrow
42\let\epsilon\varepsilon
43
2ba6e0bd
MW
44%% A table heading cell. Clone and hack \multicolumn.
45\def\thd{\omit\@ifnextchar[\thd@{\thd@[l]}}
46\def\thd@[#1]#2{%
47 \begingroup
48 \tab@multicol \tab@initread \let\tab@looped\tab@err@multi
49 \tab@preamble{}\def\tab@midtext{\bfseries#2}\tab@readpreamble{#1}%
50 \the\tab@preamble
51 \endgroup \ignorespaces
52}
53
1f7d590d
MW
54%% Unix manpage references.
55\def\man#1#2{\textbf{#1}(#2)}
56
57%% Listings don't need to be small.
58\let\listingsize\relax
59
fea590fe
MW
60%% Notes for later.
61\def\fixme#1{\leavevmode\marginpar{FIXME}[FIXME: #1]}
62
1f7d590d
MW
63%% Metavariables are italics without decoration.
64\def\syntleft{\normalfont\itshape}
65\let\syntright\empty
66
67%% Literal code is in sans face.
5f1bbd61 68\def\codeface{\upshape\sffamily}
ddfe4265
MW
69\DeclareRobustCommand\code[1]{%
70 \ifmmode\hbox\else\leavevmode\fi%
71 {\normalfont\codeface\/#1\/}%
72}
1f7d590d
MW
73\def\ulitleft{\normalfont\codeface}
74\let\ulitright\empty
48ab1447 75\def\lit@i#1#2#3{\ifmmode\leavevmode\hbox\fi{#1{#3\/}#2}}
1f7d590d
MW
76
77%% Conditionally enter maths mode. Can't use \ensuremath here because we
78%% aren't necessarily sure where the maths will actually end.
79\let\m@maybe@end\relax
80\def\m@maybe{\ifmmode\else$\let\m@maybe@end$\fi}
81
82%% Standard syntax shortcuts.
83\atdef <#1>{\synt{#1}\@scripts}
84\atdef "#1"{\lit*{#1}\@scripts}
85\atdef `#1'{\lit{#1}\@scripts}
5f1bbd61 86\atdef |#1|{\lit*{#1}\@scripts}
1f7d590d
MW
87
88%% A handy abbreviation; `\\' itself is too good to steal.
89\atdef \\{\textbackslash}
90
91%% Intercept grammar typesetting and replace the vertical bar with the
92%% maths-font version.
93\let\@@grammar\grammar
94\def\grammar{\def\textbar{\hbox{$|$}}\@@grammar}
95
96%% Collect super- and subscripts. (Note that underscores are active for the
97%% most part.) When we're done, end maths mode if we entered it
98%% conditionally.
99\def\@scripts{\futurelet\@ch\@scripts@i}
100\begingroup\lccode`\~=`\_\lowercase{\endgroup
101\def\@scripts@i{\if1\ifx\@ch~1\else\ifx\@ch^1\else0\fi\fi%
102 \expandafter\@scripts@ii\else\expandafter\m@maybe@end\fi}}
103\def\@scripts@ii#1#2{\m@maybe#1{#2}\@scripts}
104
105%% Doubling characters, maybe. Either way, chain onto \@scripts.
106\def\dbl@maybe#1{\let\@tempa#1\futurelet\@ch\dbl@maybe@i}
107\def\dbl@maybe@i{\m@maybe\ifx\@ch\@tempa\@tempa\!\@tempa%
108 \expandafter\@firstoftwo\expandafter\@scripts%
109 \else\@tempa\expandafter\@scripts\fi}
110
111%% Extra syntax for Lisp templates. These produce the maths-font versions of
112%% characters, which should contrast well against the sans face used for
113%% literals.
114\atdef [{\dbl@maybe[}
115\atdef ]{\dbl@maybe]}
116\atdef {{\m@maybe\{\@scripts}
117\atdef }{\m@maybe\}\@scripts}
118\atdef ({\m@maybe(\@scripts}
119\atdef ){\m@maybe)\@scripts}
120\atdef !{\m@maybe|\@scripts}
121\def\returns{\m@maybe\longrightarrow\m@maybe@end\hspace{0.5em}\ignorespaces}
122\atdef >{\leavevmode\unskip\hspace{0.5em}\returns}
a5d80269 123\atdef -#1{\if>#1\hbox{--\raisebox{.4pt}{>}}\penalty200\relax\fi}
1f7d590d
MW
124
125%% Comment setting.
888d5e58
MW
126\def\comment#1{\mbox{\normalfont\itshape\/#1\/}}
127\atdef /*#1*/{/*\comment{#1}*/}
128\def\@semis{\@ifnextchar;{;\@semis}\@semicomment}
129\def\@semicomment#1\\{\comment{#1}\\}
130\atdef ;#1\\{;\@semis}
1f7d590d
MW
131
132%% Environment for setting programs. Newlines are explicit, because
133%% otherwise I need comments in weird places to make the vertical spacing
134%% come out properly. You can write `\obeylines' if you really want to.
4effe575
MW
135\def\@prog{\let\prog@@cr\@tabcr\let\@tabcr\@progcr\codeface\tabbing}
136\def\prog{\quote\@prog}
1f7d590d 137\def\endprog{\endtabbing\endquote}
4effe575
MW
138\let\nprog\@prog
139\let\endnprog\endtabbing
1f7d590d 140\def\ind{\quad\=\+\kill}
ebf5ae2e
MW
141\def\@progcr{\futurelet\@tempa\@progcr@i}
142{\def\:{\gdef\@progcr@sp}\: {\@progcr}}
ca8f5d55 143\atdef~{\textasciitilde}
ebf5ae2e
MW
144\def\@progcr@i{%
145 \ifx\@tempa\@sptoken\let\next@\@progcr@sp\else
146 \if1\ifx\@tempa[1\else
147 \ifx\@tempa*1\else
148 0\fi\fi
149 \let\next@\prog@@cr\else
150 \if1\ifx\@tempa+1\else
151 \ifx\@tempa-1\else
152 0\fi\fi
153 \let\next@\@progcr@ii\else
154 \let\next@\@progcr@a\fi\fi\fi
155 \next@}
156\def\@progcr@a{\prog@@cr*{}\ignorespaces}
157\def\@progcr@ii#1{\csname @progcr@#1\endcsname\ignorespaces}
158\@namedef{@progcr@+}{\prog@@cr[\medskipamount]}
159\@namedef{@progcr@-}{\prog@@cr*[\jot]}
5e4a5d53 160\def\macsl{\`\textbackslash\hskip\leftmargin}
1f7d590d
MW
161
162%% Put a chunk of text in a box.
163\newenvironment{boxy}[1][\q@]{%
9eb66c6e 164 \savenotes
1f7d590d
MW
165 \dimen@\linewidth\advance\dimen@-1.2pt\advance\dimen@-2ex%
166 \medskip%
167 \vbox\bgroup\hrule\hbox\bgroup\vrule%
168 \vbox\bgroup\vskip1ex\hbox\bgroup\hskip1ex\minipage\dimen@%
169 \def\@temp{#1}\ifx\@temp\q@\else\leavevmode{\headfam\bfseries#1\quad}\fi%
170}{%
171 \endminipage\hskip1ex\egroup\vskip1ex\egroup%
172 \vrule\egroup\hrule\egroup%
173 \medskip%
9eb66c6e 174 \spewnotes%
1f7d590d
MW
175}
176
177%% Lisp documentation machinery.
178\def\definedescribecategory#1#2{\@namedef{cat!#1}{#2}}
179\def\describecategoryname#1{%
180 \expandafter\let\expandafter\@tempa\csname cat!#1\endcsname%
181 \ifx\@tempa\relax#1\else\@tempa\fi}
95346c38 182\definedescribecategory{sym}{symbol}
1f7d590d
MW
183\definedescribecategory{fun}{function}
184\definedescribecategory{gf}{generic function}
57bcf70e 185\definedescribecategory{msg}{message}
1f7d590d 186\definedescribecategory{var}{variable}
7cd50210 187\definedescribecategory{modvar}{module variable}
1f7d590d
MW
188\definedescribecategory{const}{constant}
189\definedescribecategory{meth}{primary method}
95346c38
MW
190\definedescribecategory{ar-meth}{around method}
191\definedescribecategory{be-meth}{before method}
192\definedescribecategory{af-meth}{after method}
1f7d590d 193\definedescribecategory{cls}{class}
db6c3279 194\definedescribecategory{rst}{restart}
1f7d590d 195\definedescribecategory{ty}{type}
ddfe4265 196\definedescribecategory{type}{type}
1f7d590d 197\definedescribecategory{mac}{macro}
95346c38
MW
198\definedescribecategory{lmac}{local macro}
199\definedescribecategory{parse}{parser spec}
200\definedescribecategory{parseform}{parser form}
201\definedescribecategory{opt}{option handler}
202\definedescribecategory{optmac}{option macro}
7cd50210 203\definedescribecategory{plug}{pluggable parser}
1f7d590d
MW
204\def\nlret{\\\hspace{4em}\returns}
205
206\def\q@{\q@}
7e94c5fe
MW
207\def\parse@dhd#1{\@ifnextchar[{\parse@dhd@a{#1}}{\parse@dhd@c{#1}}}
208\def\parse@dhd@a#1[#2]{#1{#2}}
209\def\parse@dhd@c#1#2#3{\parse@dhd@cc{#1}{#2}{#3}#3 \q@}
210\def\parse@dhd@cc#1#2#3#4 #5\q@{#1{#4}{#2}{#3}}
211
212\newif\if@dheadfirst
213\def\dhead{\parse@dhd\dhead@}
214\def\dhead@#1#2#3{%
215 \if@dheadfirst\global\@dheadfirstfalse\else\relax\\[\smallskipamount]\fi%
216 {\let\protect\@empty\def\@uscore{_\@gobble}\message{#2:#1}%
217 \def\@uscore{-\@gobble}\edef\@tempa{\noexpand\label{#2:#1}}\@tempa}%
ddfe4265
MW
218 {\begingroup\lccode`\~=`\_\lowercase{\endgroup\def~{_}}%
219 \protected@edef\@tempa##1{%
220 \noexpand\index{%
221 #1@{\noexpand\code{#1}}!%
222 \csname cat!#2\endcsname%
223 ##1%
224 }%
225 }%
226 \@tempa{|(}%
227 \toks@\expandafter{\after@desc}%
228 \toks\tw@\expandafter{\@tempa{|)}}%
229 \xdef\after@desc{\the\toks@\the\toks\tw@}}%
ac6e7a4e
MW
230 \rlap{\hb@xt@\linewidth{\hfil\normalfont\bfseries
231 [\describecategoryname{#2}]}}%
7e94c5fe
MW
232 #3%
233}
234
235\def\desc@begin#1{%
ddfe4265
MW
236 \let\saved@after@desc\after@desc%
237 \gdef\after@desc{}%
1f7d590d 238 \normalfont%
7e94c5fe
MW
239 \if@nobreak\else\par\goodbreak\fi%
240 \global\@dheadfirsttrue%
241 \begingroup%
7e94c5fe
MW
242 \let\@endparenv\relax%
243 \clubpenalty\@M \widowpenalty\@M \interlinepenalty50%
ebf5ae2e 244 \@prog#1\endtabbing%
7e94c5fe
MW
245 \endgroup%
246 \penalty\@M\@afterheading%
247 \list{}{\rightmargin\z@\topsep\z@}\item%
1f7d590d 248}
ddfe4265 249\def\desc@end{\endlist\after@desc\global\let\after@desc\saved@after@desc}
7e94c5fe
MW
250
251\@namedef{describe*}#1{\desc@begin{#1}}
252\expandafter\let\csname enddescribe*\endcsname\desc@end
253\def\describe{\parse@dhd\desc@}
254\def\desc@#1#2#3{\desc@begin{\dhead@{#1}{#2}{#3}}}
255\let\enddescribe\desc@end
1f7d590d 256
58f9b400
MW
257\def\descref#1{\@ifnextchar[{\descref@i{#1}}{\descref@ii{#1}{}}}
258\def\descref@i#1[#2]{\descref@ii{#1}{ #2}}
259\def\descref@ii#1#2#3{%
260 \code{#1}#2 (page~%
261 {\let\protect\@empty%
262 \def\@uscore{-\@gobble}\edef\@tempa{\noexpand\pageref{#3:#1}}\@tempa}%
263 )%
264}
265
f1f17867
MW
266%%%----- That's all, folks --------------------------------------------------
267\endinput