Enable building TDS zip files
[latex2e.git] / base / testfiles / tlb2815.lvt
blob0f1975c021437aff0a0321dce47cdaf9d875f152
1 % Test file for LaTeX2e bug report 2815.
2 % Caption outside float should produce error.
4 % Input the test macros for LaTeX2e
5 \input{test2e}
7 \documentclass[twocolumn]{article}
9 \AUTHOR{Chris Rowley}
11 % Declare the format used on the original run, as printed by
12 % LaTeX.
14 \FORMAT{LaTeX2e<1999/06/01>}
16  \makeatletter
17  \def\caption{%
18    \ifx\@captype\@undefined
19      \@latex@error{\noexpand\caption outside float}\@ehd
20      \expandafter\@gobble
21    \else
22      \refstepcounter\@captype
23      \expandafter\@firstofone
24    \fi
25    {\@dblarg{\@caption\@captype}}%
26
28 \begin{document}
30 \CLASS(article}
32  \START
33   
34   \caption{xx}
36  text
38  \begin{figure}
39  a
40  \caption{a}
41  \end{figure}
43  text
45  \begin{figure*}
46  b
47  \caption{b}
48  \end{figure*}
50   \caption{xx}
51   
52  \END
53   
54 \end{document}