Move a tag
[latex2e.git] / latex2e-20160201 / base / testfiles / tlb3073.lvt
blob66ad1e7238e192e01e394a66767f17cedbf5f4aa
1 \iffalse
3 Subject:
4 latex/3073: \addpenalty ruins flush-bottom
6 A page break at an \addpenalty after \vspace does *not*
7 give a flush-bottom page.  (The intent of \addpenalty is
8 apparently just to preserve the flush bottom by putting
9 the breakpoint `above' the skip.)
11 \prevdepth is taken into account in order to get flush bottom pages
12 but it should not be added to the final skip seen by TeX plus we must
13 avoid senile values of \prevdepth due to \nointerlineskip.
15 Fix provided by Donald Arseneau, test file by Morten Hoegholm.
17 \fi
19 \input{test2e}
20 \documentclass[twocolumn]{article}
21 \START
22 \AUTHOR{Morten H\o gholm}
23 %\PACKAGE{fixltx2e}
24 \OMIT
25 \setlength\textheight{20\baselineskip}
26 \addtolength\textheight{\topskip}
27 \setlength\parskip{1\parskip}
28 \usepackage{fixltx2e}
30 \sbox0{$\bullet$}% for clean tracingpages output
32 \def\sampletext{Here is some text which will demonstrate the problem
33  in \LaTeX. } 
35 \begin{document} 
36 \TIMO
38 \tracingpages=1
40 Text.
42 \vspace*{19\baselineskip}% \vfill doesn't work the way we want
44 Some text, with a comma.
47 \newpage
48 \begin{enumerate}
49         \item \sampletext \sampletext
50         \item \sampletext \sampletext
51         \item \sampletext \sampletext
52         \item \sampletext
53         \item \sampletext
54         \item \sampletext
55 \end{enumerate}
57 \section{A section}
59 \vspace*{\fill}
60 \begin{equation}
61         abc\int
62 \end{equation}
64 \addpenalty{-100}
65 \addpenalty{-100}
66 \addpenalty{-100}
67 \addpenalty{-100}
68 \addpenalty{-100}
69 \addpenalty{-10000}
71 text.
72 \begin{equation}
73         abc\rule[-1.5\maxdepth]{1mm}{1mm}
74 \end{equation}
75 % \prevdepth>\maxdepth
77 \section{Another section}
78 text.
80 \begin{equation}
81         abc\rule[-.5\maxdepth]{1mm}{1mm}
82 \end{equation}
83 % \prevdepth<\maxdepth 
85 \section{Another section}
86 text.
88 \begin{equation}
89         abc
90 \end{equation}
92 % \prevdepth=-1000pt and \lastskip > 0pt
93 \nointerlineskip
95 \section{Another section}
96 \sampletext \sampletext
98 \end{document}