如何隐藏 documentclass{report} 中的第 N 章并对章节标题进行编号?

如何隐藏 documentclass{report} 中的第 N 章并对章节标题进行编号?

我已经Chapter N通过使用包titlesec和文件中的以下代码成功隐藏了上述每个章节的标题main.tex

\titleformat{\chapter}[display]
  {\normalfont\bfseries}{}{0pt}{\Large}

现在我只想在每个章节标题前面放置章节编号,就像在目录和每个章节的章节中一样。

在此处输入图片描述

答案1

您可以使用hang选项代替display。这样,章节号将与标题在同一行。

\documentclass{report}
\usepackage{titlesec}
\titleformat{\chapter}[hang]
  {\bfseries\Large}{\thechapter}{1em}{}
\begin{document}
\chapter{Quantum materials and low temperature physics}
\section{Question 1}
\end{document}

相关内容