如何改变字体类型和大小?

如何改变字体类型和大小?

我是 Latex 的新手,我想更改论文标题、章节标题、子章节标题、摘要、图表目录和致谢的字体类型和大小,首先我尝试使用以下命令更改章节标题:

\titleformat{\chapter}[hang]   {\fontsize{14}\selectfont\bfseries}{\chaptertitlename~\thechapter~}{0pt}{\fontsize{14}\selectfont}
\titlespacing*{\chapter}{0}{0}{0}

为了尊重下表: 在此处输入图片描述

答案1

您省略了 的第二个参数\fontsize{}{},并且忘记在 中指明度量单位\titlespacing*。使用\bfseries可以省略\selectfont。下面是 mwe:

\documentclass{book} 
\usepackage{titlesec}
\usepackage{lipsum}
\titleformat{\chapter}[hang]
  {\fontsize{14}{16}\bfseries}
  {\chaptertitlename~\thechapter}
  {12pt}
  {}
\titlespacing*{\chapter}{0pt}{0pt}{3ex}
\begin{document}
 \chapter{Titolo}
 \lipsum[1]
\end{document} 

在此处输入图片描述

相关内容