blob: adcef6ba5147ab95bb3eb39f1727fbc507343664 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
% $Id: title-2col.tex,v 1.1 1995/08/04 00:08:01 schrod Exp $
%----------------------------------------------------------------------
%
% Test for footnpag with title matter in twocolumn mode.
%
% [LaTeX]
% This was an error report by Frank Mittelbach.
% Repaired with revision 2.4.
\documentclass[twocolumn]{article}
\usepackage{footnpag}
\begin{document}
\title{Footnpag and Thanks test}
\author{Joachim Schrod%
\thanks{Affilation}
\and
B. Luser%
\thanks{Who's that?}
}
\maketitle
\begin{abstract}
Abstracts with footnotes\footnote{as such} are garbage.
\end{abstract}
\section{Section}
Text text text.%
\footnote{first on first column}
Text text text.%
\footnote{second on first column}
\newpage
Text text text.%
\footnote{first on second column}
Text text text.%
\footnote{second on 2nd column}
\clearpage
Text text text.%
\footnote{first on first column}
Text text text.%
\footnote{second on first column}
\newpage
Text text text.%
\footnote{first on second column}
Text text text.%
\footnote{second on 2nd column}
\end{document}
|