PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Help with title page



sombrancelha
18-05-2007, 19:16
Sorry for posting in english, but I couldn't find any english related sites.

I'm new to LaTeX and I'm about to finish my first work with it.

However, I need some help with the title page (I'm not sure about the name, but it's the first page, with title, your name, etc.). I'm using the article documentclass, but I'd like a title page similar to report's title page. I'd also like to add my teacher's name, the subject's name and my university number. How can I set LaTeX to do that?

Thanks

bischi
18-05-2007, 20:07
\begin{titlepage}
write whatever you want...\\[4em]
...and just some more...
\end{titlepage}


Best regards, Bischi

localghost
18-05-2007, 20:13
You can activate a titlepage in the article class by adding an option.

\documentclass[12pt,a4paper,titlepage]{article}


\begin{document}
\begin{titlepage}
\centering

\end{titlepage}

\end{document}
As a result you get the titlepage environment, where you can put everything you want. The commands \title, \author, \date and thus \maketitle are not needed anymore.

sombrancelha
18-05-2007, 22:23
Are there commands such as \author and \title but like \teacher or \subject?
thanks for the answer

bischi
19-05-2007, 08:02
Are there commands such as \author and \title but like \teacher or \subject?

No - you are absolutely free, how you want to design your titlepage (sizes, fonts, gaps, graphics,...)

Best regards, Bischi