如何为 IEEEtran 会议格式的附录制作居中标题?

如何为 IEEEtran 会议格式的附录制作居中标题?

如何为 IEEEtran 会议格式的附录制作居中标题?我需要标题具有与默认 IEEEtran 会议双栏格式中出现的标题相同的样式。

先感谢您!

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% Packages of your choice, e.g.:
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{float}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{import}

% other stuff
\PassOptionsToPackage{hyphens}{url}
\usepackage{hyperref}

\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\newcommand{\ts}{\textsuperscript}

\begin{document}

\title{Comparison of Similarity Scoring Algorithms When Applied to the Association for Computing Machinery Dataset}

\author{\IEEEauthorblockN{Name}
\IEEEauthorblockA{\textit{Computer Science Division} \\
\textit{Employer}\\
Location \\
\texttt{email}}
}

\maketitle

% abstract
\begin{abstract}
This is the abstract
\end{abstract}

\begin{IEEEkeywords}
Keywords
\end{IEEEkeywords}

% rest of the document
\section{Introduction}
This is part of the IEEEtran double-column format.

% need a single-column section title that appears in the center of the page for the appendix. 

答案1

我明白了。您可以调用\onecolumnlatex 命令转换为单列格式。然后您可以轻松创建部分并使用该\twocolumn命令恢复为双列格式。

...
\newpage
\onecolumn
\section*{Appendix}
    % appendix stuff
\twocolumn
    % more double column stuff

相关内容