首字下沉 \IEEEPARstart:如何避免将字符呈现为大写?

首字下沉 \IEEEPARstart:如何避免将字符呈现为大写?

我使用\IEEEPARstart{}{}命令将论文的第一个字母“首字母大写”。正如IEEEtran LATEX 类文档自动地 :

第一个单词中的其他字母以大写形式呈现。

我不想这样,因为我的第一个单词又大又丑。我希望其余字符都以小写形式呈现。我该怎么做?

答案1

\documentclass{IEEEtran}

\begin{document}
\IEEEPARstart{S}{upercalifragilisticexpialadocious}, 
if you say it loud enough, it's sounding quite atrocious

\bigskip

\IEEEPARstart{S}{\lowercase{upercalifragilisticexpialadocious}},
if you say it loud enough, it's sounding quite atrocious
\end{document}

在此处输入图片描述

或者,你甚至可以这样做:

\IEEEPARstart{S}{}upercalifragilisticexpialadocious,
if you say it loud enough, it's sounding quite atrocious

相关内容