书签中附录之后的项目

书签中附录之后的项目

我的论文书签有问题。元素必须按以下顺序出现:

介绍

章节

附录

参考书目

指数。

但是书签中的附录、参考书目和索引也像附录一样。有人能帮帮我吗?

这是我使用过的命令以及它生成的命令。

\documentclass[12pt,a4paper]{book}

\usepackage[titletoc]{appendix}

\begin{document}

\chapter*{Introdução}

\chapter{1}
\chapter{2}
\chapter{3}

\cleardoublepage
\appendix
\addcontentsline{toc}{part}{Apêndices}

\chapter{appendix 1}
\chapter{appendix 2}

\phantomsection
\addcontentsline{toc}{chapter}{Referências Bibliográficas}
\bibliography{References}
\bibliographystyle{acm}

\cleardoublepage
\phantomsection
\thispagestyle{empty}\addcontentsline{toc}{chapter}{\'{I}ndice Remissivo}
\printindex

\end{document}

在此处输入图片描述

更明确地说,这是我所拥有的和我想要的的比较:

在此处输入图片描述

还请注意下面的菜单。我该如何区分它们?

答案1

您可以加载该bookmarks包。这是一个完整的示例;我还加载了它tocbibind以避免大多数\addcontentsline说明。

钥匙就\bookmarksetup{startatroot}在适当的位置。

\documentclass[12pt,a4paper]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[brazil]{babel}

\usepackage{imakeidx}
\usepackage[nottoc]{tocbibind}
\usepackage[titletoc]{appendix}
\usepackage{hyperref}
\usepackage{bookmark}

\makeindex

\begin{document}

\tableofcontents

\chapter*{Introdução}
\phantomsection
\addcontentsline{toc}{chapter}{Introdução}

\chapter{1}

Text\index{text}

\chapter{2}
\chapter{3}

\cleardoublepage
\appendix
\addcontentsline{toc}{part}{Apêndices}

\chapter{appendix 1}
\chapter{appendix 2}

\bookmarksetup{startatroot}

\phantomsection
\addcontentsline{toc}{chapter}{Referências Bibliográficas}
\bibliography{References}
\bibliographystyle{acm}

\printindex

\end{document}

在此处输入图片描述

相关内容