Latex: \tableofcontent 以任意部分开始

Latex: \tableofcontent start with an arbitrary section

通常在 Latex 中使用 \tableofcontent 时,它从第 1 节开始,例如,

Contents

1 Introduction ..... 1
2 Something ........ 2
3 Conclusion ....... 4
4 blablabla ........ 6

有没有什么可以创建 table 内容,如下所示:

Contents

3 Conclusion ....... 4
4 blablabla ........ 6

也就是说,在这个例子中,跳过第 1 和第 2 部分,只列出第 3 和第 4 部分?

LaTeX 示例:我想在第 3 节之后和第 S-1 节之前插入 table 内容:

\documentclass[pdftex, noinfoline]{imsart}

\begin{document}

\section{sec1}

\section{sec2}

\section{sec3}

\tableofcontents

\section{secS-1}

\section{secS-2}

您可以使用 titletoc 包:

\documentclass[pdftex, noinfoline]{imsart}

\usepackage{titletoc}

\begin{document}

\section{sec1}

\section{sec2}

\section{sec3}


\section*{Table of Contents}
\startcontents
\printcontents{ }{1}{}

\section{secS-1}

\section{secS-2}


    
\end{document}