Page Layout ⇒ How can I have only the title on the first page of my paper?
How can I have only the title on the first page of my paper?
I am writing a paper using the IEEEtran document class.
However, I want the title of my paper to be on a separate page and not with the rest of the paper.
Is there an easy way to do that? I am new to LaTex and any help would be much appreciated.
Many thanks in advance.
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
How can I have only the title on the first page of my paper?
I suggest you use the titlepage environment, that allows you to customize your first page according to your needs:
Code: Select all
\begin{titlepage}
your text here
\end{titlepage}
Hope this helps you.
Lucia
Re: How can I have only the title on the first page of my paper?
localghost, thanks for pointing out my mistake. Always learning...
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How can I have only the title on the first page of my paper?
In the meantime I deleted my post you are referring to. I loaded the class file into Kile and searched for "titlepage". And indeed it seems to provide this environment. But it is not mentioned in the manual. So if you worked out an example, don't hesitate to introduce it.Lucia wrote:[...] localghost, thanks for pointing out my mistake. Always learning...
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: How can I have only the title on the first page of my paper?
You've been really helpful.
How can I have only the title on the first page of my paper?
My code is this (very simple):
Code: Select all
\documentclass{IEEEtran}
\begin{document}
\begin{titlepage}
My name is Lucia.
\today
\hrule
\end{titlepage}
\end{document}