IEEE 论文中有\IEEEkeyword
命令,但在其他语言中另有用途。如何将文本更改为“索引术语”?
答案1
我假设您正在使用该类IEEEtran
。您可以添加\renewcommand\IEEEkeywordsname{Some words}
以将该文本更改为Some words
。
\documentclass{IEEEtran}
\renewcommand\IEEEkeywordsname{Some words}
\begin{document}
\begin{IEEEkeywords}
This, that.
\end{IEEEkeywords}
Text.
\end{document}