怎样才能使字母/数字显得更大?

怎样才能使字母/数字显得更大?

我们可以在命令中改变一些东西吗

\titleformat{\section}{\bf}{\thesection}{1em}{}

以便某个部分的字母和数字看起来稍微大一点?

答案1

语法\titleformat是(手册第 4 页titlesec

\titleformat{<command>}[<shape>]{<format>}{<label>}{<sep>}{<before-code>}[<after-code>]

所有这些的描述都可以在手册中找到。第二个强制参数是你感兴趣的。这里使用的格式化命令将应用于节号和标题。因此你可以写

\titleformat{\section}{\LARGE\bfseries}{\thesection}{1em}{}

\bf请注意,不应使用像两个字母的命令。这里\LARGE可以根据需要进行更改。默认值为

\titleformat{\section}
          {\normalfont\Large\bfseries}{\thesection}{1em}{}

平均能量损失

\documentclass{Article}
\usepackage{titlesec}
\titleformat{\section}{\LARGE\bfseries}{\thesection}{1em}{}

\begin{document}
  \section{Here}
\end{document}

在此处输入图片描述

相关内容