如何将 \IEEEkeyword 中的破折号更改为:

如何将 \IEEEkeyword 中的破折号更改为:

如何将 IEEEtran 类中的“Index term_”内的文本更改为“Index term:”?

答案1

我建议使用包etoolboxxpatch修改 IEEEtran 类的代码。下面\documentclass{IEEEtran}添加以下行

\usepackage{etoolbox}
\patchcmd\IEEEkeywords{---}{: }{}{}

或者,

\usepackage{xpatch}
\xpatchcmd\IEEEkeywords{---}{: }{}{}

(在这种情况下,两种变体的作用相同。)

在此处输入图片描述

\documentclass{IEEEtran}
\usepackage{etoolbox}
\patchcmd\IEEEkeywords{---}{: }{}{}
\begin{document}
\begin{IEEEkeywords}
  Keyword1, Keyword2, Keyword3
\end{IEEEkeywords}
\end{document}

相关内容