Move a tag
[latex2e.git] / latex2e-20160201 / required / tools / testfiles / tlb4422.lvt
blob7b179926e8f3427585c22b78f5c4f23339f55b62
1 % Test file for wrongly having \vspace removed at column end
4 \documentclass{article}
6 \input{test2e}
7 \tracingonline=1
8 \tracingpages=1
10 \usepackage{multicol}
12 \newcommand{\foo}[1]{%
13     \par
14     \noindent
15     \begin{minipage}[t]{\linewidth}
16         top
17         \par
18         \vskip #1
19         bottom\hrulefill
20     \end{minipage}
21     \par
22     \vskip \baselineskip % simulate the use of \vspace here
23     \vskip 0pt
26 \begin{document}
28 \START
30 \begin{multicols}{2}
31     \foo{1cm}
32     \foo{1cm}
33     \foo{2cm}
34     \foo{1cm}
35 \end{multicols}
37 \end{document}