如何在 IEEEtran 中将附录及其名称写在同一行?

如何在 IEEEtran 中将附录及其名称写在同一行?

我想写

附录 A:定理 1 的证明

在 IEEEtran 中,但我得到的是

附录 A
定理 1 的证明

以下是我使用的代码:

\documentclass[10pt, conference, letterpaper]{IEEEtran}

\begin{document}

\title{Title}\maketitle

\begin{appendices}
\section{Proof of Theorem 1}

\end{appendices}

\end{document}

我发现这个答案但它适用于带有章节的报告,而不是 IEEEtran。

答案1

这是默认行为IEEEtran- 在 中的节标题和标题之间添加换行符。快速修复方法是抓住强制换行符 - \\*- 并插入:

在此处输入图片描述

\documentclass[conference]{IEEEtran}

\usepackage{lipsum}

\begin{document}

\title{A title}
\author{An Author}
\maketitle

\begin{appendices}
\section{Proof of Theorem 1}
\lipsum[2]
\newpage

% Grab forced line break - \\* - and replace with :
\renewcommand{\thesectiondis}[2]{\Alph{section}:}

\section{Proof of Theorem 2}
\lipsum[2]
\end{appendices}

\end{document}

相关内容