如何使用 \titleformat 将部分字体更改为特定大小?

如何使用 \titleformat 将部分字体更改为特定大小?

我想将部分字体设置为特定的大小和类型。但是使用 \titleformat 只能提供几种标准类型,例如 Large、large...

\titleformat*{\section}{\LARGE\headingfont} 
\titleformat*{\subsection}{\Large\headingfont} 
\titleformat*{\subsubsection}{\large\headingfont} 

我想知道有什么办法可以使用

\fontencoding{OT1}\fontfamily{cmr}\fontseries{m}\fontshape{n}\fontsize{11pt}{11}\selectfont

更改部分字体大小?非常感谢!

答案1

您可以简单地使用命令作为参数\titleformat*

\titleformat*{\section}{\fontencoding{OT1}\fontfamily{cmr}\fontseries{m}%
  \fontshape{n}\fontsize{11pt}{11}\selectfont} 

相关内容