Move a tag
[latex2e.git] / latex2e-20160201 / base / testfiles / tlb0105.lvt
blobb18a2c3bcb88990e1edd8e1de9137802065f50b6
1 % \iffalse meta-comment
3 % Copyright (C) 1994 by Rainer Schoepf.
4 % All rights reserved.
5
6 % This file is part of the validate package.
7
8 % IMPORTANT NOTICE:
9
10 % You are not allowed to change this file.  In case of error
11 % write to the email address mentioned in the file readme.val.
12
13 % \fi
15 % Test file for LaTeX2e bug report #105.
16 % \par does not work in \whiledo.
18 \documentclass{article}
20 \usepackage{ifthen}
22 % Input the test macros for LaTeX2e
23 \input{test2e}
25 % Everything before this is ignored by the test system.
26 \START
28 \AUTHOR{Christian Cenker}
30 % Declare the format used on the original run, as printed by
31 % LaTeX.
33 \FORMAT{LaTeX2e<1993/12/24>}
35 % Letter document class for this test.
37 \CLASS{article}
39 \PACKAGE{ifthen}
41 \OMIT
43 \newcounter{xcounter}
44 \setcounter{xcounter}{1}
46 \begin{document}
48 \TIMO
50 \whiledo{\value{xcounter} < 3}{%
51 Run number \thexcounter\\
52 First paragraph with some nasty text.
54 Second parpagraph
56 % increase xcounter
57 \stepcounter{xcounter}
58 } % end of whiledo
60 \end{document}