Remove even more random +x properties
[latex2e.git] / trunk / base / ltlists.dtx
blobd72fba2446e660f128e4427685b677e987661131
1 % \iffalse meta-comment
3 % Copyright 1993-2016
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
29 % \iffalse
30 %%% From File: ltlists.dtx
31 %<*driver>
32 % \fi
33 \ProvidesFile{ltlists.dtx}
34              [2015/05/10 v1.0t LaTeX Kernel (List Environments)]
35 % \iffalse
36 \documentclass{ltxdoc}
37 \GetFileInfo{ltlists.dtx}
38 \title{\filename}
39 \date{\filedate}
40  \author{%
41   Johannes Braams\and
42   David Carlisle\and
43   Alan Jeffrey\and
44   Leslie Lamport\and
45   Frank Mittelbach\and
46   Tobias Oetiker\thanks{Tobi has converted the documentation to
47     doc.sty standard}\and
48   Chris Rowley\and
49   Rainer Sch\"opf}
51 \begin{document}
52  \MaintainedByLaTeXTeam{latex}
53  \maketitle
54  \DocInput{\filename}
55 \end{document}
56 %</driver>
57 % \fi
60 % \changes{v1.0b}{1994/03/28}{Improve documentation}
61 % \changes{v1.0f}{1994/05/21}{Use new error commands}
62 % \changes{v1.0f}{1995/05/21}{Moved to doc.sty standard}
64 % \section{List, and related environments}
66 % The generic commands for creating an indented environment --
67 % |enumerate|, |itemize|, |quote|, etc -- are:
68 % \begin{quote}
69 %        |\list|\marg{LABEL}\marg{COMMANDS} ... |\endlist|
70 % \end{quote}
72 % which can be invoked by the user as the list environment.  The LABEL
73 % argument specifies item labeling.  COMMANDS contains commands for
74 % changing the horizontal and vertical spacing parameters.
76 % Each item of the environment is begun by the command
77 % |\item[|ITEMLABEL|]|
78 % which produces an item labeled by ITEMLABEL.  If the argument is
79 % missing, then the LABEL argument of the |\list| command is used as the
80 % item label.
82 % The label is formed by putting |\makelabel|\marg{ITEMLABEL} in an hbox
83 % whose width is either its natural width or else |\labelwidth|,
84 % whichever is larger.  The |\list| command defines |\makelabel| to have
85 % the default  definition:
86 % \begin{quote}
87 %     |\makelabel|\marg{ARG} == BEGIN |\hfil| ARG END
88 % \end{quote}
89 % which, for a label of width less than |\labelwidth|, puts the label
90 % flushright, |\labelsep| to the left of the item's text.  However,
91 % |\makelabel| can be |\let| to another command by the |\list|'s
92 % COMMANDS argument.
94 % A |\usecounter|\marg{foo} command in the second argument causes the
95 % counter \emph{foo} to be initialized to zero, and stepped by every
96 % |\item| command without an argument.  (|\label| commands within the
97 % list refer to this counter.)
99 % When you leave a list environment, returning either to an enclosing
100 % list or normal text mode, LaTeX begins a new paragraph if and only if
101 % you leave a blank line after the |\end| command.  This is accomplished
102 % by the |\@endparenv| command.
104 % Blank lines are ignored every other reasonable place--i.e.:
105 % \begin{itemize}
106 %  \item  Between the |\begin{list}| and the first |\item|,
107 %  \item  Between the |\item| and the text of that item.
108 %  \item Between the end of the last item and the |\end{list}|.
109 % \end{itemize}
111 % For an environment like quotation, in which items are not labeled,
112 % the entire environment is a single item.  It is defined by
113 % letting |\quotation| == |\list{}{...}\item\relax|.  (Note the
114 % |\relax|, there in case the first character in the environment is a
115 % '['.)  The spacing parameters provide a great deal of flexability in
116 % designing the format, including the ability to let the indentation of
117 % the first paragraph be different from that of the subsequent ones.
119 % The trivlist environment is equivalent to a list environment
120 % whose second argument sets the following parameter values:
121 % \begin{description}
122 % \item[\cs{leftmargin} = 0:] causes no indentation of left margin
123 % \item[\cs{labelwidth} = 0:] see below for precise effect this has.
124 % \item[\cs{itemindent} = 0:] with a null label, makes first paragraph
125 %        have no indentation.  Succeeding paragraphs have |\parindent|
126 %        indentation.  To give first paragraph same indentation, set
127 %        |\itemindent| = |\parindent| before the |\item[]|.
128 % \end{description}
130 % Every |\item| in a trivlist environment must have an argument---in
131 % many cases, this will be the null argument (|\item[]|).  The trivlist
132 % environment is mainly used for paragraphing environments, like
133 % verbatim, in which there is no margin change.  It provides the same
134 % vertical spacing as the list environment, and works reasonably well
135 % when it occurs immediately after an |\item| command in an enclosing
136 % list.
138 % \StopEventually{}
141 % \changes{v1.0a}{1994/03/07}{Initial version, split from latex.dtx}
142 % \changes{v1.0a}{1994/03/07}{Long lines wrapped to 72 columns}
145 % \subsection{List and Trivlist}
148 % The following variables are used inside a list environment:
149 % \begin{description}
150 % \item[\cs{@totalleftmargin}] The distance that the prevailing left
151 %     margin is indented from the outermost left margin,
152 % \item[\cs{linewidth}] The width of the current line.  Must be
153 %     initialized to |\hsize|.
154 % \item[\cs{@listdepth}] A count for holding current list nesting depth.
155 % \item[\cs{makelabel}] A macro with a single argument, used to
156 %   generate the label from the argument (given or implied)
157 %   of the |\item| command. Initialized to |\@mklab| by the |\list|
158 %   command.  This command must produce  some stretch---i.e., an
159 %   |\hfil|.
160 % \item[\cs{@inlabel}] A switch that is false except between the time
161 %   an |\item| is encountered and the time that \TeX{}
162 %   actually enters horizontal mode.  Should be tested by commands
163 %   that can be messed up by the list environment's use of |\everypar|.
164 % \item[\cs{box}\cs{@labels}] When |@inlabel = true|, it holds the labels
165 %   to be put out by |\everypar|.
166 % \item[\texttt{@noparitem}] A switch set by |\list| when
167 %   |@inlabel = true|.
168 %   Handles the case of a |\list| being the first thing in an item.
169 % \item[\texttt{@noparlist}] A switch set true for a list that begins an
170 %   item.  No |\topsep| space is added before or after |\item|'s such a
171 %   list.
172 % \item[\texttt{@newlist}] Set true by |\list|, set false by the first
173 %   text (by |\everypar|).
174 % \item[\texttt{@noitemarg}]  Set true when executing an |\item| with no
175 %   explicit argument.  Used to save space. To save time, make two
176 %   separate  |\@item| commands.
177 % \item[\texttt{@nmbrlist}] Set true by |\usecounter| command, causes
178 %   list to be numbered.
179 % \item[\cs{@listctr}] |\def|'ed by |\usecounter| to name of counter.
180 % \item[\cs{@noskipsec}] A switch set true by a sectioning command when
181 %    it is creating an in-text heading with |\everypar|.
182 % \end{description}
184 % Throughout a list environment, |\hsize| is the width of the current
185 % line, measured from the outermost left margin to the outermost right
186 % margin.  Environments like tabbing should use |\linewidth| instead of
187 % |\hsize|.
189 % Here are the parameters of a list that can be set by commands in
190 % the |\list|'s COMMANDS argument.  These parameters are all TeX
191 % skips or dimensions (defined by |\newskip| or |\newdimen|), so the
192 % usual \TeX\ or \LaTeX\ commands can be used to set them.  The
193 % commands will be executed in vmode if and only if the |\list| was
194 % preceded by a |\par| (or something like an |\end{list}|), so the
195 % spacing parameters can be set according to whether the list is
196 % inside a paragraph or is its own paragraph.
199 % \subsection{Vertical Spacing (skips)}
200 % \begin{description}
201 % \item[\cs{topsep}:]  Space between first item and preceding paragraph.
202 % \item[\cs{partopsep}:] Extra space added to \cs{topsep} when
203 %        environment starts a new paragraph (is called in vmode).
204 % \item[\cs{itemsep}:] Space between successive items.
205 % \item[\cs{parsep}:] Space between paragraphs within an item -- the
206 %                 \cs{parskip} for this environment.
207 % \end{description}
209 % \subsection{Penalties}
210 % \begin{description}
212 % \item[\cs{@beginparpenalty}:] put at the beginning of a list
213 % \item[\cs{@endparpenalty}:] put at end of list
214 %  \item[\cs{@itempenalty}:] put between items.
215 %  \end{description}
217 % \subsection{Horizontal Spacing (dimens)}
218 % \begin{description}
219 % \item[\cs{leftmargin}:] space between left margin of enclosing
220 %   environment (or of page if top level list) and left margin of
221 %                     this list.  Must be nonnegative.
222 %  \item[\cs{rightmargin}:] analogous.
223 %  \item[\cs{listparindent}:] extra indentation at beginning of every
224 %     paragraph of a list except the one started by the \cs{item}
225 %                      command.  May be negative!  Usually, labeled
226 %                       lists have \cs{listparindent} equal to zero.
227 %   \item[\cs{itemindent}:] extra indentation added right BEFORE an item
228 %                      label.
229 %  \item[\cs{labelwidth}:] nominal width of box that contains the label.
230 %                      If the natural width of the
231 %                         label $< =$ \cs{labelwidth},
232 %                      then the label is flushed right inside a box
233 %                      of width \cs{labelwidth} (with an \cs{hfil}).
234 %                      Otherwise,
235 %                      a box of the natural width is employed, which
236 %                       causes an indentation of the text on that line.
237 %     \item[\cs{labelsep}:] space between end of label box and text of
238 %                      first item.
239 %  \end{description}
240 % \subsection{Default Values}
241 %      Defaults for the list environment are set as follows.
242 %      First, \cs{rightmargin}, \cs{listparindent} and \cs{itemindent}
243 %      are set
244 %      to 0pt.  Then, one of the commands
245 %      \cs{@listi}, \cs{@listii}, ... , \cs{@listvi}
246 %      is called, depending upon the current level of the list.
247 %      The \cs{@list} \ldots commands should be defined by the document
248 %      style.  A convention that the document style should follow is
249 %      to set \cs{leftmargin} to
250 %      \cs{leftmargini},\ldots, \cs{leftmarginvi} for
251 %      the appropriate level.  Items that aren't changed may be left
252 %      alone, but everything that could possibly be changed must be
253 %      reset.
254 %  \begin{oldcomments}
255 %  \list{LABEL}{COMMANDS} ==
256 %   BEGIN
257 %     if \@listdepth > 5
258 %       then LaTeX error: 'Too deeply nested'
259 %       else \@listdepth :=G \@listdepth + 1
260 %     fi
261 %     \rightmargin     := 0pt
262 %     \listparindent   := 0pt
263 %     \itemindent      := 0pt
264 %     \eval(@list \romannumeral\the\@listdepth)  %% Set default values:
265 %     \@itemlabel      :=L LABEL
266 %     \makelabel       == \@mklab
267 %     @nmbrlist        :=L false
268 %     COMMANDS
270 %     \@trivlist                % commands common to \list and \trivlist
272 %     \parskip          :=L \parsep
273 %     \parindent        :=L \listparindent
274 %     \linewidth        :=L \linewidth - \rightmargin -\leftmargin
275 %     \@totalleftmargin :=L \@totalleftmargin + \leftmargin
276 %     \parshape 1 \@totalleftmargin \linewidth
277 %     \ignorespaces                    % gobble space up to \item
278 %    END
280 % \endlist == BEGIN \@listdepth :=G \@listdepth -1
281 %                   \endtrivlist
282 %             END
284 % \@trivlist ==
285 %  BEGIN
286 %     if @newlist = T then \@noitemerr fi
287 %                     %% This command removed for some forgotten reason.
288 %     \@topsepadd :=L \topsep
289 %     if @noskipsec then leave vertical mode fi  %% Added 11 Jun 85
290 %     if vertical mode
291 %       then \@topsepadd :=L \@topsepadd + \partopsep
292 %       else \unskip \par            % remove glue from end of last line
293 %     fi
294 %     if @inlabel = true
295 %        then @noparitem :=L true
296 %             @noparlist :=L true
297 %        else @noparlist :=L false
298 %             \@topsep   :=L \@topsepadd
299 %     fi
300 %     \@topsep         :=L \@topsep + \parskip  %% Change 4 Sep 85
301 %     \leftskip        :=L 0pt         % Restore paragraphing parameters
302 %     \rightskip       :=L \@rightskip
303 %     \parfillskip     :=L 0pt + 1fil
305 %   NOTE: \@setpar called on every \list in case \par has been
306 %   temporarily  munged before the \list command.
307 %     \@setpar{if @newlist = false then {\@@par} fi}
308 %     \@newlist         :=G T
309 %     \@outerparskip    :=L \parskip
310 % END
312 % \trivlist  ==
313 % BEGIN
314 %  \parsep     := \parskip
315 %  @nmbrlist := F
316 %  \@trivlist
317 %  \labelwidth := 0
318 %  \leftmargin := 0
319 %  \itemindent := \parindent
320 %  \@itemlabel :=L "empty"          %% added 93/12/13
321 %  \makelabel{LABEL} == LABEL
322 % END
324 % \endtrivlist ==
325 %   BEGIN
326 %     if @inlabel = T then \indent fi
327 %     if horizontal mode then \unskip \par fi
328 %     if @noparlist = true
329 %       else if \lastskip > 0
330 %               then \@tempskipa := \lastskip
331 %                    \vskip - \lastskip
332 %                    \vskip \@tempskipa -\@outerparskip + \parskip
333 %            fi
334 %            \@endparenv
335 %     fi
336 %   END
338 % \@endparenv ==
339 %   BEGIN
340 %    \addpenalty{@endparpenalty}
341 %    \addvspace{\@topsepadd}
342 %    \endgroup    %% ends the \begin command's \begingroup
343 %    \par  ==  BEGIN
344 %                \@restorepar
345 %                \everypar{}
346 %                \par
347 %              END
348 %    \everypar == BEGIN remove \lastbox \everypar{} END
349 %    \begingroup  %% to match the \end commands \endgroup
350 %   END
352 % \item == BEGIN if math mode then WARNING fi
353 %                  if  next char = [
354 %                  then  \@item
355 %                  else  @noitemarg := true
356 %                        \@item[@itemlabel]
357 %          END
359 % \@item[LAB] ==
360 %    BEGIN
361 %     if @noparitem = true
362 %       then @noparitem := false
363 %                % NOTE: then clause  hardly every taken,
364 %                %  so made a macro \@donoparitem
365 %            \box\@labels :=G \hbox{\hskip -\leftmargin
366 %                                   \box\@labels
367 %                                   \hskip \leftmargin }
368 %            if @minipage = false then
369 %               \@tempskipa := \lastskip
370 %               \vskip -\lastskip
371 %               \vskip \@tempskipa + \@outerparskip - \parskip
372 %            fi
373 %       else if @inlabel = true
374 %              then \indent \par   % previous item empty.
375 %            fi
376 %            if hmode then 2 \unskip's
377 %                           % To remove any space at end of prev.
378 %                           % paragraph that could cause a blank line.
379 %                     \par
380 %            fi
381 %            if @newlist = T
382 %               then if @nobreak = T   % Kludge if list follows \section
383 %                      then \addvspace{\@outerparskip - \parskip}
384 %                      else \addpenalty{\@beginparpenalty}
385 %                           \addvspace{\@topsep}
386 %                           \addvspace{-\parskip}   %% added 4 Sep 85
387 %                    fi
388 %               else \addpenalty{\@itempenalty}
389 %                    \addvspace{\itemsep}
390 %            fi
391 %            @inlabel :=G true
392 %     fi
394 %     \everypar{ @minipage :=G F
395 %                @newlist :=G F
396 %                if  @inlabel = true
397 %                  then @inlabel :=G false
398 %                       \hskip -\parindent
399 %                       \box\@labels
400 %                       \penalty 0
401 %                             %% 3 Oct 85  -- allow line break here
402 %                       \box\@labels :=G null
403 %                fi
404 %                \everypar{} }
405 %     @nobreak :=G false
406 %     if  @noitemarg = true
407 %       then @noitemarg := false
408 %            if @nmbrlist
409 %              then \refstepcounter{\@listctr}
410 %     fi     fi
411 %     \@tempboxa   :=L \hbox{\makelabel{LAB}}
412 %     \box\@labels :=G \@labels \hskip \itemindent
413 %                       \hskip - (\labelwidth + \labelsep)
414 %                       if \wd \@tempboxa > \labelwidth
415 %                          then \box\@tempboxa
416 %                          else \hbox to \labelwidth {\unhbox\@tempboxa}
417 %                       fi
418 %                       \hskip\labelsep
419 %     \ignorespaces                        %gobble space up to text
420 %   END
422 %   \makelabel{LABEL} == ERROR   %% default to catch lonely \item
425 %   \usecounter{CTR} == BEGIN  @nmbrlist :=L true
426 %                              \@listctr == CTR
427 %                              \setcounter{CTR}{0}
428 %                       END
430 % DEFINE \dimen's and \count
431 % \end{oldcomments}
432 % \begin{macro}{\topskip}
433 % \begin{macro}{\partopsep}
434 % \begin{macro}{\itemsep}
435 % \begin{macro}{\parsep}
436 % \begin{macro}{\@topsep}
437 % \begin{macro}{\@topsepadd}
438 % \begin{macro}{\outerparskip}
439 %    \begin{macrocode}
440 %<*2ekernel>
441 \newskip\topsep
442 \newskip\partopsep
443 \newskip\itemsep
444 \newskip\parsep
445 \newskip\@topsep
446 \newskip\@topsepadd
447 \newskip\@outerparskip
448 %    \end{macrocode}
449 % \end{macro}\end{macro}\end{macro}\end{macro}\end{macro}\end{macro}
450 % \end{macro}
451 % \begin{macro}{\leftmargin}\begin{macro}{\rightmargin}
452 % \begin{macro}{\listparindent}\begin{macro}{\itemindent}
453 % \begin{macro}{\labelwidth}\begin{macro}{\labelsep}
454 % \begin{macro}{\@totalleftmargin}
455 %    \begin{macrocode}
456 \newdimen\leftmargin
457 \newdimen\rightmargin
458 \newdimen\listparindent
459 \newdimen\itemindent
460 \newdimen\labelwidth
461 \newdimen\labelsep
462 \newdimen\linewidth
463 \newdimen\@totalleftmargin \@totalleftmargin=\z@
464 %    \end{macrocode}
465 % \end{macro}\end{macro}\end{macro}\end{macro}\end{macro}
466 % \end{macro}\end{macro}
468 % \begin{macro}{\leftmargini}
469 % \begin{macro}{\leftmarginii}
470 % \begin{macro}{\leftmarginiii}
471 % \begin{macro}{\leftmarginiv}
472 % \begin{macro}{\leftmarginv}
473 % \begin{macro}{\leftmarginvi}
474 %    \begin{macrocode}
475 \newdimen\leftmargini
476 \newdimen\leftmarginii
477 \newdimen\leftmarginiii
478 \newdimen\leftmarginiv
479 \newdimen\leftmarginv
480 \newdimen\leftmarginvi
481 %    \end{macrocode}
482 % \end{macro}\end{macro}\end{macro}
483 % \end{macro}\end{macro}\end{macro}
485 % \begin{macro}{\@listdepth}\begin{macro}{\@itempenalty}
486 % \begin{macro}{\@beginparpenalty}\begin{macro}{\@endparpenalty}
487 %    \begin{macrocode}
488 \newcount\@listdepth \@listdepth=0
489 \newcount\@itempenalty
490 \newcount\@beginparpenalty
491 \newcount\@endparpenalty
492 %    \end{macrocode}
493 % \end{macro}\end{macro}\end{macro}\end{macro}
495 % \begin{macro}{\@labels}
496 %    \begin{macrocode}
497 \newbox\@labels
498 %    \end{macrocode}
499 % \end{macro}
501 % \begin{macro}{\if@inlabel}
502 % \begin{macro}{\@inlabelfalse}
503 % \begin{macro}{\@inlabeltrue}
504 %    \begin{macrocode}
505 \newif\if@inlabel \@inlabelfalse
506 %    \end{macrocode}
507 % \end{macro}\end{macro}\end{macro}
509 % \begin{macro}{\if@newlist}
510 % \begin{macro}{\@newlistfalse}
511 % \begin{macro}{\@newlisttrue}
512 %    \begin{macrocode}
513 \newif\if@newlist   \@newlistfalse
514 %    \end{macrocode}
515 % \end{macro}\end{macro}\end{macro}
517 % \begin{macro}{\if@noparitem}
518 % \begin{macro}{\@noparitemfalse}
519 % \begin{macro}{\@noparitemtrue}
520 %    \begin{macrocode}
521 \newif\if@noparitem \@noparitemfalse
522 %    \end{macrocode}
523 % \end{macro}\end{macro}\end{macro}
525 % \begin{macro}{\if@noparlist}
526 % \begin{macro}{\@noparlistfalse}
527 % \begin{macro}{\@noparlisttrue}
528 %    \begin{macrocode}
529 \newif\if@noparlist \@noparlistfalse
530 %    \end{macrocode}
531 % \end{macro}\end{macro}\end{macro}
533 % \begin{macro}{\if@noitemarg}
534 % \begin{macro}{\@noitemargfalse}
535 % \begin{macro}{\@noitemargtrue}
536 %    \begin{macrocode}
537 \newif\if@noitemarg \@noitemargfalse
538 %    \end{macrocode}
539 % \end{macro}\end{macro}\end{macro}
541 % \begin{macro}{\if@newlist}
542 % \begin{macro}{\@newlistfalse}
543 % \begin{macro}{\@newlisttrue}
544 %    \begin{macrocode}
545 \newif\if@nmbrlist  \@nmbrlistfalse
546 %    \end{macrocode}
547 % \end{macro}\end{macro}\end{macro}
549 % \begin{macro}{\list}
550 %    \begin{macrocode}
551 \def\list#1#2{%
552   \ifnum \@listdepth >5\relax
553     \@toodeep
554   \else
555     \global\advance\@listdepth\@ne
556   \fi
557   \rightmargin\z@
558   \listparindent\z@
559   \itemindent\z@
560   \csname @list\romannumeral\the\@listdepth\endcsname
561   \def\@itemlabel{#1}%
562   \let\makelabel\@mklab
563   \@nmbrlistfalse
564   #2\relax
565   \@trivlist
566   \parskip\parsep
567   \parindent\listparindent
568   \advance\linewidth -\rightmargin
569   \advance\linewidth -\leftmargin
570   \advance\@totalleftmargin \leftmargin
571   \parshape \@ne \@totalleftmargin \linewidth
572   \ignorespaces}
573 %    \end{macrocode}
574 % \end{macro}
576 % \begin{macro}{\par@deathcycles}
577 %    \begin{macrocode}
578 \newcount\par@deathcycles
579 %    \end{macrocode}
580 % \end{macro}
582 % \begin{macro}{\@trivlist}
583 % \changes{v1.0e}{1994/12/02}{RmS: Added check for looping}
584 % \changes{v1.0p}{1996/10/31}{Added check for missing item in outer
585 %                             list}
586 % \changes{v1.0q}{1996/11/04}{Moved check for missing item: only checked
587 %                 when not inlabel flag is false}
588 % Because |\par| is sometimes made a no-op it is possible for a missing
589 % |\item| to produce a loop that does not fill memory and so never gets
590 % trapped by \TeX.  We thus need to trap this here by seting |\par| to
591 % count the number of times a paragraph ii is called with no progress
592 % being made started.
593 %    \begin{macrocode}
594 \def\@trivlist{%
595   \if@noskipsec \leavevmode \fi
596   \@topsepadd \topsep
597   \ifvmode
598     \advance\@topsepadd \partopsep
599   \else
600     \unskip \par
601   \fi
602   \if@inlabel
603     \@noparitemtrue
604     \@noparlisttrue
605   \else
606     \if@newlist \@noitemerr \fi
607     \@noparlistfalse
608     \@topsep \@topsepadd
609   \fi
610   \advance\@topsep \parskip
611   \leftskip \z@skip
612   \rightskip \@rightskip
613   \parfillskip \@flushglue
614   \par@deathcycles \z@
615   \@setpar{\if@newlist
616              \advance\par@deathcycles \@ne
617              \ifnum \par@deathcycles >\@m
618                \@noitemerr
619                {\@@par}%
620              \fi
621            \else
622              {\@@par}%
623            \fi}%
624   \global \@newlisttrue
625   \@outerparskip \parskip}
626 %    \end{macrocode}
627 % \end{macro}
629 % \changes{0.0}{1992/03/18}{RmS: added \cs{@nmbrlistfalse}}
630 % \begin{macro}{\trivlist}
631 %    \begin{macrocode}
632 \def\trivlist{%
633   \parsep\parskip
634   \@nmbrlistfalse
635   \@trivlist
636   \labelwidth\z@
637   \leftmargin\z@
638   \itemindent\z@
639 %    \end{macrocode}
641 %    We initialise |\@itemlabel| so that a \texttt{trivlist} with
642 %    an |\item| not having an optional argument doesn't produce an
643 %    error message.
644 % \changes{latex2e}{1993/12/13}{Initialised \cs{@itemlabel}}
645 %    \begin{macrocode}
646   \let\@itemlabel\@empty
647   \def\makelabel##1{##1}}
648 %    \end{macrocode}
649 % \end{macro}
651 % \begin{macro}{\endlist}
652 %    \begin{macrocode}
653 \def\endlist{%
654   \global\advance\@listdepth\m@ne
655   \endtrivlist}
656 %    \end{macrocode}
657 % \end{macro}
659 %    The definition of \cs{trivlist} used to be in ltspace.dtx
660 %    so that other commands could be `let to it'.
661 %    They now use \cs{def}.
662 % \begin{macro}{\endtrivlist}
663 % \changes{v1.2b ltspace}{1994/11/12}{Changed order of tests to make
664 % \cs{@noitemerror} correct: end of an era.}
665 % \changes{v1.0i}{1995/05/25}{Macros moved from ltspace.dtx}
666 % \changes{v1.0n}{1996/10/25}{Change \cs{indent} to \cs{leavevmode}}
667 % \changes{v1.0n}{1996/10/25}{Reset flags explicitly}
668 % \changes{v1.0o}{1996/10/26}{Correct typo}
669 %    \begin{macrocode}
670 \def\endtrivlist{%
671   \if@inlabel
672     \leavevmode
673     \global \@inlabelfalse
674   \fi
675   \if@newlist
676     \@noitemerr
677     \global \@newlistfalse
678   \fi
679   \ifhmode\unskip \par
680 %    \end{macrocode}
681 %    We also check if we are in math mode and issue an error message
682 %    if so (hoping that |\@currenvir| resolves suitably). Otherwise
683 %    the usual ``perhaps a missing item'' error will get triggered
684 %    later which is confusing.
685 % \changes{v1.0s}{2002/10/28}{Check for math mode (pr/3437)}
686 %    \begin{macrocode}
687   \else
688     \@inmatherr{\end{\@currenvir}}%
689   \fi
690   \if@noparlist \else
691     \ifdim\lastskip >\z@
692       \@tempskipa\lastskip \vskip -\lastskip
693       \advance\@tempskipa\parskip \advance\@tempskipa -\@outerparskip
694       \vskip\@tempskipa
695     \fi
696     \@endparenv
697   \fi
699 %    \end{macrocode}
700 % \end{macro}
704 % \begin{macro}{\@endparenv}
705 % \begin{macro}{\@doendpe}
706 % To suppress the paragraph indentation in text immediately following
707 % a paragraph-making environment, \cs{everypar} is changed to remove the
708 % space, and \cs{par} is redefined to restore \cs{everypar}.  Instead of
709 % redefining \cs{par} and \cs{everypar}, \cs{@endparenv} was changed to
710 % set the @endpe switch, letting \cs{end} redefine \cs{par} and
711 % \cs{everypar}.
713 % This allows paragraph-making environments to work right when called
714 % by other environments. (Changed 27 Oct 86)
715 %    \begin{macrocode}
716 \def\@endparenv{%
717   \addpenalty\@endparpenalty\addvspace\@topsepadd\@endpetrue}
718 %    \end{macrocode}
720 %    \begin{macrocode}
721 %<latexrelease>\IncludeInRelease{2015/01/01}{\@doendpe}{clubpenalty fix}%
722 \def\@doendpe{\@endpetrue
723      \def\par{\@restorepar
724 %    \end{macrocode}
725 %    If a section heading changes |\clubpenalty| to keep lines
726 %    after it together then this modification is restored via the
727 %   |\everypar| mechanism at the start of the next paragraph. As we
728 %   destroy the contents of this token here we explicity set
729 %   |\clubpenalty| back to its default.
730 % \changes{v1.0t}{2015/05/10}{Explicitly reset \cs{clubpenalty} before
731 %  clearing \cs{everypar}; see also pr/0462 and pr/4065}
732 %    \begin{macrocode}
733               \clubpenalty\@clubpenalty
734               \everypar{}\par\@endpefalse}\everypar
735 %    \end{macrocode}
737 %    Use |\setbox0=\lastbox| instead of   |\hskip -\parindent|
738 %    so that a \cs{noindent} becomes a no-op when used before
739 %    a line immediately following a list environment(23 Oct 86).
740 % \changes{v1.0k}{1995/11/07}{Enclosed \cs{setbox0} assignment by a
741 % group so that it leaves the contents of box $0$ intact.}
742 %    \begin{macrocode}
743                {{\setbox\z@\lastbox}%
744                 \everypar{}\@endpefalse}}
745 %<latexrelease>\EndIncludeInRelease
746 %    \end{macrocode}
747 %    
748 %    \begin{macrocode}
749 %<latexrelease>\IncludeInRelease{0000/00/00}{\@doendpe}{clubpenalty fix}%
750 %<latexrelease>\def\@doendpe{\@endpetrue
751 %<latexrelease>    \def\par{\@restorepar\everypar{}\par\@endpefalse}\everypar
752 %<latexrelease>               {{\setbox\z@\lastbox}\everypar{}\@endpefalse}}
753 %<latexrelease>\EndIncludeInRelease
754 %    \end{macrocode}
755 % \end{macro}
756 % \end{macro}
759 % \begin{macro}{\if@endpe}
760 % \begin{macro}{\@endpefalse}
761 % \begin{macro}{\@endpeltrue}
762 %    \begin{macrocode}
763 \newif\if@endpe
764 \@endpefalse
765 %    \end{macrocode}
766 % \end{macro}\end{macro}\end{macro}
769 % \begin{macro}{\@mklab}
770 %    \begin{macrocode}
771 \def\@mklab#1{\hfil #1}
772 %    \end{macrocode}
773 % \end{macro}
775 % \changes{LaTeX2.09}{1992/09/18}
776 %     {(RmS) Added warning if \cs{item} is used in math mode}
777 % \changes{v1.0c}{1994/04/28}
778 %     {Replaced \cs{@ltxnomath} by \cs{@inmatherr}}
779 % \changes{v1.0d}{1994/05/03}
780 %     {Removed superfluous braces}
781 % \begin{macro}{\item}
782 %    \begin{macrocode}
783 \def\item{%
784   \@inmatherr\item
785   \@ifnextchar [\@item{\@noitemargtrue \@item[\@itemlabel]}}
786 %    \end{macrocode}
787 % \end{macro}
788 % \begin{macro}{\@donoparitem}
789 %    \begin{macrocode}
790 \def\@donoparitem{%
791   \@noparitemfalse
792   \global\setbox\@labels\hbox{\hskip -\leftmargin
793                                \unhbox\@labels
794                                 \hskip \leftmargin}%
795   \if@minipage\else
796     \@tempskipa\lastskip
797     \vskip -\lastskip
798     \advance\@tempskipa\@outerparskip
799     \advance\@tempskipa -\parskip
800     \vskip\@tempskipa
801   \fi}
802 %    \end{macrocode}
803 % \end{macro}
805 % \begin{macro}{\@item}
806 % \changes{v1.0l}{1996/07/26}{Remove unecessary \cs{global} before
807 %                 \cs{@minipage...}}
808 %    \begin{macrocode}
809 \def\@item[#1]{%
810   \if@noparitem
811     \@donoparitem
812   \else
813     \if@inlabel
814       \indent \par
815     \fi
816     \ifhmode
817       \unskip\unskip \par
818     \fi
819     \if@newlist
820       \if@nobreak
821         \@nbitem
822       \else
823         \addpenalty\@beginparpenalty
824         \addvspace\@topsep
825         \addvspace{-\parskip}%
826       \fi
827     \else
828       \addpenalty\@itempenalty
829       \addvspace\itemsep
830     \fi
831     \global\@inlabeltrue
832   \fi
833   \everypar{%
834     \@minipagefalse
835     \global\@newlistfalse
836 %    \end{macrocode}
837 %    This |\if@inlabel| check is needed in case an item starts of
838 %    inside a group so that |\everypar| does not become empty
839 %    outside that group.
840 % \@nobreakfalse, etc etc.
841 %    \begin{macrocode}
842     \if@inlabel
843       \global\@inlabelfalse
844 %    \end{macrocode}
845 %    The paragraph indent is now removed by using |\setbox...| since
846 %    this makes |\noindent| a no-op here, as it should be. Thus the
847 %    following comment is redundant but is left here for the sake of
848 %    future historians:
849 %    this next command was changed from an hskip to a kern to avoid
850 %    a break point after the parindent box: the skip could cause a
851 %    line-break if a very long label occurs in raggedright setting.
852 % \changes{v1.0d}{1994/05/03}{\cs{hskip} changed to \cs{kern}}
853 % \changes{v1.0m}{1996/10/23}{\cs{kern...} changed to \cs{setbox...}}
854 % \changes{v1.0r}{1997/02/21}
855 %    {\cs{ifvoid} check added for \cs{noindent}. latex/2414}
856 % If |\noindent| was used after |\item| want to cancel the |\itemindent|
857 % skip. This case can be detected as the indentation box will be void.
858 %    \begin{macrocode}
859       {\setbox\z@\lastbox
860        \ifvoid\z@
861          \kern-\itemindent
862        \fi}%
863 %    \end{macrocode}
865 %    \begin{macrocode}
866       \box\@labels
867       \penalty\z@
868     \fi
869 %    \end{macrocode}
870 %    This code is intended to prevent a page break after the first
871 %    line of an item that comes immediately after a section title. It
872 %    may be sensible to always forbid a page break after one line of
873 %    an item?  As with all such settings of |\clubpenalty| it is local
874 %    so will have no effect if the item starts in a group.
876 %    Only resetting |\@nobreak| when it is true is now
877 %    essential since now it is sometimes set locally.
878 % \changes{v1.0m}{1996/10/23}{Added setting of \cs{clubpenalty} and
879 %    set \cs{@nobreakfalse} only when necessary}
880 %    \begin{macrocode}
881     \if@nobreak
882       \@nobreakfalse
883       \clubpenalty \@M
884     \else
885       \clubpenalty \@clubpenalty
886       \everypar{}%
887     \fi}%
888 %    \end{macrocode}
889 % \changes{v1.0l}{1996/07/26}{Remove unecessary \cs{global} before
890 %                 \cs{@nobreak...}}
891 % \changes{v1.0m}{1996/10/23}{\cs{@nobreak...} moved into the
892 %          \cs{everypar} and not executed unconditionally, see above}
893 %    \begin{macrocode}
894   \if@noitemarg
895     \@noitemargfalse
896     \if@nmbrlist
897 %    \end{macrocode}
898 % \changes{v1.0g}{1995/05/17}{Removed surplus braces}
899 %    \begin{macrocode}
900       \refstepcounter\@listctr
901     \fi
902   \fi
903 %    \end{macrocode}
904 %    We use |\sbox| to support colour commands.
905 % \changes{LaTeX2e}{1993/12/08}{use \cs{sbox} to support colour}
906 %    \begin{macrocode}
907   \sbox\@tempboxa{\makelabel{#1}}%
908   \global\setbox\@labels\hbox{%
909     \unhbox\@labels
910     \hskip \itemindent
911     \hskip -\labelwidth
912     \hskip -\labelsep
913     \ifdim \wd\@tempboxa >\labelwidth
914       \box\@tempboxa
915 %    \end{macrocode}
916 % \changes{LaTeX2.09}{1991/11/22}
917 %         {(RmS) Changed second call to \cs{makelabel} to
918 %           \cs{unhbox}\cs{@tempboxa}.
919 %          Avoids problems with side effects in \cs{makelabel} and is
920 %               more efficient.}
921 %    \begin{macrocode}
922     \else
923       \hbox to\labelwidth {\unhbox\@tempboxa}%
924     \fi
925     \hskip \labelsep}%
926   \ignorespaces}
927 %    \end{macrocode}
928 % \end{macro}
930 % \begin{macro}{\makelabel}
931 % \changes{LaTeX2.09}{1991/11/04}
932 %         {(RmS) added default definition for \cs{makelabel},
933 %               to produce an error message.}
934 %    \begin{macrocode}
935 \def\makelabel#1{%
936   \@latex@error{Lonely \string\item--perhaps a missing
937         list environment}\@ehc}
938 %    \end{macrocode}
939 % \end{macro}
941 % \begin{macro}{\@nbitem}
942 % \changes{v1.0g}{1995/05/17}{Removed surplus braces}
943 %    \begin{macrocode}
944 \def\@nbitem{%
945   \@tempskipa\@outerparskip
946   \advance\@tempskipa -\parskip
947   \addvspace\@tempskipa}
948 %    \end{macrocode}
949 % \end{macro}
951 % \begin{macro}{\usecounter}
952 %    \begin{macrocode}
953 \def\usecounter#1{\@nmbrlisttrue\def\@listctr{#1}\setcounter{#1}\z@}
954 %    \end{macrocode}
955 % \end{macro}
958 % \subsection{Itemize and Enumerate}
960 %  Enumeration is done with four counters: |enumi|, |enumii|, |enumiii|
961 %  and |enumiv|, where |enum|N controls the numbering of the Nth level
962 %  enumeration.  The label is generated by the commands
963 %  \cs{labelenumi} \ldots{} \cs{labelenumiv}, which should be defined
964 %  by the document style.
965 %  Note that \cs{p@enum}N\cs{theenum}N defines the output
966 %  of a \cs{ref} command.  A typical definition might be:
967 % \begin{verbatim}
968 %     \def\theenumii{\alph{enumii}}
969 %     \def\p@enumii{\theenumi}
970 %     \def\labelenumii{(\theenumii)}
971 % \end{verbatim}
972 % which will print the labels as `(a)', `(b)', \ldots
973 % and print a \cs{ref} as `3a'.
975 % The item numbers are moved to the right of the label box, so they are
976 % always a distance of \cs{labelsep} from the item.
978 % \cs{@enumdepth} holds the current enumeration nesting depth.
980 % Itemization is controlled by four commands: \cs{labelitemi},
981 % \cs{labelitemii},
982 % \cs{labelitemiii}, and \cs{labelitemiv}.
983 % To cause the second-level list to be
984 % bulleted, you just define \cs{labelitemii}
985 % to be $\bullet$.  \cs{@itemspacing}
986 % and \cs{@itemdepth} are the analogs of \cs{@enumspacing} and
987 % \cs{@enumdepth}.
989 % \begin{oldcomments}
990 % \enumerate ==
991 %   BEGIN
992 %     if \@enumdepth > 3
993 %       then errormessage: ``Too deeply nested''.
994 %       else \@enumdepth :=L \@enumdepth + 1
995 %            \@enumctr :=L eval(enum@\romannumeral\the\@enumdepth)
996 %            \list{\label(\@enumctr)}
997 %                 {\usecounter{\@enumctr}
998 %                  \makelabel{LABEL} ==  \hss \llap{LABEL}}
999 %     fi
1000 %   END
1002 % \endenumerate == \endlist
1003 % \end{oldcomments}
1005 % \begin{macro}{\@enumdepth}
1006 %    \begin{macrocode}
1007 \newcount\@enumdepth \@enumdepth = 0
1008 %    \end{macrocode}
1009 % \end{macro}
1011 % \begin{macro}{\c@enumi}
1012 % \begin{macro}{\c@enumii}
1013 % \begin{macro}{\c@enumii}
1014 % \begin{macro}{\c@enumiv}
1015 %    \begin{macrocode}
1016 \@definecounter{enumi}
1017 \@definecounter{enumii}
1018 \@definecounter{enumiii}
1019 \@definecounter{enumiv}
1020 %    \end{macrocode}
1021 % \end{macro}
1022 % \end{macro}
1023 % \end{macro}
1024 % \end{macro}
1026 % \begin{environment}{enumerate}
1027 % \changes{v1.0g}{1995/05/17}{Use \cs{thr@@} and remove surplus braces}
1028 %    \begin{macrocode}
1029 \def\enumerate{%
1030   \ifnum \@enumdepth >\thr@@\@toodeep\else
1031     \advance\@enumdepth\@ne
1032     \edef\@enumctr{enum\romannumeral\the\@enumdepth}%
1033 %    \end{macrocode}
1035 % \changes{v1.0j}{1995/07/09}{Use \cs{expandafter}}
1036 %    \begin{macrocode}
1037       \expandafter
1038       \list
1039         \csname label\@enumctr\endcsname
1040         {\usecounter\@enumctr\def\makelabel##1{\hss\llap{##1}}}%
1041   \fi}
1042 %    \end{macrocode}
1044 %    \begin{macrocode}
1045 \let\endenumerate =\endlist
1046 %    \end{macrocode}
1047 % \end{environment}
1050 % \begin{oldcomments}
1051 %  \itemize ==
1052 %    BEGIN
1053 %      if \@itemdepth > 3
1054 %        then  errormessage: 'Too deeply nested'.
1055 %        else \@itemdepth :=L \@itemdepth + 1
1056 %             \@itemitem  == eval(labelitem\romannumeral\the\@itemdepth)
1057 %             \list{\@nameuse{\@itemitem}}
1058 %                   {\makelabel{LABEL} ==  \hss \llap{LABEL}}
1059 %      fi
1060 %    END
1062 %  \enditemize ==  \endlist
1064 % \end{oldcomments}
1066 % \begin{macro}{\@itemdepth}
1067 %    \begin{macrocode}
1068 \newcount\@itemdepth \@itemdepth = 0
1069 %    \end{macrocode}
1070 % \end{macro}
1072 % \begin{environment}{itemize}
1073 % \changes{v1.0g}{1995/05/17}{Use \cs{thr@@}}
1074 %    \begin{macrocode}
1075 \def\itemize{%
1076   \ifnum \@itemdepth >\thr@@\@toodeep\else
1077     \advance\@itemdepth\@ne
1078     \edef\@itemitem{labelitem\romannumeral\the\@itemdepth}%
1079 %    \end{macrocode}
1081 % \changes{v1.0j}{1995/07/09}{Use \cs{expandafter}}
1082 %    \begin{macrocode}
1083     \expandafter
1084     \list
1085       \csname\@itemitem\endcsname
1086       {\def\makelabel##1{\hss\llap{##1}}}%
1087   \fi}
1088 %    \end{macrocode}
1090 %    \begin{macrocode}
1091 \let\enditemize =\endlist
1092 %</2ekernel>
1093 %    \end{macrocode}
1094 % \end{environment}
1096 % \Finale