PDF 书签不分级,而目录分级

PDF 书签不分级,而目录分级

我使用的是文档样式。在大纲方面,我使用章节 > 节 > 小节。

它可以编译,并且运行良好。目录正确缩进如下

  • 第1章
  • ___第 1.1 节
  • ______第 1.1.1 节

(不过我使用的是 Tocdepth 1,这只是一个例子)。我的文件大纲显示了类似的模式。但是,在下载文件后,在 Edge 浏览器和 Adob​​e pdf 中,书签都在同一级别,例如

  • 第1章
  • 第1.1节
  • 1.1.1小节

以下是我的超链接设置

\usepackage{hyperref}

\hypersetup{
    colorlinks=true,       % true: colored text; false: boxed text
    linkcolor=gray,        % color of internal links 
    citecolor=gray,       % color of citations 
    urlcolor=gray,      % color of external links 
    linkbordercolor={1 1 1}, % not used
    citebordercolor={1 1 1}, % not used
    urlbordercolor={1 1 1},   % not used
    bookmarks=true,
    bookmarksnumbered=false, 
    bookmarksopen=true,
    bookmarksdepth=1,
    linktocpage=false,
    pdfauthor={myname},
    pdftitle={myfile},
}

以下是 main.tex 的片段

\begin{document}
% --- title page ----
\input{General/Titlepage.tex}
\thispagestyle{empty}
\pagenumbering{roman}
\newpage
% -- abstract etc --
\input{Chapters/Abstract & Preface}
\thispagestyle{fancy}
% --- overview of items ----
\setcounter{tocdepth}{1}
\input{Chapters/Abstract}
\newpage
\tableofcontents
\newpage
\listoffigures
\listoftables
\newpage
\input{Chapters/Abbreviations}

之后还会有更多章节。

关于如何解决这个问题有什么建议吗?

相关内容