将部分移出零件

将部分移出零件

我正在使用文档类article。一旦我将某个部分放入文档中,所有后续部分都会自动属于该部分。如何重置某个部分以使其不属于某个部分?

下面的示例演示了我想要实现的目标:

\section{Introduction}

\part{Part 1}
\section{Section 1 belonging to part 1}
\section{Section 2 belonging to part 1}

\part{Part 2}
\section{Section 1 belonging to part 2}
\section{Section 2 belonging to part 2}

% should not belong to Part 2
\section{Conclusion}

答案1

\bookmarksetup说明将把 PDF 书签中的最后一部分提升一个级别;该\addtocontents说明将在目录中留下与之前部分相同的空间。

\documentclass{article}
\usepackage{hyperref}
\usepackage{bookmark}
\begin{document}

\tableofcontents

\section{Introduction}

\part{Part 1}
\section{Section 1 belonging to part 1}
\section{Section 2 belonging to part 1}

\part{Part 2}
\section{Section 1 belonging to part 2}
\section{Section 2 belonging to part 2}

\addtocontents{toc}{\protect\addvspace{2.25em plus 1pt}}
\bookmarksetup{startatroot}
\section{Conclusion}
\end{document}

答案2

我不确定你到底想要什么。你可能需要带星号的格式\section并重置节计数器:

\documentclass{report}

\begin{document}
\section*{Introduction}

\renewcommand{\thesection}{\arabic{part}.\arabic{section}}
\part{Part 1}
\section{Section 1 belonging to part 1}
\section{Section 2 belonging to part 1}

\setcounter{section}{0}
\part{Part 2}
\section{Section 1 belonging to part 2}
\section{Section 2 belonging to part 2}

% should not belong to Part 2
\section*{Conclusion}
\end{document}

您可能还想clearpage在结论部分之前添加。

相关内容