Como colocar o nome do periódico no topo do IEEEtran?

Como colocar o nome do periódico no topo do IEEEtran?

Eu sou novo no látex. No início do meu artigo, quero trazer o nome da conferência/revista. Não sei como devo chamá-lo.. já tentei usar, headermas o cabeçalho é algo diferente.

eu quero trazer a linha superior ("JOURNAL OF LATEX CLASS FILES, VOL. 11, NO. 4, DEZEMBRO DE 2012") conforme mostrado na imagem abaixo: imagem.

Atualmente estou usando o seguinte código:

\documentclass[12pt,conference]{IEEEtran}
\usepackage{lipsum}
\usepackage{fancyhdr} %used for header
\pagestyle{fancy} %also used for header
\usepackage{cite} 
\usepackage[cmex10]{amsmath}
\usepackage{graphicx}
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage{url}
\usepackage{url}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage[all,graph]{xy}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{array}
\usepackage{comment}

 \title{Affect of Motion Direction}
\author
{\IEEEauthorblockN{SKM}
\IEEEauthorblockA{Faculty of Electrical Engineering\\
University of XYZ\\
[email protected]}
}
\markboth{IEEE Transactions on \LaTeX}{SKM: My IEEE article}    

\begin{document}
\maketitle

\input{abstract}

\begin{keywords}
Attention shift, Eye movement, Spatial attention.
\end{keywords}

\input{introduction}
\section{REVIEW OF EXISTING MATERIAL}
\input{exp_method}    
\section{EXPERIMENTAL RESULTS}
\section{GENERAL DISCUSSION}

\bibliography{refer.bib}
\bibliographystyle{plain}

\end{document}

Responder1

Você precisa usar

\markboth{IEEE Transactions on \LaTeX}{Skm: My article name}

Um exemplo completo (faça o mesmo para suas perguntas futuras)

\documentclass{IEEEtran}
\usepackage{lipsum}
\usepackage{cite,graphicx,amssymb,amsfonts,booktabs,multirow,array,comment}
\usepackage[cmex10]{amsmath}
\usepackage[caption=false,font=footnotesize]{subfig}
\usepackage[all,graph]{xy}
\title{Affect of Motion Direction}
\author
{\IEEEauthorblockN{SKM}
\IEEEauthorblockA{Faculty of Electrical Engineering\\
University of XYZ\\
[email protected]}
}
\markboth{IEEE Transactions on \LaTeX}{SKM: My IEEE article}

\begin{document}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\lipsum[1-10]
\end{document}

insira a descrição da imagem aqui

informação relacionada