0

In the IEEEtran class, how can I achieve the "small caps" font effect used for e.g. stating the names of IEEE societies and publications, and the section titles (see example below)?

Thanks and regards, Jorge.

P.S. The class can be found here.

Example font I'd like to achieve: enter image description here

Example code:

\documentclass[journal]{IEEEtran}
\begin{document}

\section{This is a dummy section}
% Some sample text I'd like to put in small-caps font:
How to, for example, put \emph{this text} in the same font as the section title?

\end{document} 

Output of example code: enter image description here

dontpanic
  • 809

1 Answers1

1

Turns out all you need is \textsc{} for this, as moewe pointed out.

Solution:

\documentclass[journal]{IEEEtran}

\begin{document}

\section{This is a dummy section}

% Some sample text I'd like to put in small-caps font:
%How to, for example, put \emph{This Text} in the same font as the section title?
How to, for example, put \textsc{This Text} in the same font as the section title?

\end{document} 

Output: enter image description here

dontpanic
  • 809