%% %% \iffalse filename: pages.dtx \fi %% %<*doc> \input driver \thisis{pages}{Page Numbers and Other Pin Cites} The often extraordinary length of legal documents, articles, and treatises necessitates citing specific portions of them in order to inform readers of the relevant parts of a reference that support the writer's claims. Yet the diversity of forms of legal references makes pin-citing the relevant parts a challenge. Some documents are paginated, others divided into sections, others marked with star-pagination reflecting archaic publications. And some forms of citation require identifying multiple pin cites for different published versions of a work---cases reported in several reporters, for example, or for session laws both the statutory section number and the page number of the \emph{Statutes at Large}. It is not desirable to put the burden on the user to manage formatting of page numbers and subdivisions. A legal citation system must understand users' page number inputs to compose tables of authorities, determine whether to omit page numbers in \emph{id.}\ citations, and cite subsections of statutes, for example. Furthermore, there are many rules of pin-cite formatting that are inconvenient and burdensome for writers to remember and better suited for automatic processing---abbreviation of words like ``paragraph'' and italicization of ``(\emph{l}),'' for example. As a result, a program such as this package must parse and interpret pin cites, and it thus must provide writers with a syntax for entering them. This section describes the data model for pin cites, the input syntax that this system accepts for them, and the rules for formatting. \subsection{Overall Structure} Because of the diversity of types of legal document numbering systems, the data model and syntax for pin cites are fairly complex. For testing purposes, a writer may access the pin cite formatting algorithm using the command \DescribeMacro\HiParsePin \cmd\HiParsePin\marg{number}. % %<*package> % \begin{macrocode} \def\HiParsePin#1{\hi@fmt@pageno{#1}} % \end{macrocode} % % % \MacroSpec\hi@fmt@page@macro \marg{command}\\ % A shortcut to call |\hi@fmt@pageno| when the page number is in a % command sequence. % % \begin{macrocode} \def\HiParsePin#1{\hi@fmt@pageno{#1}} \def\hi@fmt@page@macro#1{\expandafter\hi@fmt@pageno\expandafter{#1}}% % \end{macrocode} % % %<*doc> \paragraph{Segments}\label{s:pages-segments} A pin cite is made up of several ``segments'': a default segment and one or more named segments. The named segments are used for parallel citations; their use is defined by specific reference types. For example, session laws use the default segment to hold the subsection number of the statute being cited, and then require a segment named |stat| that identifies the page of the \emph{Statutes at Large} on which the subsection appears. The input syntax and an example are as follows: \begin{grammar} \meta{pin-cite} := \meta{segment} \\ \qquad( \littext{ ::} \meta{segment-name} \littext{: } \meta{segment} )* \\ \Example \texttt{S 12 ::stat: 783} \end{grammar} The example would cite \textsection~12 of a statute, at page 783. % %<*package> % % The overall objective of the pin cite formatting macros is to produce % formatted page number text by pure expansion. That way, pin cites can be % formatted inside |\edef| commands. Because these formatting macros date back % to the very beginning of this citation program, before I had developed good % \TeX\ programming conventions and habits, these macros do not follow my usual % practice of storing the formatted result and passing it back to a callback % handler. Instead, they just drop the formatted text into the document % directly. % % \DescribeMacro\hi@fmt@pageno % \cmd\hi@fmt@pageno\marg{page} is the main entrypoint into the pin cite % formatting algorithm. It extracts the default segment to be processed. % % \begin{macrocode} \def\hi@fmt@pageno#1{% \find@in{ ::}{#1}{% \@tworun\hi@fpg@onesegment\@gobble }{\hi@fpg@onesegment{#1}}% } % \end{macrocode} % % \MacroSpec\hi@fpg@segment % \marg{page}\marg{segment-name}\marg{callback}\marg{else}\\ % Selects a named segment. If there is a named segment, then % \meta{callback} is run with the segment as the argument. If there is no such % named segment, \meta{else} is run. % % \begin{macrocode} \def\hi@fpg@segment#1#2#3#4{% \find@in{ ::#2: }{#1}{\@tworun\@gobble{\hi@fpg@segment@{#3}}}{#4}% } % \end{macrocode} % % \#1 is the callback, \#2 the segment plus any trailing material, if any. % \begin{macrocode} \def\hi@fpg@segment@#1#2{% \find@in{ ::}{#2}{\@rungobble{#1}}{#1{#2}}% } % \end{macrocode} % % \MacroSpec\hi@fpg@orig@page@segment % \marg{segment-name}\marg{callback}\marg{else}\\ % Runs |\hi@fpg@segment| on the expanded value of |\@this@orig@page|. If it is % |\relax|, then runs \meta{else}. % % \begin{macrocode} \def\hi@fpg@orig@page@segment#1#2#3{% \@test\ifx\@this@orig@page\relax\fi{% #3% }{% \@expandarg\hi@fpg@segment\@this@orig@page{#1}{#2}{#3}% }% } % \end{macrocode} % % % \DescribeMacro\hi@fpg@defsegment % A reference type macro must call |\hi@fpg@defsegment| to declare that it will % use a certain named segment. % % \begin{macrocode} \def\hi@fpg@defsegment#1{% \make@find@in{ ::#1: }% } \make@find@in{ ::} % \end{macrocode} % % %<*doc> \paragraph{Lists of Items} A pin cite segment can consist either of a comma-separated list of items, or two comma-separated lists of items delimited by the word |to| (surrounded by spaces). The latter form is used for pin cites to ranges where each side of the range contains multiple items. \begin{grammar} \meta{segment} := \meta{list} [ \littext{ to } \meta{list} ] \\ \meta{list} := \meta{item} ( \littext{, } \meta{item} )* \\ \Example \texttt{column 5, line 8 to column 6, line 5} \end{grammar} Here, the word ``to'' must be used to separate the ranges to avoid ambiguity. % %<*package> % % \begin{macrocode} \make@find@in{ to } \def\hi@fpg@onesegment#1{% \find@in{ to }{#1}{\hi@fpg@to}{% \ifstrempty{#1}{}{% \hi@fpg@split#1,\@stop{\hi@fpg@pagenumber{}{}}% \hi@fpg@done }% }% } \def\hi@fpg@to#1#2{% \hi@fmt@pageno{#1} to \hi@fmt@pageno{#2}% } % \end{macrocode} % % Reads each pin cite item and runs |\hi@fpg@one| on each. Calls % |\hi@fpg@emitstate| at the end of the list. % % The initial usage of this macro should look like: % \begin{grammar} % |\hi@fpg@split| \meta{list} \littext{,}|\@stop| \marg{state} % |\hi@fpg@done| % \end{grammar} % where \meta{list} is the comma-separated list of items, and \meta{state} is % described below. |\hi@fpg@done| is used to manage the trailing comma, as % described below. % % \begin{macrocode} \def\hi@fpg@split#1,#2\@stop#3{% % % In both of these branches of the conditional, we take advantage of the % fact that both |\hi@fpg@emitstate| and |\hi@fpg@split| receive the % state as the last argument, and \hi@fpg@one runs its callback with the % state as the last argument. % \ifblank{#1}{% % Ignore blank entries \ifblank{#2}{\hi@fpg@emitstate}{\hi@fpg@split#2\@stop}{#3}% }{% \hi@fpg@one#1\@stop{#3}{% \ifblank{#2}{\hi@fpg@emitstate}{\hi@fpg@split#2\@stop}% }% }% } % \end{macrocode} % % %<*doc> \subsection{Pages and Divisions} \label{s:pages-forms} Many forms of pin cite items are permitted, and how an item is interpreted may depend on what item preceded it. In general, there are two types of items in pin cites: page numbers and named divisions (like ``table 5'' or ``\textsection\textsection~15-20''). The number type is important for formatting: Ranges in page numbers are truncated, and named divisions need to be singular or plural and can accept subdivisions. Generally, page numbers are written as bare numbers, and named divisions are written as the division name, a space, and one or more division numbers. A division number can follow a page number with or without a comma, or with an ampersand (indicating a citation to the page and the division). After a named division is used, any subsequent bare numbers will be interpreted as part of the division. To return to citing page numbers, insert the word |at| (e.g., \texttt{section 5, at 143}). This can be useful for helping readers find the location of text divisions. Thus: \begin{demo} \begin{tabular}{lll} \textbf{Input} & \textbf{Output} & \textbf{Explanation} \\ \hline |157, 160-163| & 157, 150--63 & Page numbers \\ |line 403, 450-463| & ll.~403, 450--463 & All are line numbers \\ |line 403, at 450-463| & l.~403, at 450--63 & 450--463 are pages \\ |157-158 table 1-2| & 157--58 tbls.1--2 & Citing just tables \\ |157-158 & table 1-2| & 157--58 \& tbls.1--2 & Citing pages and tables \\ \end{tabular} \end{demo} As seen in the above examples, the number part of either a page number or a named division can be a hyphenated range, and the hyphen is converted to a proper dash. To include an actual hyphen, use |\-| instead. % %<*package> % % There are two problems to be solved when parsing pin cites: (1) figuring out % whether a bare number is a page number or a division number, and (2) % determining whether to emit a singular or plural version of a division name. % To solve these problems, it is necessary to maintain some internal state wile % formatting a pin cite. The \meta{state} contains the following as grouped % elements % (other than the last element): % \begin{enumerate} % \item A macro to be run if a bare number is found, to format the number. The % macro receives two arguments: the number text, and the loop continuation % callback. % \item Reserved text to be emitted when a new division name is encountered. % Typically this is used to store the singular form of a division name (which % cannot be emitted immediately since a subsequent bare number would require a % plural form). % \item Reserved text to be emitted if a bare number is found that proves a % previously encountered division name to require a plural. % \item Trailing matter to be emitted when any of the reserved text is emitted. % \end{enumerate} % The basic idea is that if a bare number is encountered, items 3 and 4 from the % state are emitted (since the bare number proves that any prior division % should be pluralized) and macro 1 should be run. If a new division name is % encountered, however, items 2 and 4 are emitted before processing the division % name and number. % % This macro is used whenever the non-plural reserved text should be emitted % from the state. % \begin{macrocode} \def\hi@fpg@emitstate#1{% \@secondofthree#1% } % \end{macrocode} % % Processes a single pin cite item. \#1 and \#2 are the pin cite item number, % split into two arguments both to consume any leading spaces and to identify % the input type: a bare number if \#1 is a digit and a named division if \#2 is % a letter. (Special handling is given to punctuation, as described below.) \#3 % is the internal state that is received. \#4 is a callback that must be run at % the end of processing, to continue the comma splitting function. % % \begin{macrocode} \def\hi@fpg@one#1#2\@stop#3#4{% \find@start{at }{#1#2}{\hi@fpg@at}{% \@ifletter{#1}{\hi@fpg@letter{#1#2}}{% \@ifdigit{#1}{\hi@fpg@number{#1#2}}{% \hi@fpg@symbol{#1}{#2}% }% }% }{#3}{#4}% Arguments to all macros } \make@find@start{at } \make@find@in{ } % \end{macrocode} % % If the pin cite item starts with ``at,'' then this is run to flush the state % and display the number as a page number. \#1 is the page number, \#2 the % state, and \#3 the callback. % \begin{macrocode} \def\hi@fpg@at#1#2#3{% \hi@fpg@emitstate{#2}% at % space \hi@fpg@pagenumber{#1}{#3}% } % \end{macrocode} % % This is run upon reading a bare number in a citation item. It expands the % state, emits the plural form, and runs the macro in the state to format the % number. \#1 is the number, \#2 is the state, and \#3 is the callback. % % \begin{macrocode} \def\hi@fpg@number#1#2#3{% \hi@fpg@number@#2\@stop{#1}{#3}% }% % \end{macrocode} % % \#1 and \#2 are read from the state contents, so \#1 is the macro to run and % \#2 are the two state elements and any trailing text. \#3 is the text of the % page number, and \#4 the callback. % % \begin{macrocode} \def\hi@fpg@number@#1#2\@stop#3#4{% \@secondoftwo#2% #1{#3}{#4}% } % \end{macrocode} % % This is called when the first character of a pin cite item is a letter (or % otherwise indicates a division name), such as ``tbl.\ 1''. Generally it % emits reserved text in the state and then processes a division. However, if % the ``division'' name is the word |at|, then the number is treated as a page % number rather than a named division. \#1 is the division name and number, \#2 % the internal state, and \#3 the callback to continue processing the page % number. % % \begin{macrocode} \def\hi@fpg@letter#1#2#3{% \hi@fpg@emitstate{#2}% \hi@fpg@division{#1}{\hi@fpg@nextdivision}{#3}% } % \end{macrocode} % % %<*doc> Further fine-tuning of the pin cite parsing algorithm can be done by placing special codes or punctuation at the beginning of pin cite items: \begin{demo} \begin{tabular}{llp{0.6\textwidth}} \textbf{Input} & \textbf{Type} & \textbf{Explanation} \\ \hline \texttt{S 3} & Division & Produces \textsection~3 \\ \texttt{P 3} & Division & Produces \textparagraph~3 \\ \texttt{-34/a} & Division & Interpreted as a division with no name: 34(a) \\ \texttt{!A5} & Number & Uses text after the exclamation point as a bare number, and does not format at all. Useful for newspaper articles \\ \texttt{*16} & Number & Treats whatever follows the star as a page number. Useful for star-paginated works \\ \texttt{?} & Missing & Issues a warning to remind the writer to fill in a pin cite \\ \texttt{/a3} & Division & Interpreted as a subdivision: (a)(3). Must follow a named division \\ \end{tabular} \end{demo} % %<*package> % % Handles punctuation at the start of a pin cite item. \#1 is the punctuation, % \#2 the rest of the page number, \#3 the state, \#4 the callback. % % \begin{macrocode} \def\hi@fpg@symbol#1#2#3#4{% \find@eq{/}{#1}{\hi@fpg@subdivision{#2}{#3}{#4}}{% \find@try\find@eq{% {-}{\hi@fpg@letter{ #2}{#3}{#4}}% {!}{\hi@fpg@number{\hi@pgnum@raw#2}{#3}{#4}}% {*}{\hi@fpg@emitstate{#3}*\hi@fpg@pagenumber{#2}{#4}}% {?}{% \hi@pgnum@raw % so atorsect works \protect\hi@fpg@missingpg{#1#2}\hi@fpg@plain{#1#2}{#3}{#4}% }% }{#1}{% % None of the tests succeeded \protect\hi@fpg@unexpectedchar{#1#2}% \hi@fpg@plain{#1#2}{#3}{#4}% }% }% } \make@find@eq{-} \make@find@eq{/} \make@find@eq{*} \make@find@eq{!} \make@find@eq{?} % \end{macrocode} % % This is just a marker used to identify page numbers that don't look like page % numbers. It is used by |\hi@atorsect| and similar commands. % % \begin{macrocode} \def\hi@pgnum@raw{\noexpand\hi@pgnum@raw} % \end{macrocode} % % These produce warnings when parsing pin cite items. % \begin{macrocode} \def\hi@fpg@unexpectedchar#1{% \PackageWarning\hi@pkgname{% Page number `#1' starts with an unexpected character.\MessageBreak If it is meant to be a page number, then precede it\MessageBreak with the `!' symbol. It appeared% }% } \def\hi@fpg@missingpg#1{% \@expandarg\hi@missing@page{\@this@case}% } % \end{macrocode} % % % %<*doc> \subsection{Subdivisions} Named divisions of text are sometimes organized into top-level divisions and subdivisions. For example, ``\textsection~5(a)'' refers to subsection (a) of the fifth section of a reference. Distinguishing between top-level divisions and subdivisions is necessary because it affects pluralization of the division name (``\textsection\textsection~5--6,'' but ``\textsection~5(a)--(b)''). Additionally, writing all the parentheses in conventional subdivision numbers is somewhat cumbersome. For input to this package, subdivisions are separated from top-level divisions with a slash. Bare subdivisions (without a top-level subdivision) may be used as pin cite items to cite multiple non-contiguous subdivisions, and ranges may include bare subdivisions. Single characters in a subdivision will be automatically parenthesized. The following are examples: \begin{demo} \begin{tabular}{ll} \textbf{Input} & \textbf{Output} \\ \hline |S 5/a| & \textsection~5(a) \\ |S 5/a-6/b| & \textsection\textsection~5(a)--6(b) \\ |S 5/a-/b| & \textsection~5(a)--(b) \\ |S 5/a, /c| & \textsection~5(a), (c) \\ |S 5/a1A| & \textsection~5(a)(1)(A) \\ |S 5/a1A(iii)| & \textsection~5(a)(1)(A)(iii) \\ |S 5/a1A{note}| & \textsection~5(a)(1)(A)note \\ \end{tabular} \end{demo} % %<*package> % % \subsection{Formatting} % % We begin with some utility macros. |\hi@fpg@done| marks the end of the pin % cite formatting. |\hi@fpg@comma| is used to insert a comma into a pin cite; % the comma is suppressed if it detects |\hi@fpg@done| is upcoming. % % \begin{macrocode} \def\hi@fpg@done{\iffalse\hi@fpg@done\fi} \def\hi@fpg@comma#1{\ifx\hi@fpg@done#1\else, \fi#1} % \end{macrocode} % % Outputs a single number to the current text. This performs replacements for % special sequences in page numbers, such as \- (which becomes -). % % \begin{macrocode} \def\hi@fpg@singlenum#1{% \find@in@cs{/-}{#1}{\hi@fpg@singlenum@dash}{#1}% } \def\hi@fpg@singlenum@dash#1#2{% #1-\hi@fpg@singlenum{#2}% } % \end{macrocode} % % Emits unformatted text as part of the pin cite, handling state accordingly (by % emitting any reserved text and anticipating a page number as the next input). % \#1 is the page number, \#2 is the state, \#3 the callback. % % \begin{macrocode} \def\hi@fpg@plain#1#2#3{% \hi@fpg@emitstate{#2}% #1% Output the page number as specified #3{\hi@fpg@pagenumber{}{}\hi@fpg@comma}% } % \end{macrocode} % % \subsubsection{Page Numbers} % % Formats an ordinary page number. This performs three searches to determine the % type of ordinary page number: % \begin{itemize} % \item Ampersand (123 \& n.456) % \item Space (123 note 456) % \item Otherwise the whole text is a single page number % \end{itemize} % \#1 is the number, and \#2 is the callback. % % \begin{macrocode} \def\hi@fpg@pagenumber#1#2{% \find@in{ & }{#1}{% \hi@fpg@pgno@withdivision{ \& }% }{% \find@in{ }{#1}{% \hi@fpg@pgno@withdivision{ }% }{\hi@fpg@pgno@nosuffix{#1}}% }{#2}% } \make@find@in{ } \make@find@in{ & } % \end{macrocode} % % \paragraph{Parsing Page Suffixes} % If there is an ampersand or space, then we output the page number, output the % ampersand or space, and process the remainder with the expectation that it is % a letter-starting page reference (e.g., 123 n.5). \#1 is the divider % (ampersand or space), \#2 the pre-ampersand page number, \#3 the % post-ampersand division, and \#4 the callback. % % \begin{macrocode} \def\hi@fpg@pgno@withdivision#1#2#3#4{% \chop@space@then@run{#2}\hi@fpg@pgrange #1% \hi@fpg@division{#3}{\hi@fpg@nextdivisionamp}{#4}% } % \end{macrocode} % % No division following the number. Format the page number and execute the % callback, with state updated. % % \begin{macrocode} \def\hi@fpg@pgno@nosuffix#1#2{% \chop@space@then@run{#1}\hi@fpg@pgrange #2{\hi@fpg@pagenumber{}{}\hi@fpg@comma}% } % \end{macrocode} % % % \paragraph{Page Ranges} % These macros deal with the truncation of page numbers from the ends of ranges % and other formatting of page ranges. % % Searches for a range hyphen. If found, formats the first part and then passes % the second part for truncation. Otherwise, formats just the single number. % \begin{macrocode} \def\hi@fpg@pgrange#1{% \find@in{-}{#1}\hi@fpg@pgrange@withdash{\hi@fpg@singlenum{#1}}% } \make@find@in{-} \def\hi@fpg@pgrange@withdash#1#2{% \hi@fpg@singlenum{#1}% \find@in@cs{/-}{#1#2}{ to \@gobbletwo}{--}% \hi@fpg@toend#1\@mark\@mark#2\@mark\@mark\@stop } % \end{macrocode} % % Computes the last number of a page range: It turns 12345-12346 into 46 and % 12345-12456 into 456. The following are the arguments to the macro: % \begin{itemize} % \item \#1\#2 is the remaining part of the first number. % \item \#3 is the part of the second number that is different from the first % number. % \item \#4\#5 is the remaining part of the second number. % \item \#6 is the part of the second number that is the same as the first % number. % \item \#7 is the part of the second number that is the same as the first % number, except we'll keep it in case the similar part's too short. % \end{itemize} % % The rules are: % \begin{enumerate} % \item If we reach the end of the first number (\#2 is empty), % \begin{enumerate} % \item and we reach the end of the second number at the same time (\#5 is % empty), then we just print \#3\#4, the differing part of the second % number. % \item and we haven't reached the end of the second number, then they're % different lengths, and we print the whole of the second number % (i.e., \#6\#3\#4\#5). % \end{enumerate} % \item Otherwise, if we reach the end of the second number, then they're also % different lengths and we print all of the second number. % \item Otherwise we haven't reached any of the ends of numbers. % \begin{enumerate} % \item If there is anything in the dissimilar part of the second number, % then skip the next sentence. % \item Otherwise, if the first digit of the first number (\#1) is equal to % the first digit of the second number (\#4), then push \#4 onto \#6. % \item Otherwise, push \#4 onto \#3. % \item Now discard \#1, and try again. % \end{enumerate} % \end{enumerate} % % \begin{macrocode} \def\hi@fpg@toend#1#2\@mark#3\@mark#4#5\@mark#6\@mark#7\@stop{% \ifstrempty{#2}{% If we're done traversing the first number \ifstrempty{#5}{% If we're done traversing the second number \ifstrempty{#3}{#7}{}% If #3 is empty, throw in #7 \hi@fpg@singlenum{#3#4}% }{\hi@fpg@singlenum{#6#7#3#4#5}}% Print the numbers in full }{% We're not done traversing the first number % If we're done traversing the second number, print them in full \ifstrempty{#5}{\hi@fpg@singlenum{#6#7#3#4#5}}{% % We're not done with either number \ifstrempty{#3}{% If there's no dissimilar stuff \ifx#1#4% If the first digits are the same \expandafter\@firstoftwo\else\expandafter\@secondoftwo\fi {\hi@fpg@toend#2\@mark\@mark#5\@mark#6#7\@mark#4\@stop}% % First two digits are different {\hi@fpg@toend#2\@mark#4\@mark#5\@mark#6#7\@mark\@stop}% }{% There is some dissimilar stuff \hi@fpg@toend#2\@mark#3#4\@mark#5\@mark#6#7\@mark\@stop }% }% }% } % \end{macrocode} % % \subsection{Divisions} % % Draws a numbered division with names. If no division number is given, just % emits the division name as abbreviated, and assumes that any subsequent bare % numbers are page numbers. If a division number is given, then we have to do % special comma handling since the next-state macro might prefer placing % ampersands. As a result, commas are not included in the trailing state. % % \#1 is the division name and number, % \#2 is the macro for the next state, and \#3 is the callback. % % \begin{macrocode} \def\hi@fpg@division#1#2#3{% \find@in{ }{#1}{% \hi@fpg@division@numbered{#2}{#3}% }{% \hi@fpg@divname{#1}{}% #3{\hi@fpg@pagenumber{}{}\hi@fpg@comma}% }% } % \begin{macrocode} % % \#1 is the next state macro, \#2 the callback, \#3 the division name, \#4 the % division number. % % \begin{macrocode} \def\hi@fpg@division@numbered#1#2#3#4{% \hi@fpg@ifrange{#4}{% % % For a range, output the plural division name (it must be plural) and % the division number, and proceed to the next chunk. No comma is put % into the plural form state because we don't know if it should be an % ampersand. % \hi@fpg@divname{#3}\hi@fpg@plural \hi@fpg@divno{#4}% #2{#1{\hi@fpg@comma}{}}% }{% % If it's not a range, then we don't know if it will be singular or % plural. Update the state to include the singular and plural values and % then proceed to the next chunk. #2{#1{% \hi@fpg@divname{#3}\hi@fpg@singular \hi@fpg@divno{#4}\hi@fpg@comma }{% \hi@fpg@divname{#3}\hi@fpg@plural \hi@fpg@divno{#4}% }% }% }% } \make@find@in{-} \make@find@in{-/} % \end{macrocode} % % Determines if the given section number specification (\#1) is a range. It is a % range if (1) it includes a dash, and (2) the matter immediately trailing the % dash is not a slash. % % \begin{macrocode} \def\hi@fpg@ifrange#1#2#3{% \find@in{-/}{#1}{\@firstofthree{#3}}{% \find@in{-}{#1}{\@firstofthree{#2}}{#3}% }% } % \end{macrocode} % % Formats a division name. \#1 is the name, and \#2 a macro indicating whether % to choose singular or plural (or empty to choose the default form). % \begin{macrocode} \def\hi@fpg@divname#1#2{% \@ifundefined{hi@div@#1}{% \ifstrempty{#1}{}{% \protect\hi@fpg@warngraph{#1}% #1\space }% }{% \ifstrempty{#2}{% \@expand\chop@space{\csname hi@div@#1\endcsname}{iii}% }{% \@expand{\hi@fpg@handlespc#2}{\csname hi@div@#1\endcsname}{ii}% }% }% } \def\hi@fpg@handlespc#1#2{% \@expand\hi@fpg@handlespc@{#1{#2}}{ii}% } \def\hi@fpg@handlespc@#1{% \find@end{ }{#1}{\@unbrace}{#1\@gobble}{~}% } \def\hi@fpg@plural#1{\@thirdofthree#1} \def\hi@fpg@singular#1{\@secondofthree#1} \def\hi@fpg@warngraph#1{% \PackageWarning\hi@pkgname{% Word `#1' is not a defined division name.\MessageBreak Consider placing an exclamation mark before the\MessageBreak page number to avoid this message.\MessageBreak It appeared}% } % \end{macrocode} % % Processes a subsequent bare number after a named division. Note that no comma % was drawn from the previous state, so we need to add one and also not include % one in the plural-form element of the state. \#1 is the number to be % formatted, and \#2 the callback. % % \begin{macrocode} \def\hi@fpg@nextdivision#1#2{% , \hi@fpg@divno{#1}% #2{\hi@fpg@nextdivision{\hi@fpg@comma}{}}% } % \end{macrocode} % % Processes a subsequent bare number after a named division, where an ampersand % is desired before the last element. Rather than emitting the division, we save % the text to be emitted to the state. \#1 is the number to be formatted, and % \#2 the callback. % % \begin{macrocode} \def\hi@fpg@nextdivisionamp#1#2{% #2{\hi@fpg@nextdivisionamp{% \space\&\space \hi@fpg@divno{#1}\hi@fpg@comma }{% , \hi@fpg@divno{#1}% }% }% } % \end{macrocode} % % Formats a division number. First, determine if there's a dash. If so, then % split it and format as if two separate division numbers, separated by an % en-dash or the word "to" as appropriate. Otherwise, format as a single % subdivision number. % \begin{macrocode} \def\hi@fpg@divno#1{% \find@in{-}{#1}{\hi@fpg@divno@dash}{\hi@fpg@divno@single{#1}}% } \make@find@in{-} \def\hi@fpg@divno@dash#1#2{% \hi@fpg@divno@single{#1}% \find@in@cs{/-}{#1#2}{ to \@gobbletwo}{--}% \hi@fpg@divno@single{#2}% } \make@find@in@cs{/-}{\-} % \end{macrocode} % % Formats a single (non-range) subdivision number. Determine if there is a % slash. If so, then output the pre-slash content raw, plus the parenthesized % post-slash content. Otherwise just output the content raw. % % \begin{macrocode} \def\hi@fpg@divno@single#1{% \find@in{/}{#1}{% \@tworun\hi@fpg@singlenum\hi@parenize }{\hi@fpg@singlenum{#1}}% } % \end{macrocode} % % % \subsubsection{Subdivisions} % % Formats for a bare subdivision. It is assumed that the full division name was % previously cited. The problem is that citation of a subdivision alone does not % indicate to us whether the plural or singular form of the full division name % is needed. Thus, rather than actually producing any output, this macro just % augments the state to add the subdivision to both the plural and singular % forms. % % \#1 is the subdivision (without the slash); \#2 is the state; \#3 is the % callback. % % \begin{macrocode} \def\hi@fpg@subdivision#1#2#3{% \hi@fpg@subdivision@alterstate{#1}{#3}#2\@stop } % \end{macrocode} % \#1 is the subdivision, \#2 is the callback, \#3--\#5 the state % elements, and \#6 any trailing material from the state. % \begin{macrocode} \def\hi@fpg@subdivision@alterstate#1#2#3#4#5#6\@stop{% #2{% {#3}% {#4\hi@fpg@subdivision@range{#1}\hi@fpg@comma}% {#5\hi@fpg@comma\hi@fpg@subdivision@range{#1}}% #6% }% } % \end{macrocode} % % Given a bare subdivision number, determines if it is a range. If so, separates % the range and parenthesizes each part separately. If not, parenthesizes the % whole number. Note that for a bare subdivision range, it is assumed that both % parts are subdivision numbers, not new divisions. As a result, the pin cite % |S 15/2, /3-4| is the same as |S 15/2, /3-/4|. % % \begin{macrocode} \def\hi@fpg@subdivision@range#1{% \find@try\find@in{% {-/}{\hi@fpg@parenizetwo}% {-}{\hi@fpg@parenizetwo}% }{#1}{\hi@parenize{#1}}% } \make@find@in{-} \make@find@in{-/} \def\hi@fpg@parenizetwo#1#2{% \hi@parenize{#1}--\hi@parenize{#2}% } % \end{macrocode} % % Traverses a string and puts parentheses around its elements. So % A12e(i)n becomes (A)(12)(e)(i)(n). % \begin{macrocode} \def\hi@parenize#1{% \ifstrempty{#1}{}{% \hi@psize#1\@stop s% }% } % \end{macrocode} % % Processes parenthesization for each character of a string. \#1 is the % character being processed, \#2 is the rest of the string, and \#3 is a state % variable of ``s'', ``o'', or ``n'' indicating whether this is the start, % outside a parenthesis group, or inside a parenthesis group (i.e. inside a % number). % \begin{macrocode} \def\hi@psize#1#2\@stop#3{% \@ifonechar{#1}{% \@testcase \ifx#1(\fi {% ) \hi@psize@close#3\hi@psize@paren#2\@stop }% \ifx#1[\fi {% ] \hi@psize@close#3\hi@psize@bracket#2\@stop }% \default{% \@ifletter{#1}{% \hi@psize@close#3(\hi@psize@ltr{#1})% \ifstrempty{#2}{}{\hi@psize#2\@stop o}% }{% \hi@psize@noopen#3#1% \ifstrempty{#2}{)}{\hi@psize#2\@stop n}% }% }% }{% \hi@psize@close#3#1\ifstrempty{#2}{}{\hi@psize#2\@stop o}% }% } % \end{macrocode} % % When inside an explicit parenthesis group, skips to the closing parenthesis % and renders the text. % \begin{macrocode} \def\hi@psize@paren#1)#2\@stop{(#1)\ifstrempty{#2}{}{\hi@psize#2\@stop o}} \def\hi@psize@bracket#1]#2\@stop{[#1]\ifstrempty{#2}{}{\hi@psize#2\@stop o}} % \end{macrocode} % % Closes the current group if inside one (i.e., the state variable \#1 is % ``n''). % % Also adds a penalty allowing a break if not at the start (i.e., state variable % is not ``s''). This works here because |\hi@psize@close| is used immediately % before opening any parenthesis group other than a number group. % \begin{macrocode} \mathchardef\hi@psize@penaltysize=9999 \def\hi@psize@penalty{\penalty\hi@psize@penaltysize} \def\hi@psize@close#1{\ifx#1n)\fi\ifx#1s\else\hi@psize@penalty\fi} % \end{macrocode} % % Opens a new parenthesis group unless already inside one (state variable is % ``n''). Also add a penalty allowing a break if not at the start. % \begin{macrocode} \def\hi@psize@noopen#1{\ifx#1n\else\ifx#1s\else\hi@psize@penalty\fi(\fi} % \end{macrocode} % % Italicizes the letter "l". % \begin{macrocode} \def\hi@psize@ltr#1{\ifx#1l\hi@fn@ell{l}\else#1\fi} % \end{macrocode} % % % % \subsubsection{Abbreviations} % % Set up table of division names. % % A macro is defined for all forms of each abbreviation. Each macro has three % parts: a selector, the singular form, and the plural form. If the macro is % simply executed, the selector will choose the singular or plural form based on % the macro that was called. However, the specific forms may be acquired using % |\hi@fpg@singular| or |\hi@fpg@plural|. % % \begin{macrocode} \def\hi@abbrev#1#2#3#4{% \@namedef{hi@div@#1}{\@firstoftwo{#2}{#4}}% \@namedef{hi@div@#3}{\@secondoftwo{#2}{#4}}% \csletcs{hi@div@\chop@space{#4}}{hi@div@#3}% \csletcs{hi@div@\chop@space{#2}}{hi@div@#1}% } \input hi-divisions % % Special definitions for S and P % \def\reserved@a#1#2{% \@namedef{hi@div@#1}{\@firstoftwo{#2 }{#2#2 }}% \@namedef{hi@div@#1#1}{\@secondoftwo{#2 }{#2#2 }}% } \reserved@a S\textsection \reserved@a P\textparagraph % \end{macrocode} % %<*doc> \subsection{Pin Cite Subdivision Joining} \label{s:pages-join} For \rtype{alias} and some statute citations, it is possible to give an overall division or page number for the reference and then refer to a specific part of it. For example, one might define the statute 35 U.S.C. \textsection~112 as a reference |sec-112|, and then wish to refer to subsection (b) of that statute. To do so, one may write: \begin{demo} |\sentence{sec-112 at /b}|\\ Equivalent to: |\sentence{sec-112 at S 112/b}|\\ \Produces 35 U.S.C. \textsection~112(b) \end{demo} In other words, the pin cite given as part of the citation item is joined to the pin cite given in the reference definition. The following rules define how a reference pin cite is joined with a citation item pin cite: \begin{itemize} \item If the citation item pin cite does not start with a slash indicating a subdivision, then the reference pin cite is discarded and only the citation item's is used. \item If the citation item pin cite starts with a slash and the reference pin cite has no slash, then the two are concatenated. \item If the citation item pin cite starts with a slash and the reference pin cite has a slash, then the slash is removed from the citation item pin cite and the two are concatenated. \end{itemize} Thus, the following examples: \begin{demo} \begin{tabular}{lll} \textbf{Reference} & \textbf{Citation Item} & \textbf{Result} \\ \hline |S 112| & |S 102/a| & \textsection~102(a) \\ |S 112| & |/b| & \textsection~112(b) \\ |S 505/j| & |/2A| & \textsection~505(j)(2)(A) \\ |S 505/j| & |/2A-/3| & \textsection~505(j)(2)(A)--(3) \\ \end{tabular} \end{demo} The range joins correctly not because of these rules but because of the ordinary parsing rules for subdivision ranges, given above. Note that the joining algorithm performs no error checking, and will join subdivisions to page numbers even though subdivisions make no sense in that context. Additionally, this feature is only supported by certain reference types that enable it. % %<*package> % \begin{macrocode} \def\hi@pages@join#1#2{% \find@start{/}{#2}{% \find@in{/}{#1}% {\hi@pages@join@bothslash}% {\def\@this@orig@page{#1#2}\@gobble}% }{% \ifstrempty{#2}{\def\@this@orig@page{#1}}{\def\@this@orig@page{#2}}% }% \protected@edef\@this@page{\hi@fmt@page@macro\@this@orig@page}% } \make@find@start{/} \make@find@in{/} \def\hi@pages@join@bothslash#1#2#3{% \def\@this@orig@page{#1/#2#3}% } \def\TestJoinDivisions#1#2{% \begingroup \hi@pages@join{#1}{#2}% \@this@page \endgroup } % \end{macrocode} % %<*doc> \subsection{Formatting Around Pin Cites} Pin cites can affect the text that precedes the pin cite number. In many situations, standard page numbers are often preceded by the word ``at'' whereas named subdivisions are not. The macro \DescribeMacro\hi@atorsect |\hi@atorsect|\marg{pincite} is provided to insert ``at'' depending on the nature of \meta{pincite}, and \DescribeMacro\hi@page@atorsect |\hi@page@atorsect| performs that function on the currently active pin cite in a citation item. % %<*package> % % Write the word ``at'' unless |\@this@page| starts with a paragraph or % section mark (or other section indicator). % \begin{macrocode} \DeclareRobustCommand\hi@page@atorsect{% \expandafter\hi@atorsect@\@this@page.\@stop } \def\hi@atorsect#1{\hi@atorsect@#1.\@stop} \def\hi@atorsect@withpage#1{\hi@atorsect{#1}#1}% \make@find@eq{*} \make@find@eq{?} \def\hi@atorsect@#1#2\@stop{% \@ifdigit{#1}\@iden{% \find@try\find@eq{{*}\@iden{?}\@iden}{#1}{% \@test\ifx\hi@pgnum@raw#1\fi{\@iden}{\@gobble}% }% }{at }% } % \end{macrocode} % %<*doc> For other citation types such as books, the pin cite is separated from text in the citation with just a space. However, there are exceptions: \begin{itemize} \item If the preceding text ends with a digit, then a comma is placed, and ``at'' is placed if the pin cite is a page number as described above. \item If the preceding text is ``R.'' (for ``Record''), then ``at'' is placed regardless of the type of pin cite. \unskip\footnote{For Record cites to named subdivisions (e.g., ``R.~at para.~5''), it is unclear whether ``at'' should be included. It seems preferable to do so to ensure that ``R.'' is not interpreted as ``Rule.''} \end{itemize} Thus, the following examples: \begin{demo} \begin{tabular}{lll} \textbf{Preceding Text} & \textbf{Pin Cite} & \textbf{Output} \\ \hline |Book| & |15| & \textsc{Book} 15 \\ |Treatise| & |S 5| & \textsc{Treatise} \textsection~5 \\ |Annual Report 2015| & |35| & \textsc{Annual Report 2015}, at 35 \\ |Agency Report 2006| & |S 12| & \textsc{Agency Report 2006}, \textsection~12 \\ |R.| & |102| & R. at 102 \\ |R.| & |paragraph 36| & R. at para. 36 \\ \end{tabular} \end{demo} % %<*package> % % This macro is to be used in a citation macro definition, and must occur inside % |\hi@maybepage| so it can be assumed that a page number has been given. \#1 is % a macro to be expanded containing the preceding text to be tested. It depends % on |\hi@page@atorsect| being robust so that it remains unexpanded while the % citation macro is being defined. % \begin{macrocode} \def\hi@page@space#1{% \expandafter\hi@page@space@\expandafter{#1}% } \def\hi@page@space@#1{% \@ifendswithdigit{#1}{, \hi@page@atorsect}{% \find@eq{R.}{#1}{ at }{\space}% }% } \make@find@eq{R.} % % Tests whether the argument ends with a digit. \def\@ifendswithdigit#1{% \find@try\find@end{% 0\@secondofthree 1\@secondofthree 2\@secondofthree 3\@secondofthree 4\@secondofthree 5\@secondofthree 6\@secondofthree 7\@secondofthree 8\@secondofthree 9\@secondofthree }{#1}\@secondoftwo } \make@find@end{0} \make@find@end{1} \make@find@end{2} \make@find@end{3} \make@find@end{4} \make@find@end{5} \make@find@end{6} \make@find@end{7} \make@find@end{8} \make@find@end{9} % \end{macrocode} % % %<*doc> Finally, it is sometimes useful to expand initial |\textsection| and |\textparagraph| symbols to words. This is useful for statute citations. The command \DescribeMacro\hi@expand@symbols |\hi@expand@symbols|\marg{pincite}\marg{callback} will do this. % %<*package> % \begin{macrocode} \DeclareRobustCommand\hi@expand@symbols{\hi@expand@symbols@} \def\hi@expand@symbols@#1#2{% \find@try\find@start@cs{% {SS}{\hi@expand@symbols@@{#2}{sections}{SS}}% {PP}{\hi@expand@symbols@@{#2}{paragraphs}{PP}}% {S}{\hi@expand@symbols@@{#2}{section}{S}}% {P}{\hi@expand@symbols@@{#2}{paragraph}{P}}% }{#1}{#2{#1}}% } \def\hi@expand@symbols@@#1#2#3#4{% #1{#2#4}% } \make@find@start@cs{S}{\textsection} \make@find@start@cs{SS}{\textsection\textsection} \make@find@start@cs{P}{\textparagraph} \make@find@start@cs{PP}{\textparagraph\textparagraph} % \end{macrocode} % The remaining items are lower level macros for conditional citation outputs % based on the content of pin cites. % % \DescribeMacro\hi@maybepage % Shows \meta{text}|\@this@page| only if |\@this@page| is not |\relax|. Also, if % |\@this@page| ends with a dot, sets |\@hi@dottrue|. % % \begin{macrocode} \DeclareRobustCommand\hi@maybepage[1]{% \@test\ifx\@this@page\relax\fi{}{% \ifstrempty{#1}{\expandafter\@capnext}{#1\hi@dot@set{#1}}\@this@page \hi@dot@set@page }% } % \end{macrocode} % % Performs the first argument if |\@this@page| is set, and the second argument % otherwise. % % \begin{macrocode} \DeclareRobustCommand\hi@ifpage{% \ifx\@this@page\relax \expandafter\@secondoftwo \else \expandafter\@firstoftwo\fi } % \end{macrocode} % % Shows either \meta{\#1}|\@this@page| or \meta{\#2}, depending on whether % |\@this@page| is set. The arguments are not automatically capitalized (though % the page number is). % % \begin{macrocode} \DeclareRobustCommand\hi@pageordefault[2]{% \@test\ifx\@this@page\relax\fi{% \ifstrempty{#2}{}{#2\hi@dot@set{#2}}% }{% \ifstrempty{#1}{\expandafter\@capnext}{#1}\@this@page \hi@dot@set@page }% } % \end{macrocode} % % Like |\hi@pageordefault|, but will expand |\@this@page| (only; won't expand % \#2) for section and paragraph, placing a |\@capnext| in front. % % \begin{macrocode} \DeclareRobustCommand\hi@expandedpageordefault[2]{% \@test\ifx\@this@page\relax\fi{% \ifstrempty{#2}{}{\@capnext#2\hi@dot@set{#2}}% }{% \ifstrempty{#1}{% \expandafter\hi@expand@symbols\expandafter{\@this@page}{% \expandafter\@capnext\@iden }% }{% #1\expandafter\hi@expand@symbols\expandafter{\@this@page}\@iden }% \hi@dot@set@page }% } % \end{macrocode} % % %<*test> \section{pages.dtx} \subsection{Formatting} \AssertExpand{\hi@fmt@pageno{15}}{15} \AssertExpand{\hi@fmt@pageno{15,,,}}{15} \AssertExpand{\hi@fmt@pageno{15, 20}}{15, 20} \AssertExpand{\hi@fmt@pageno{15,,, 20}}{15, 20} \AssertExpand{\hi@fmt@pageno{15-20, 25-30}}{15--20, 25--30} \AssertExpand{\hi@fmt@pageno{115-120, 1425-1530}}{115--20, 1425--530} \AssertExpand{\hi@fmt@pageno{paragraph 15}}{para.~15} \AssertExpand{\hi@fmt@pageno{paragraphs 15}}{para.~15} \AssertExpand{\hi@fmt@pageno{paragraph 15-20}}{paras.~15--20} \AssertExpand{\hi@fmt@pageno{paragraph 15, 20}}{paras.~15, 20} \AssertExpand{\hi@fmt@pageno{paragraph 15, at 25-30}}{para.~15, at 25--30} \AssertExpand{\hi@fmt@pageno{paragraph 15/a1}} {para.~15(a)\hi@psize@penalty(1)} \AssertExpand{\hi@fmt@pageno{paragraph 15/a1, /a2}} {para.~15(a)\hi@psize@penalty(1), (a)\hi@psize@penalty(2)} \AssertExpand{\hi@fmt@pageno{paragraph 15/a1-/2}} {para.~15(a)\hi@psize@penalty(1)--(2)} \AssertExpand{\hi@fmt@pageno{paragraph 15/a1, /a2-/3}} {para.~15(a)\hi@psize@penalty(1), (a)\hi@psize@penalty(2)--(3)} \AssertExpand{\hi@fmt@pageno{paragraph 15, table 4-5, at 36}} {para.~15, tbls.4--5, at 36} \AssertExpand{\hi@fmt@pageno{15 note 6}}{15 n.6} \AssertExpand{\hi@fmt@pageno{15 note 5, 6, 7}}{15 nn.5, 6 \& 7} \AssertExpand{\hi@fmt@pageno{15 & note 5, 6, 7}}{15 \& nn.5, 6 \& 7} \AssertExpand{\hi@fmt@pageno{S 5-6}}{\textsection\textsection~5--6} \AssertExpand{\hi@fmt@pageno{P 5-6}}{\textparagraph\textparagraph~5--6} \AssertExpand{\hi@fmt@pageno{-34/a}}{34(a)} \AssertExpand{\hi@fmt@pageno{!A5}}{\hi@pgnum@raw A5} \AssertExpand{\hi@fmt@pageno{*123-125}}{*123--25} \subsection{Spacing} \AssertBox{\def\@this@page{15}\hi@page@space{Title}}{ } \AssertBox{\def\@this@page{15}\hi@page@space{Title 5}}{, at } \AssertBox{\def\@this@page{\hi@pgnum@raw A1}\hi@page@space{Title}}{ } \AssertBox{\def\@this@page{\hi@pgnum@raw A1}\hi@page@space{Title 5}}{, at } \AssertBox{\def\@this@page{\textsection~3}\hi@page@space{Title 5}}{, } \AssertBox{\def\@this@page{para.~3}\hi@page@space{Title}}{ } \AssertBox{\def\@this@page{para.~3}\hi@page@space{Title 5}}{, } \AssertBox{\def\@this@page{para.~3}\hi@page@space{R.}}{ at } \AssertBox{\def\@this@page{3}\hi@page@space{R.}}{ at } \subsection{Segments} \begingroup \hi@fpg@defsegment{foo} \hi@fpg@defsegment{bar} \AssertExpand{\hi@fpg@segment{15}{foo}{\@iden}{missing}}{missing} \AssertExpand{\hi@fpg@segment{15 ::bar: 7}{foo}{\@iden}{missing}}{missing} \AssertExpand{\hi@fpg@segment{15 ::foo: 24}{foo}{\@iden}{fail}}{24} \AssertExpand{\hi@fpg@segment{15 ::foo: 24 ::bar: 7}{foo}{\@iden}{fail}}{24} \AssertExpand{\hi@fpg@segment{15 ::foo: 24 ::bar: 7}{bar}{\@iden}{fail}}{7} \def\@this@orig@page{15 ::foo: 24 ::bar: 7} \AssertExpand{\hi@fpg@orig@page@segment{foo}{\@iden}{fail}}{24} \let\@this@orig@page\relax \AssertExpand{\hi@fpg@orig@page@segment{foo}{\@iden}{missing}}{missing} \endgroup %