如果之前已经问过这个问题,我深感抱歉,但是其他 TOC 问题似乎都没有完全符合我所寻找的内容。
我希望通过尽可能少地改变 TOC 包的标准用法来创建仅改变一个章节(简介)的 TOC。
例如,我当前设置的 MWE 如下:
\documentclass{book}
\usepackage{hyperref}
\begin{document}
\tableofcontents
\chapter{Preamble}
\section{Motivation}
\section{Outline}
\chapter{Blah}
\section{Blah}
\section{Blah}
\chapter{Blah}
\section{Blah}
\section{Blah}
\end{document}
我得到这个输出
1 Preamble
1.1 Motivation
1.2 Outline
2 Blah
2.1 Blah
2.2 Blah
3 Blah
3.1 Blah
3.2 Blah
我想要的是
Preamble
Motivation
Outline
1 Blah
1.1 Blah
1.2 Blah
2 Blah
2.1 Blah
2.2 Blah
并且它仍然是超链接。
谢谢!
答案1
这是一个简单的解决方案:
\documentclass{book}
\begin{document}
\tableofcontents
{\renewcommand\thesection{\arabic{section}}
\chapter*{Preamble}
\addcontentsline{toc}{chapter}{{\hspace*{1.3em}Preamble}}
\section{Motivation}
\section{Outline}
}
\chapter{Blah}
\section{Blah}
\section{Blah}
\chapter{Blah}
\section{Blah}
\section{Blah}
\end{document}