如何使用 latex 序言中的 titlesec 更改某个部分的字体大小?

如何使用 latex 序言中的 titlesec 更改某个部分的字体大小?

我使用的是 LyX 2.1.5 版本

我想更改字体大小,例如:

  1. 第 14 章pt、粗体、居中对齐
  2. 第 12pt 节,粗体

LaTeX 序言:

\usepackage{titlesec}
\usepackage{graphicx}
\titleformat{\chapter}[display]
  {\normalfont\Large\bfseries\centering}{\chaptertitlename\ \thechapter}{14pt}

对于部分要添加什么?

答案1

类似以下。你可能需要根据自己的需求进行调整。

\titleformat{\section}{\normalfont\fontsize{12}{14}\bfseries}{\thesection}{0.5em}{}

对于章节,您可以\Large用精确的尺寸规格进行替换。并且缺少最后一个参数。

\titleformat{\chapter}[display]
  {\normalfont\fontsize{14}{16}\bfseries\centering}{\chaptertitlename\ \thechapter}{14pt}{}

相关内容