[Tex/LaTex] How to insert a header in the IEEE Conference template

formattingheader-footerieeetrantitles

I have to include a header over my title like: 2016 IEEE 24th International Requirements Engineering Conference

I have got the IEEEtran V1.8 but can't figure out which usepackages I have to install for this header. Here is an example: first_header

\documentclass[conference]{IEEEtran}
\hyphenation{op-tical net-works semi-conduc-tor}
%\usepackage{fancyhdr}

%################DOCUMENT STARTS HERE######################
\begin{document}
%\fancyhdr[C]{2016 IEEE 24th International Requirements Engineering Conference} %zentrierte Kopfzeile
\title{My Paper Title}


% author names and affiliations
% use a multiple column layout for up to three different
% affiliations
\author{\IEEEauthorblockN{M.Sc. John Dow}
\IEEEauthorblockA{Department of Economic Computer Science\\Economic Computer Science\\
University of California\\
xxx\\
Email: xxxyyy@university.com}}


% use for special paper notices
%\IEEEspecialpapernotice{(Invited Paper)}




% make the title area
\maketitle %RE 2016, Lisbon, Portugal \\ Research Paper

\begin{abstract}
Authoritatively matrix fully tested channels with market-driven portals. Energistically synthesize leading-edge data whereas distributed sources. Efficiently incentivize accurate resources and customized ROI. 

Continually procrastinate pandemic total linkage before bricks-and-clicks e-markets. Distinctively deploy cross-platform solutions for market-driven innovation. Appropriately iterate prospective solutions via competitive data. Text \cite{rupp2014}
\end{abstract}
\IEEEpeerreviewmaketitle



\section{Introduction}
% no \IEEEPARstart
This demo file is intended to serve as a ``starter file''
for IEEE conference papers produced under \LaTeX\ using
IEEEtran.cls version 1.8 and later.
% You must have at least 2 lines in the paragraph with the drop letter
% (should never be an issue)
I wish you the best of success.

\hfill mds
 
\hfill December 27, 2012

\subsection{Subsection Heading Here}
Subsection text here.


\subsubsection{Subsubsection Heading Here}
Subsubsection text here.


\section{Conclusion}
The conclusion goes here.


\bibliographystyle{IEEEtran}

\bibliography{Dissertation}


\end{document}

Best Answer

This solution defines a custom meta-data command \titleheader that collects the information you want to put above the title in the canonical way, i.e.

\newcommand*\titleheader[1]{\gdef\@titleheader{#1}}

Then next 6 lines of code take care of inserting this information at the right spot.

\documentclass{IEEEtran}

\makeatletter
\newcommand*\titleheader[1]{\gdef\@titleheader{#1}}
\AtBeginDocument{%
  \let\st@red@title\@title
  \def\@title{%
    \bgroup\normalfont\large\centering\@titleheader\par\egroup
    \vskip1.5em\st@red@title}
}
\makeatother

\title{A Serious Game for Eliciting Social Engineering Security Requirements}
\titleheader{2016 IEEE 24th International Requirements Engineering Conference}
\author{maxmin}

\begin{document}
\maketitle
\end{document}

output