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:

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}


\textsc{foo}should do it. – moewe Oct 25 '18 at 14:32