Move a tag
[latex2e.git] / latex2e-20160201 / required / tools / testfiles / tlb-tabularx-002.lvt
blobc5504589712ffaa4bd1bcda3f48518de533f8675
1 % Avoid exceeding maxdimen during trials
2 % Don't error on missing \endtabularx (2.09  made this an error)
4 \input{test2e}
6 \documentclass{article}
8 \usepackage{tabularx}
11 \newenvironment{foo1}
12 {\tabularx{\linewidth}{|X|}}
13 {\par 1hello}% no \tabularx
16 \newenvironment{foo2}
17 {\tabularx{\linewidth}{|X|}}
18 {\\\hline\endtabularx\par 2hello}% \endtabularx in the middle
20 \newenvironment{foo3}
21 {\tabularx{\linewidth}{|X|}}
22 {\endtabularx\par 3hello}% \endtabularx at the start
25 \newenvironment{foo4}
26 {\tabularx{\linewidth}{|X|}}
27 {\\\hline\endtabularx\par 4hello}% \endtabularx iat the end
29 \begin{document}
30 \centering
31 \START
32 \PACKAGE{tabularx}
34 \begin{foo1}a\end{foo1}
36 \begin{foo2}a\end{foo2}
38 \begin{foo3}a\end{foo3}
40 \begin{foo4}a\end{foo4}
42 \end{document}