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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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:
There are several manuals worth reading. To start, I suggest this document and this list of other guides.
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}