13

IEEE papers have \IEEEkeyword command, but for other use in other languages. How change the text to "Index terms" ?

1 Answers1

19

I assume you're using the IEEEtran class. You can add \renewcommand\IEEEkeywordsname{Some words} to change that text to Some words.

enter image description here

\documentclass{IEEEtran}
\renewcommand\IEEEkeywordsname{Some words}
\begin{document}
\begin{IEEEkeywords}
This, that.
\end{IEEEkeywords}
Text.
\end{document}
Torbjørn T.
  • 206,688
  • 3
    Also necessary when your conference offers both Word and LaTeX templates, and the Word one says "keywords" rather than "index terms", and the reviewers insist that that is the only correct thing to say..... ;-) – Flyto Jun 24 '15 at 09:33