在 IEEEtran 类中,如何实现用于例如说明 IEEE 协会和出版物的名称以及章节标题的“小型大写”字体效果(参见下面的示例)?
谢谢并问候,豪尔赫。
PS 该课程可以找到这里。
示例代码:
\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}
答案1
事实证明\textsc{}
,正如 moewe 指出的那样,您所需要的只是这一点。
解决方案:
\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}