diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/tamefloats/fltfltdk.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/tamefloats/fltfltdk.tex | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tamefloats/fltfltdk.tex b/Master/texmf-dist/doc/latex/tamefloats/fltfltdk.tex new file mode 100644 index 00000000000..c1c104fb079 --- /dev/null +++ b/Master/texmf-dist/doc/latex/tamefloats/fltfltdk.tex @@ -0,0 +1,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} + + |