如何从超链接书签中排除某一章节?

如何从超链接书签中排除某一章节?

我以这种方式包含我的章节:

    \documentclass[titlepage,a4paper,11pt,oneside]{book}

\begin{document}
\frontmatter
\input{Chapters/abstract}
\mainmatter 

\include{Chapters/Introduction}


\part{part1}
\include{Chapters/A}
\include{Chapters/B}
\include{Chapters/C}

\part{part2}
\include{Chapters/D}

\part{part3}
\include{Chapters/E}

\include{Chapters/Conclusions}

\cleardoublepage


\begin{appendices}
\include{Appendices/AppendixA}
\include{Appendices/AppendixB}
\end{appendices}


\backmatter
\nocite{*}
\printbibliography[heading=bibintoc]
\end{document}  

我想将该章节排除Conclusions在任何部分之外,例如介绍部分。我不想将结论放在第 3 部分中,我想将其放在索引中,就像没有任何部分的章节一样。有办法吗?

编辑

现在目录是:

Introduction

Part1
A
B
C

Part2
D

Part3
E
Conclusion

但我想要:

Part1
A
B
C

Part2
D

Part3
E

(NO PART, like introduction)
Conclusion

编辑2: 在此处输入图片描述

我不希望所有这些章节都在实验部分内。

答案1

您可以在表格内容中添加垂直空间,与通过命令添加的空间相对\part

\addtocontents{toc}{\protect\addvspace{2.25em}}

这可能足以满足您的需求。要操作hyperref书签,您需要做更多工作。这包含在下面的代码中,并提供

示例输出

带书签

示例书签

\documentclass[titlepage,a4paper,11pt,oneside]{book}

\usepackage{hyperref,bookmark}

\begin{document}
\frontmatter

\chapter{Chapters/abstract}
\tableofcontents

\mainmatter

\chapter{Chapters/Introduction}


\part{part1}
\chapter{Chapters/A}
\chapter{Chapters/B}
\chapter{Chapters/C}

\part{part2}
\chapter{Chapters/D}

\part{part3}
\chapter{Chapters/E}

\addtocontents{toc}{\protect\addvspace{2.25em}}
\bookmarksetup{startatroot}
\chapter{Chapters/Conclusions}

\cleardoublepage

\pdfbookmark[-1]{Appendices}{appendix}
\appendix
\chapter{Appendices/AppendixA}
\chapter{Appendices/AppendixB}

\end{document}

为了解释书签的变化,默认情况下,部分位于级别,-1章节位于级别0。该bookmark包提供了startatroot将下一个条目向上移动到根(在本例中-1)级别的选项。(感谢 Schweinebacke 向我指出这个包,它取代了我以前的低级操作。)

我还通过以下方式添加了附录条目部分

\pdfbookmark[-1]{Appendices}{appendix}

相关内容