PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Unterschiedlicher Abstand bei Unterschriftlinie



chris1234567
20-03-2009, 15:21
Die Abstände des Textes unter den Linien ist unterschiedlich, obwohl gleich programmiert wurde. Hat jemand eine Idee woran das liegen könnte?

Das Beispiel ist compilierbar.


\documentclass[a4paper,12pt]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\begin{document}

\rule{5cm}{0.2pt}\hfill\rule{5cm}{0.2pt}\\
\hspace*{2cm}\tiny Place, Date\hfill \tiny Signature and Stamp Co-operation Supervisor

\vspace{3cm}

\noindent
\Large Suspension of Master Thesis is approved by Head of Study Programme.
\normalsize

\vspace{3cm}

\rule{5cm}{0.2pt}\hfill\rule{5cm}{0.2pt}\\
\hspace*{2cm}\tiny Place, Date\hfill \tiny Signature and Stamp Head of Study Programme
\normalsize
\end{document}

BG
C

voss
20-03-2009, 15:29
Die Abstände des Textes unter den Linien ist unterschiedlich, obwohl gleich programmiert wurde. Hat jemand eine Idee woran das liegen könnte?

Das Beispiel ist compilierbar.


\documentclass[a4paper,12pt]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\begin{document}

\rule{5cm}{0.2pt}\hfill\rule{5cm}{0.2pt}\\
\hspace*{2cm}\tiny Place, Date\hfill \tiny Signature and Stamp Co-operation Supervisor
\par

\vspace{3cm}

\noindent
\Large Suspension of Master Thesis is approved by Head of Study Programme.
\normalsize

\vspace{3cm}

\rule{5cm}{0.2pt}\hfill\rule{5cm}{0.2pt}\\
\hspace*{2cm}\tiny Place, Date\hfill \tiny Signature and Stamp Head of Study Programme
\par
\normalsize
\end{document}


Jetzt wurde gleiches Verhalten programmiert ...

Herbert