IEEEtran 章节标题中的正常字体

IEEEtran 章节标题中的正常字体

在使用时IEEEtran,我想强制将章节标题中的字母“f”变小。

\documentclass[journal]{IEEEtran}
\begin{document} 
\section{Real fMRI Data}
\end{document}

但是,IEEEtran默认情况下所有字母都大写,并且每个单词的首字母会稍微高一些。

我试过这个

\section{Real\normalfont{f}MRI Data} 

但之后的所有字母都变小了,这是我不想要的。

有什么帮助吗?

答案1

你的问题的原因是“所有字母都变小了”,因为\normalfont宣言从那时起改变字体。典型的用法是{\normalfont ...}代替\normalfont{...}。无论哪种方式,你最好改变形状手动:

在此处输入图片描述

\documentclass[journal]{IEEEtran}
\begin{document}
\tableofcontents
\section{Real {\upshape f}MRI Data}
\end{document}

答案2

从您希望恢复正常的点发出\scshape命令效果很好。这是在课堂上发出的命令IEEEtrans

\documentclass[journal]{IEEEtran}

\begin{document}

    \tableofcontents
    \section{Real \normalfont{f}\scshape MRI Data}

\end{document}

相关内容