Page Layout ⇒ vertical space after author affiliation in IEEEtran
vertical space after author affiliation in IEEEtran
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
Thanks
NEW: TikZ book now 40% off at Amazon.com for a short time.
vertical space after author affiliation in IEEEtran
Hi,
you could use something like
right before the beginning of the text. Of course, change the value of the argument according to your needs.
you could use something like
Code: Select all
\vspace*{-1cm}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: vertical space after author affiliation in IEEEtran
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?
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?
Re: vertical space after author affiliation in IEEEtran
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,...
vertical space after author affiliation in IEEEtran
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}
vertical space after author affiliation in IEEEtran
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,...
Re: vertical space after author affiliation in IEEEtran
Thank you. It worked.