我正在写一份报告,我想把致谢页放在没有的地方,\section
因为它会把它编号为 0.1
我尝试将它放在另一个 TeX 文档中并\input
在主文档中使用,但没有成功。
答案1
\section
您可以使用带星号的、 、版本\section*
来生成非编号部分,如下例所示:
\documentclass{report}
\begin{document}
\section*{Acknowledgement}% This section is not numbered
\chapter{Chapter name}
\section{Section name}% This section is numbered
\end{document}
如果要将星号部分添加到目录中,则必须替换
\section*{Acknowledgement}
和
\section*{Acknowledgement}\addcontentsline{toc}{section}{Acknowledgement}