答案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}