我正在编辑一篇文档,其序言开头为
\documentclass [12pt, a4paper]{extbook}
我希望“简介及其章节”一章出现在文本开头的目录目录中,位于未编号的第 1 章之前。
我还希望将一个章节命名为“前奏”,并将其各部分显示在文本开头的表格目录中,位于未编号的第 1 章之前。
我怎样才能做到这一点?
介绍 ................................................. .................
nontechnical introduction ......................... intrudução technique ................................. structure of the thesis ....................................
第1章 ................................................ ..................
Section 1 .................................. Section 2 .................................. Section 3 ..................................
第 9 章 ................................................ ................
Section 1 .................................. Section 2 .................................. Section 3 ..................................
序曲.................................................................
Other open issues ......................... New techniques ............................
答案1
\section
我认为您正在寻找、\part
等和的带星号的版本\addcontentsline{toc}{}{}
。
例如:
\documentclass[12pt,a4paper]{extbook}
\begin{document}
\tableofcontents
\chapter*{Introduction}\addcontentsline{toc}{chapter}{Introduction}
\section*{nontechnical introduction}\addcontentsline{toc}{section}{nontechnical introduction}
\section*{intrudução technique}\addcontentsline{toc}{section}{intrudução technique}
\section*{structure of the thesis}\addcontentsline{toc}{section}{structure of the thesis}
\chapter{Chapter 1}
\section{Section 1}
\section{Section 2}
\chapter{Chapter 9}
\section{Section 1}
\section{Section 2}
\chapter*{Prelude}\addcontentsline{toc}{chapter}{Prelude}
\section*{Other open issues}\addcontentsline{toc}{section}{Other open issues}
\section*{New techniques}\addcontentsline{toc}{section}{New techniques}
\end{document}
答案2
更简单的解决方案是使用 KOMA-script 和 -classscrbook
并使用addchap
和addsec
命令。它们类似于标准命令\chapter
和,\section
只是它们没有编号。它们会生成运行头和目录中的条目。
\documentclass{scrbook}
\begin{document}
\tableofcontents
\addchap{Introduction}
\addsec{nontechnical introduction}
\addsec{intrudução technique}
\addsec{structure of the thesis}
\chapter{Chapter 1}
\section{Section 1}
\section{Section 2}
\chapter{Chapter 9}
\section{Section 1}
\section{Section 2}
\addchap{Prelude}
\addsec{Other open issues}
\addsec{New techniques}
\end{document}