Page LayoutHow can I have only the title on the first page of my paper?

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
apleto
Posts: 6
Joined: Wed Feb 04, 2009 10:24 pm

How can I have only the title on the first page of my paper?

Post by apleto »

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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Lucia
Posts: 36
Joined: Wed Dec 31, 2008 9:03 pm

How can I have only the title on the first page of my paper?

Post by Lucia »

Hello, apleto.

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}
There are several manuals worth reading. To start, I suggest this document and this list of other guides.

Hope this helps you.
Lucia
Lucia
Posts: 36
Joined: Wed Dec 31, 2008 9:03 pm

Re: How can I have only the title on the first page of my paper?

Post by Lucia »

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...
User avatar
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?

Post by localghost »

Lucia wrote:[...] localghost, thanks for pointing out my mistake. Always learning...
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.
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
apleto
Posts: 6
Joined: Wed Feb 04, 2009 10:24 pm

Re: How can I have only the title on the first page of my paper?

Post by apleto »

Thank you so much for your replies!

You've been really helpful.
Lucia
Posts: 36
Joined: Wed Dec 31, 2008 9:03 pm

How can I have only the title on the first page of my paper?

Post by Lucia »

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):

Code: Select all

\documentclass{IEEEtran}
\begin{document}
\begin{titlepage}
My name is Lucia.

\today

\hrule 
\end{titlepage}
\end{document}
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.
Post Reply