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