tags:

views:

118

answers:

2

Hi,

I am using IEEETrans.cls to format my paper. Now I need to add the name of the conference at the right hand corner of each page. Please advise me how to do that. Mail me at [email protected]. It is really urgent.

+2  A: 

You can use the fancyhdr package to do that. See this blog post for example. You can add \fancyfoot[R]{Conference name} to the source.

Marc
+2  A: 

I think that the most comprehensive way to format headers and footers is the fancyhdr package.

\usepackage{fancyhdr}
\pagestyle{fancy}
\rhead{THX 1138}

You may need to look up the documentation for getting the rest of the headers and footers like you want.

Svante
I'll just add link to fancyhdr manual: http://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf
Crowley