blob: c1c104fb079cb8a16afcdabe1badee35c776fd2a (
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
|
%% fltfltdk.tex 2005/04/17
% like deml3541.tex, but tests usage of tameflts.sty with
% Mats Dahlgren's floatflt.sty which is available from
% tex-archive/macros/latex/contrib/floatflt (through
% .dtx and .ins).
\documentclass[12pt]{article}
\usepackage{floatflt}
% \usepackage{tameflts}
\newcounter{xxx}
\usepackage{ifthen}
\nofiles
\begin{document}
Test a footnote\footnote{%
\whiledo{\value{xxx}<46}{%
\stepcounter{xxx}
This is just test line \thexxx. \par
}%
} and then a ``floating figure'':
\begin{floatingfigure}{.4\linewidth}
\vspace*{3\baselineskip}
\textsf{Space for notes}
\end{floatingfigure}
\setcounter{xxx}{0}%
\whiledo{\value{xxx}<39}{%
\stepcounter{xxx}
Testtext.
}%
\end{document}
|