如何在 IEEE 会议模板中插入标题?

如何在 IEEE 会议模板中插入标题?

我必须在标题上添加一个标题,例如:2016 IEEE 第 24 届国际需求工程会议

我已经获得了 IEEEtran V1.8,但无法确定必须为该标头安装哪些使用包。以下是示例: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: [email protected]}}


% 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}

答案1

该解决方案定义了一个自定义元数据命令\titleheader,以规范的方式收集您想要放在标题上方的信息,即

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

然后接下来的 6 行代码负责将该信息插入到正确的位置。

\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

相关内容