我一直在尝试弄清楚如何编写一个函数,以便报告章节的节号显示在行中以及目录中。 MWE 是:
\documentclass[12pt]{report}
\usepackage{lipsum}
\usepackage[md]{titlesec}
\begin{document}
\tableofcontents
\chapter{Introduction}
\input{introduction}
\chapter{A nice chapter title}
\lipsum[3]
\end{document}
介绍文件如下:
\lipsum[1]
\section{A new section}
\lipsum[2]
这样会生成正确的目录,其中“新章节”标记为 1.1,但在行中它仅显示为“新章节”。如能提供任何有关如何使其显示在文档中的建议,我1.1 A new section
将不胜感激