summaryrefslogtreecommitdiff
path: root/Master/texmf-doc/doc/german/latex-tipps-und-tricks/formular.tex
blob: 444aaee87bbc42539b6b28e3b3ea10b242877224 (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}