如何将 IEEEtran 类中的“Index term_”内的文本更改为“Index term:”?
答案1
我建议使用包etoolbox
或xpatch
修改 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}