Page LayoutFootnote Befor Affiliation in Two Column

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
Saed Daoud
Posts: 14
Joined: Thu Jun 06, 2013 4:24 pm

Footnote Befor Affiliation in Two Column

Post by Saed Daoud »

Hello All,

In a two-column paper, I need to write something before the authors' affiliations at the bottom of the page. What should I do to the following code to realize this:

Code: Select all

\documentclass[twoside,twocolumn]{IEEEtran}
\begin{document}
\thispagestyle{empty}
\title{Title}
\author{Author I\thanks{Details of author I} and 
Author II\thanks{Details of author II}}
\maketitle
\end{document}
Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
ghuczek
Posts: 23
Joined: Sun Dec 23, 2012 8:09 pm

Re: Footnote Befor Affiliation in Two Column

Post by ghuczek »

Here is a very quick fix below:
Last edited by ghuczek on Sat Feb 28, 2015 11:26 pm, edited 1 time in total.
ghuczek
Posts: 23
Joined: Sun Dec 23, 2012 8:09 pm

Footnote Befor Affiliation in Two Column

Post by ghuczek »

Code: Select all

\documentclass[twoside,twocolumn]{IEEEtran}
\begin{document}
\thispagestyle{empty}
\title{Title}
\author{Author I\thanks{Insertion}\thanks{Details of author I} and 
Author II\thanks{Details of author II}}
\maketitle
\end{document}
Saed Daoud
Posts: 14
Joined: Thu Jun 06, 2013 4:24 pm

Footnote Befor Affiliation in Two Column

Post by Saed Daoud »

ghuczek wrote:

Code: Select all

\documentclass[twoside,twocolumn]{IEEEtran}
\begin{document}
\thispagestyle{empty}
\title{Title}
\author{Author I\thanks{Insertion}\thanks{Details of author I} and 
Author II\thanks{Details of author II}}
\maketitle
\end{document}
It worked. Thanks a lot.
Post Reply