Typos
[latex2e.git] / latex2e-20150101 / base / ltalloc.dtx
blob46cbd111593bc136bd922e19b52b02d35cde2fe8
1 % \iffalse meta-comment
3 % Copyright 1993-2015
4 % The LaTeX3 Project and any individual authors listed elsewhere
5 % in this file.
7 % This file is part of the LaTeX base system.
8 % -------------------------------------------
10 % It may be distributed and/or modified under the
11 % conditions of the LaTeX Project Public License, either version 1.3c
12 % of this license or (at your option) any later version.
13 % The latest version of this license is in
14 %    http://www.latex-project.org/lppl.txt
15 % and version 1.3c or later is part of all distributions of LaTeX
16 % version 2005/12/01 or later.
18 % This file has the LPPL maintenance status "maintained".
20 % The list of all files belonging to the LaTeX base distribution is
21 % given in the file `manifest.txt'. See also `legal.txt' for additional
22 % information.
24 % The list of derived (unpacked) files belonging to the distribution
25 % and covered by LPPL is defined by the unpacking scripts (with
26 % extension .ins) which are part of the distribution.
28 % \fi
30 % \iffalse
31 %%% From File: ltalloc.dtx
32 %<*driver>
33 % \fi
34 \ProvidesFile{ltalloc.dtx}
35              [1996/07/26 v1.1c LaTeX Kernel (allocation)]
36 % \iffalse
37 \documentclass{ltxdoc}
38 \GetFileInfo{ltalloc.dtx}
39 \title{\filename}
40 \date{\filedate}
41  \author{%
42   Johannes Braams\and
43   David Carlisle\and
44   Alan Jeffrey\and
45   Leslie Lamport\and
46   Frank Mittelbach\and
47   Chris Rowley\and
48   Rainer Sch\"opf}
49 \begin{document}
50 \MaintainedByLaTeXTeam{latex}
51 \maketitle
52  \DocInput{\filename}
53 \end{document}
54 %</driver>
55 % \fi
57 % \CheckSum{33}
59 % \changes{v1.1a}{1994/05/16}{(ASAJ) Split from ltinit.dtx.}
60 % \changes{v1.1b}{1995/10/25}{General doc improvements}
62 % \section{Counters}
64 % This section deals with counter and other variable allocation.
66 % \StopEventually{}
68 %    \begin{macrocode}
69 %<*2ekernel>
70 %    \end{macrocode}
72 % The following are from plain \TeX:
73 % \begin{description}
74 % \item[\cs{z@}] A zero dimen or number.  It's more efficient to write
75 %               |\parindent\z@| than |\parindent 0pt|.
76 % \item[\cs{@ne}]         The number 1.
77 % \item[\cs{m@ne}]        The number $-1$.
78 % \item[\cs{tw@}]         The number 2.
79 % \item[\cs{sixt@@n }]    The number 16.
80 % \item[\cs{@m}]          The number 1000.
81 % \item[\cs{@MM}]         The number 20000.
82 % \end{description}
84 % \begin{macro}{\@xxxii}
85 % The constant $32$.
86 %    \begin{macrocode}
87 \chardef\@xxxii=32
88 %    \end{macrocode}
89 % \end{macro}
91 % \begin{macro}{\@Mi}
92 % \begin{macro}{\@Mii}
93 % \begin{macro}{\@Miii}
94 % \begin{macro}{\@miv}
95 % Constants $1001$--$1004$.
96 %    \begin{macrocode}
97 \mathchardef\@Mi=10001
98 \mathchardef\@Mii=10002
99 \mathchardef\@Miii=10003
100 \mathchardef\@Miv=10004
101 %    \end{macrocode}
102 % \end{macro}
103 % \end{macro}
104 % \end{macro}
105 % \end{macro}
107 % \changes{v1.0d}{1994/03/28}
108 %     {Redefinition of `new' allocations removed.}
110 % \begin{macro}{\@tempcnta}
111 % \begin{macro}{\@tempcntb}
112 % Scratch count registers used by \LaTeX\ kernel commands.
113 %    \begin{macrocode}
114 \newcount\@tempcnta
115 \newcount\@tempcntb
116 %    \end{macrocode}
117 % \end{macro}
118 % \end{macro}
120 % \begin{macro}{\if@tempswa}
121 % General boolean switch used by \LaTeX\ kernel commands.
122 %    \begin{macrocode}
123 \newif\if@tempswa
124 %    \end{macrocode}
125 % \end{macro}
127 % \begin{macro}{\@tempdima}
128 % \begin{macro}{\@tempdimb}
129 % \begin{macro}{\@tempdimc}
130 % Scratch dimen registers used by \LaTeX\ kernel commands.
131 %    \begin{macrocode}
132 \newdimen\@tempdima
133 \newdimen\@tempdimb
134 \newdimen\@tempdimc
135 %    \end{macrocode}
136 % \end{macro}
137 % \end{macro}
138 % \end{macro}
140 % \begin{macro}{\@tempboxa}
141 % Scratch box register used by \LaTeX\ kernel commands.
142 %    \begin{macrocode}
143 \newbox\@tempboxa
144 %    \end{macrocode}
145 % \end{macro}
147 % \begin{macro}{\@tempskipa}
148 % \begin{macro}{\@tempskipb}
149 % Scratch skip registers used by \LaTeX\ kernel commands.
150 %    \begin{macrocode}
151 \newskip\@tempskipa
152 \newskip\@tempskipb
153 %    \end{macrocode}
154 % \end{macro}
155 % \end{macro}
157 % \begin{macro}{\@temptokena}
158 % Scratch token register used by \LaTeX\ kernel commands.
159 %    \begin{macrocode}
160 \newtoks\@temptokena
161 %    \end{macrocode}
162 % \end{macro}
165 % \begin{macro}{\@flushglue}
166 % Glue used for |\right|- \& |\leftskip|  = 0pt plus 1fil
167 %    \begin{macrocode}
168 \newskip\@flushglue \@flushglue = 0pt plus 1fil
169 %    \end{macrocode}
170 % \end{macro}
172 %    \begin{macrocode}
173 %</2ekernel>
174 %    \end{macrocode}
176 % \Finale
177 \endinput