我正在使用 LaTeX 准备项目。我正在使用\documentclass{report}
由于我需要第一章简介,但没有章节编号,因此我使用了
\newcommand{\mychapter}[2]{
\setcounter{chapter}{#1}
\setcounter{section}{0}
\chapter*{#2}
\addcontentsline{toc}{chapter}{#2}
}
在序言中。
由于我需要在介绍之前列出图表,因此\begin{document}
我添加了以下评论
\listoffigures
\mychapter{0}{Introduction}
In Chapter 1, we give the basic ideas and facts.....
并且在输出中,章节介绍的标题是图表列表。(见图)。希望有人能帮助解决这个问题。
答案1
您可以使用更好的定义\mychapter
:
\documentclass{report}
\usepackage{kantlipsum} % for mock text
\pagestyle{headings} % to get headers
\newcounter{savedsecnumdepth}
\newcommand{\mychapter}[1]{%
\setcounter{savedsecnumdepth}{\value{secnumdepth}}%
\setcounter{secnumdepth}{-1000}%
\chapter{#1}%
\setcounter{secnumdepth}{\value{savedsecnumdepth}}%
\refstepcounter{chapter}%
}
\setcounter{chapter}{-1}% first should be Chapter 0
\begin{document}
\tableofcontents
\mychapter{Introduction}
\section{Ghijk}
\kant[1-30]
\end{document}