Hello,
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.
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?
Hello, apleto.
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
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?
Well, before replying to apleto's question, I produced a small .tex file with that environment, and the output was given without any errors or warnings. So, I assumed he could use that environment to achieve his goals. I'm so sorry if I induced you in error, apleto. The manual does refer the \maketitle command, so I guess you have to use it and make no modifications in your file.
localghost, thanks for pointing out my mistake. Always learning...
localghost, thanks for pointing out my mistake. Always learning...
- localghost
- Site Moderator
- Posts: 9201
- 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...
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Re: How can I have only the title on the first page of my paper?
Thank you so much for your replies!
You've been really helpful.
You've been really helpful.
How can I have only the title on the first page of my paper?
I must say I don't know this class IEEEtrans, but because apleto is new to LaTeX, I decided to help him, just like I would appreciate any help. And because his question seemed simple and something I could answer, I replied.
My code is this (very simple):
Still you are right, localghost. If this is to submit to Institute of Electrical and Electronics Engineers, apleto shouldn't change his paper. But now he knows that the titlepage environment allows us to create pages according to our needs.
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}