在 Section 中写入小写(IEEEtran 类)

在 Section 中写入小写(IEEEtran 类)

我想在某个部分中输入小写字母,我尝试过使用,\MakeLowercase但不起作用。以下是我尝试的方法:

\section{Experiment I: T\MakeLowercase{he effect of changing the distance}}

我正在使用IEEEtran文檔類別。

答案1

IEEEtran\section使用 以正常(或标准 LaTeX2e)方式设置标题\@startsection。各部分的字体选择为\normalfont\normalsize\centering\scshape

\def\section{%
  \@startsection{section}% type
    {1}% level
    {\z@}% indent
    {1.5ex plus 1.5ex minus 0.5ex}% top separation before heading
    {1sp}% bottom separation after heading
    {\normalfont\normalsize\centering\scshape}}% font

\scshape这是您要解决的问题。因此,您需要做的就是\normalfont在适当的位置插入:

在此处输入图片描述

\documentclass{IEEEtran}% http://ctan.org/pkg/IEEEtran
\begin{document}
\section{Experiment I: \normalfont The effect of changing the distance}
\end{document}

请注意,他们选择自己的定义是有目的的。因此,改变它可能不是一个好主意。

相关内容