PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : \frontmatter bei Dipl.Arbeit



olinkala
11-09-2008, 22:14
Hallo,
fuer das `Deckblatt' meiner Diplomarbeit brauche ich ein wenig Nachhilfe:
Es muss darauf stehen in folgender Reihenfolge:


\frontmatter

Uni
Fakultaet
Department

Titel
Autor

Supervisors

\maketitle

Die einzigen Latex-befehle die bislang fehlerfrei funktionierten waren
\title
\author
\date

Oberhalb von \title konnte ich nichts einfuegen, auch \titlehead oder \institute funktionierten nicht.

Wer kann bitte helfen? Welche Latex-befehle gibt es hierfuer, und welche packages muss ich ggf. installieren?
DANKE!

voss
11-09-2008, 22:28
fuer das `Deckblatt' meiner Diplomarbeit brauche ich ein wenig Nachhilfe:


http://userpage.fu-berlin.de/~latex/SS08/uebungen/dok5.tex
http://userpage.fu-berlin.de/~latex/SS08/uebungen/dok5.pdf

Herbert

olinkala
12-09-2008, 10:41
Hallo,
ich schaffe es irgendwie nicht die titlepage-Umgebung in der Fronmatter sinnvoll zu verwenden, es kommt wie ich es drehe und wende ein stilistisches Kauderwelsch (siehe angehaengtes foto) dabei heraus:



\begin{document}

\frontmatter

\begin{titlepage}

\title{Mein Titel}

\author{Ich}
\date{`M\'emoire de Licence'
\linebreak
\linebreak
\textsc{Universit\'e de Gen\`eve}\\
\textit{D\'epartement Linguistique-Informatique}
}
\begin{center}
\textsc{Supervision}:\\
Dr. Pups \\
Dr. Pieps\\
\textit{Universit\'e de Gen\`eve, Switzerland.}
\vspace{\baselineskip}

\textsc{External Supervision}:\\
Dr. Miez\\
\textit{Massachusetts Institute of Technology, Cambridge, USA.}
\end{center}
\end{titlepage}




Wer weiss was?
Danke vielmals fuer Eure Hilfe!

GilbertusAlbans
12-09-2008, 11:02
Hallo,
das liegt daran, dass die Befehle \author , \title usw. nichts in der titlepage-Umgebung zu suchen haben. Schau mal in dieses Codebeispiel:

%
% Diplomarbeit mit LaTeX
% ================================================== =========================
% This is part of the book "Diplomarbeit mit LaTeX".
% Copyright (c) 2002-2005 Tobias Erbsland, Andreas Nitsch
% See the file diplomarbeit_mit_latex.tex for copying conditions.
%

\begin{titlepage}
\vspace*{7cm}
\begin{center}
\Huge
Diplomarbeit mit {\rmfamily\LaTeX}\\
\vspace{1cm}
\large
Version 1.11 \\
\vspace{2cm}
Tobias Erbsland <te@profzone.ch>\\
Andreas Nitsch <akki@akki-n.de>\\
\end{center}
\normalsize
\vfill
Copyright (c) 2002--2005 Tobias Erbsland, Andreas Nitsch

Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2
or any later version published by the Free Software Foundation;
with the Invariant Sections being just \enquote{GNU Free Documentation License},
no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled \enquote{GNU
Free Documentation License}.

\end{titlepage}




Also kurzgesagt : \author und \title entfernen und den Text der Titelseite selber formatieren.

Mfg Gilbertus