repo.or.cz
/
latex2e.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move a tag
[latex2e.git]
/
latex2e-20160201
/
required
/
tools
/
testfiles
/
tlb4422.lvt
blob
7b179926e8f3427585c22b78f5c4f23339f55b62
1
% Test file for wrongly having \vspace removed at column end
2
%
3
4
\documentclass{article}
5
6
\input{test2e}
7
\tracingonline=1
8
\tracingpages=1
9
10
\usepackage{multicol}
11
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
24
}
25
26
\begin{document}
27
28
\START
29
30
\begin{multicols}{2}
31
\foo{1cm}
32
\foo{1cm}
33
\foo{2cm}
34
\foo{1cm}
35
\end{multicols}
36
37
\end{document}