我有一个部门的 latex 模板,它不能正确显示我的章节和子章节。它们在目录中显示正确,但在文本中,它们既没有编号,也没有粗体,也没有任何格式,而是以“0em0em”开头,我检查过这是来自标题间距定义:
\RequirePackage{titlesec}
\titlespacing{\section}{0em}{14pt}{4pt}[0em]
\titlespacing{\subsection}{0em}{8pt}{-2pt}[0em]
\titlespacing{\subsubsection}{0em}{8pt}{-2pt}[0em]
\titlespacing{\paragraph}{0em}{4pt}{0em}[0em]
\titlespacing{\subparagraph}{0em}{4pt}{0em}[0em]
因此,1.1 简介
我会得到 0em0emIntroduction
章节运作良好。
我希望这些信息足够了。
干杯