Page Layoutvertical space after author affiliation in IEEEtran

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
aarg_2010
Posts: 4
Joined: Fri Nov 27, 2009 2:55 am

vertical space after author affiliation in IEEEtran

Post by aarg_2010 »

Hi, I am using documentclass as IEEEtran, and there is large white space after the end of author affiliation and the begin of the text. Can any body help me reduce this space?

Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

vertical space after author affiliation in IEEEtran

Post by gmedina »

Hi,

you could use something like

Code: Select all

\vspace*{-1cm}
right before the beginning of the text. Of course, change the value of the argument according to your needs.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
aarg_2010
Posts: 4
Joined: Fri Nov 27, 2009 2:55 am

Re: vertical space after author affiliation in IEEEtran

Post by aarg_2010 »

Thanks!
I tried \vspace*{-1cm} right before abstract and it reduced the space between the left column and the affliation but the space between the right column and the affiliation is the same. Do you have any suggestion?
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Re: vertical space after author affiliation in IEEEtran

Post by gmedina »

Please post some short, complete and compilable version of your document, so we can do some tests.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
aarg_2010
Posts: 4
Joined: Fri Nov 27, 2009 2:55 am

vertical space after author affiliation in IEEEtran

Post by aarg_2010 »

Hi, Here it is. I just filled up the abstract with the words "Left Column", and the Introduction with the word "Introduction" so the problem will be clear.

Code: Select all

\documentclass[10pt,twocolumn]{IEEEtran}

\begin{document}

\title{TITLE}
\author{\authorblockN{Author\\}
\authorblockA{Author Affiliation}}
\maketitle

\vspace*{-1cm}

\begin{abstract}
Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column Left Column
\end{abstract}

\section{Introduction}
Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction
\end{document}
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

vertical space after author affiliation in IEEEtran

Post by gmedina »

Move the \vspace*{-1cm} command to this position:

Code: Select all

\title{TITLE}
\author{\authorblockN{Author\\}
\authorblockA{Author Affiliation}\\\vspace*{-1cm}}
\maketitle
1,1,2,3,5,8,13,21,34,55,89,144,233,...
aarg_2010
Posts: 4
Joined: Fri Nov 27, 2009 2:55 am

Re: vertical space after author affiliation in IEEEtran

Post by aarg_2010 »

Thank you. It worked.
Post Reply