Replace general GPL rubrics with project-specific ones.
[mdwtools] / mdwref.dtx
1 % \begin{meta-comment} <general public licence>
2 %%
3 %% mdwref package -- slightly fancy cross-referencing stuff
4 %% Copyright (c) 2007, 2019 Mark Wooding
5 %%
6 %% This file is part of the `mdwtools' LaTeX package collection.
7 %%
8 %% `mdwtools' is free software: you can redistribute it and/or modify it
9 %% under the terms of the GNU General Public License as published by the
10 %% Free Software Foundation; either version 2 of the License, or (at your
11 %% option) any later version.
12 %%
13 %% `mdwtools' is distributed in the hope that it will be useful, but
14 %% WITHOUT ANY WARRANTY; without even the implied warranty of
15 %% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 %% General Public License for more details.
17 %%
18 %% You should have received a copy of the GNU General Public License
19 %% along with `mdwtools'. If not, write to the Free Software Foundation,
20 %% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 %%
22 % \end{meta-comment}
23 %
24 % \begin{meta-comment} <Package preambles>
25 %<+package>\NeedsTeXFormat{LaTeX2e}
26 %<+package>\ProvidesPackage{mdwref}
27 %<+package> [2020/09/06 1.14.0 Cross-referencing]
28 % \end{meta-comment}
29 %
30 % ^^A\CheckSum{96}
31 %% \CharacterTable
32 %% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
33 %% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
34 %% Digits \0\1\2\3\4\5\6\7\8\9
35 %% Exclamation \! Double quote \" Hash (number) \#
36 %% Dollar \$ Percent \% Ampersand \&
37 %% Acute accent \' Left paren \( Right paren \)
38 %% Asterisk \* Plus \+ Comma \,
39 %% Minus \- Point \. Solidus \/
40 %% Colon \: Semicolon \; Less than \<
41 %% Equals \= Greater than \> Question mark \?
42 %% Commercial at \@ Left bracket \[ Backslash \\
43 %% Right bracket \] Circumflex \^ Underscore \_
44 %% Grave accent \` Left brace \{ Vertical bar \|
45 %% Right brace \} Tilde \~}
46 %%
47 %
48 % \begin{meta-comment}
49 %
50 %<*driver>
51 \input{mdwtools}
52 \describespackage{mdwref}
53 \usepackage{mdwtab}
54 \mdwdoc
55 %</driver>
56 %
57 % \end{meta-comment}
58 %
59 %^^A-------------------------------------------------------------------------
60 %
61 % \section{User guide}
62 %
63 % I always name my cross-reference labels with a prefix telling me what kind
64 % of thing they are. A figure might be |fig:foo| or a table |tab:bar|. When
65 % I refer to the thing, then, I basically have to repeat myself:
66 % `|see table~\ref{tab:bar}|'. Kinda silly.
67 %
68 % \DescribeMacro\xref
69 % The |\xref| command understands my prefixing system. I can say
70 % `|\xref{tab:bar}|' and it inserts a reference to `table~4', for example.
71 % This is, of course, useless if you want to put the reference at the
72 % beginning of a sentence: `Table~4 shows\dots'.
73 % \DescribeMacro\Xref
74 % The |\Xref| command (note the initial capital) handles this properly, so
75 % you just type `|\Xref{tab:bar} shows|\dots'.
76 %
77 % The full syntax of the |\xref| command is like this.
78 % \begin{grammar}
79 % <xref-command> ::= \[[
80 % "\\xref"
81 % \[ "[" <mangle> "]" \]
82 % "{" <reference> "}"
83 % \]]
84 % \end{grammar}
85 % The optional \<mangle> argument is a command to be applied to the generated
86 % text: it \emph{must} be a single token. Rather than printing `table', or
87 % whatever, it prints \syntax{<mangle>"{table}"}.
88 % The most obvious application of this is the |\Xref| command, which uses a
89 % helper |\toupper|.
90 % \DescribeMacro\toupper
91 % The call \syntax{"\\toupper{"<stuff>"}"} typesets \<stuff> with the first
92 % character in uppercase. So |\Xref| is defined simply as\footnote{Modulo
93 % the fact that the author is a dreadful \TeX\ hacker.}
94 % \begin{listing}
95 %\newcommand{\Xref}[1]{\xref[\toupper]{#1}}
96 % \end{listing}
97 %
98 % \DescribeMacro\formatxref
99 % The reference itself is typeset by calling
100 % \syntax{"\\formatxref{"<mangle>"}{"<string>"}{"<label>"}"}, which can do as
101 % it pleases: the \<mangle> token is from the |\xref| invocation; the
102 % \<string> is category of thing being referred to (as established by
103 % |\defxref| below); and \<label> is the label, again from |\xref| . The
104 % default behaviour is to print
105 % \syntax{<mangle>"{"<string>"}~\\ref{"<label>"}"}, but this can be
106 % overridden.
107 % (Not quite true: in fact, the default does something better if
108 % \package{hyperref} is detected, but the idea is basically the same.)
109 %
110 % All that remains is to define the strings to be typeset for various kinds
111 % of labels.
112 % \DescribeMacro\defxref
113 % For this, we use the |\defxref| command:
114 % \begin{grammar}
115 % <definition> ::= \[[
116 % "\\defxref"
117 % "{" <prefix> "}"
118 % "{" <string> "}"
119 % \]]
120 % \end{grammar}
121 % The \<prefix> is what you put on the front of your labels; the \<string> is
122 % the string to be typeset by |\xref|.
123 %
124 % A number of useful prefixes are already defined, following my usual
125 % preferences; they're shown in \xref{tab:defs}.
126 % \begin{table}
127 % \def\i#1#2{\texttt{#1}&\texttt{#2}\\}
128 % \begin{tabular}[C]{ll} \hlx*{hv}
129 % \textbf{Prefix} & \textbf{Text} \\ \hlx{vhv}
130 % \csname xref@defs\endcsname
131 % \hlx*{vh}\end{tabular}
132 % \caption{Predefined reference prefixes}
133 % \label{tab:defs}
134 % \end{table}
135 %
136 % \implementation
137 % \section{Implementation}
138 %
139 % \begin{macrocode}
140 %<*package>
141 % \end{macrocode}
142 %
143 % The following quark will be useful.
144 % \begin{macrocode}
145 \def\q@delim{\q@delim}
146 % \end{macrocode}
147 %
148 % \begin{macro}{\defxref}
149 % Defining prefixes is easy. We store the text for each prefix in a macro
150 % called \syntax{"\\xref$"<prefix>}. The only catch is that, for the
151 % purposes of generating \xref{tab:defs}, we maintain a list of the prefixes
152 % which have been defined so far, but this is fairly easy.
153 % \begin{macrocode}
154 \def\defxref#1#2{%
155 \toks@\expandafter{\xref@defs\i{#1}{#2}}\xdef\xref@defs{\the\toks@}%
156 \expandafter\def\csname xref$#1\endcsname{#2}%
157 }
158 % \end{macrocode}
159 % The list is obviously empty initially.
160 % \begin{macrocode}
161 \gdef\xref@defs{}
162 % \end{macrocode}
163 % \end{macro}
164 %
165 % \begin{macro}{\formatxref}
166 % Output a cross-reference in the right way.
167 % \begin{macrocode}
168 \def\formatxref#1#2#3{%
169 \ifx\hyperref\@@undefined #1{#2}~\ref{#3}%
170 \else \hyperref[#3]{#1{#2}~\ref*{#3}}\fi%
171 }
172 % \end{macrocode}
173 % \end{macro}
174 %
175 % \begin{macro}{\xref}
176 % We're meant to typeset a reference. The first job is to see whether
177 % there's an optional argument. If so, grab it; otherwise |\relax| will do.
178 % \begin{macrocode}
179 \def\xref{\@ifnextchar[\xref@{\xref@[\relax]}}
180 \def\xref@[#1]#2{\xref@@{#1}#2:\q@delim:\q@delim:\q@delim\q@delim}
181 % \end{macrocode}
182 % Right; now we abuse \TeX's argument parser to pick apart the reference
183 % label, which ought to have the form \syntax{<prefix>":"<suffix>}.
184 % \begin{macrocode}
185 \def\xref@@#1#2:#3:\q@delim#4\q@delim\q@delim{%
186 % \end{macrocode}
187 % So, |#1| is the optional command, or |\relax|. |#2| should be the
188 % prefix, and |#3| the suffix. However, if the string doesn't have any
189 % colons in, then |#3| will be |\q@delim|. This is easy to check for using
190 % |\ifx|.
191 % \begin{macrocode}
192 \def\@tempa{#2}\def\@tempb{#3}%
193 \ifx\@tempb\q@delim%
194 \PackageError{xref}{Bad ref syntax}%
195 \else%
196 \expandafter\let\expandafter\@tempa\csname xref$#2\endcsname%
197 \ifx\@tempa\relax%
198 \PackageError{xref}{Unknown ref kind `#2'}%
199 \else%
200 \toks@\expandafter{\@tempa}%
201 \edef\next@##1{##1{\the\toks@}}%
202 \next@{\formatxref{#1}}{#2:#3}%
203 \fi%
204 \fi%
205 }
206 % \end{macrocode}
207 % \end{macro}
208 %
209 % \begin{macro}{\toupper}
210 % That's the difficult stuff done. Uppercasing is a matter of picking out
211 % the first letter and passing it to \TeX's |\uppercase| primitive.
212 % \begin{macrocode}
213 \def\toupper#1{\toupper@#1}
214 \def\toupper@#1{\uppercase{#1}}
215 % \end{macrocode}
216 % \end{macro}
217 %
218 % \begin{macro}{\Xref}
219 % As promised, |\Xref| is very easy.
220 % \begin{macrocode}
221 \def\Xref{\xref[\toupper]}
222 % \end{macrocode}
223 % \end{macro}
224 %
225 % Now all that remains is to initialize the table of prefix strings.
226 % \begin{macrocode}
227 \defxref{ch}{chapter}
228 \defxref{app}{appendix}
229 \defxref{sec}{section}
230 \defxref{def}{definition}
231 \defxref{th}{theorem}
232 \defxref{lem}{lemma}
233 \defxref{prop}{proposition}
234 \defxref{cor}{corollary}
235 \defxref{fig}{figure}
236 \defxref{tab}{table}
237 \defxref{eq}{equation}
238 \defxref{i}{item}
239 \defxref{ex}{exercise}
240 % \end{macrocode}
241 % And we're done!
242 % \begin{macrocode}
243 %</package>
244 % \end{macrocode}
245 % \nopagebreak
246 %
247 % \hfill Mark Wooding, \today
248 %
249 % \Finale
250 %
251 \endinput