General ⇒ A customized title page with the article class
-
- Posts: 22
- Joined: Fri May 18, 2007 6:48 pm
A customized title page with the article class
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- pumpkinegan
- Posts: 91
- Joined: Thu May 03, 2007 10:29 pm
A customized title page with the article class
Code: Select all
\documentclass[12pt,a4paper,titlepage]{article}
\begin{document}
\begin{titlepage}
\vspace*{3cm}
\begin{center}
\Huge {Title of report}
\end{center}
\vspace{2cm}
\begin{center}
\Large {Firstname Surname} \\[3pt]
\textit{Affiliation} \\
\textit{Address} \\ [1cm]
\today
\end{center}
\end{titlepage}
\clearpage
\section{First section}
\end{document}
Patrick.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
A customized title page with the article class
Code: Select all
\documentclass[12pt,a4paper,titlepage]{article}
…
\begin{document}
\begin{titlepage}
\centering
…
\end{titlepage}
…
\end{document}
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Help with title page
B.A.
-
- Posts: 22
- Joined: Fri May 18, 2007 6:48 pm
Re: Help with title page
balfonsi, where can I get this titling package and how do I use it?
Thanks everyone
Re: Help with title page
http://www.tex.ac.uk/tex-archive/help/C ... logue.html
Best regards,
B.A