summaryrefslogtreecommitdiff
path: root/info/examples/ltt/formular.tex
blob: 3973c5c52794d796c4171c12dc037fd9d0ab32f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
\documentclass[a4paper,12pt]{report}
\usepackage{ifthen}
\begin{document}

\newsavebox{\kasten}
\sbox{\kasten}{\fbox{\rule{0mm}{1em}\hspace{1ex}}}
\newcounter{i}
\newcommand{\zeile}[1]
{\setcounter{i}{0}
 \whiledo{\value{i}<#1}
   {\usebox{\kasten}\stepcounter{i}}}

\centerline{\underline{\bf Anmeldung}}
\vspace*{1em}\noindent
\makebox[2cm][l]{Name} \zeile{15}\\[.5ex]
\makebox[2cm][l]{Anschrift} \zeile{20}\\[.5ex]
\makebox[2cm][l]{Telefon} \zeile{15}

\end{document}