¿Cómo poner el nombre de la revista en la parte superior en IEEEtran?

¿Cómo poner el nombre de la revista en la parte superior en IEEEtran?

Soy nuevo en látex. En la parte superior de mi artículo, quiero poner el nombre de la conferencia/revista. No sé cómo debería llamarlo... ya lo he intentado usar, headerpero el encabezado es algo diferente.

quiero traer la línea superior (“DIARIO DE ARCHIVOS DE CLASES DE LÁTEX, VOL. 11, N° 4, DICIEMBRE 2012”) como se muestra en la imagen siguiente: imagen.

Actualmente estoy usando el siguiente 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}

Respuesta1

Necesitas usar

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

Un ejemplo completo (haga lo mismo para sus preguntas 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}

ingrese la descripción de la imagen aquí

información relacionada