summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/latex-tipps-und-tricks/formular.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/latex-tipps-und-tricks/formular.tex')
-rw-r--r--Master/texmf-dist/doc/latex/latex-tipps-und-tricks/formular.tex19
1 files changed, 19 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/latex-tipps-und-tricks/formular.tex b/Master/texmf-dist/doc/latex/latex-tipps-und-tricks/formular.tex
new file mode 100644
index 00000000000..444aaee87bb
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/latex-tipps-und-tricks/formular.tex
@@ -0,0 +1,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}