Latex 目录在 PDF 查看器侧边栏中不可见

Latex 目录在 PDF 查看器侧边栏中不可见

我正在尝试编写我的论文。为此,我使用 latex 生成了一个目录。

pdf 本身的目录生成正确。但是,我无法在我的 pdf 查看器的侧边栏(mac os)。这是为什么?如何才能启用侧边栏中的目录查看功能?

以下是包含完整 zip 包和 Makefile 的 Latex 模板的链接: http://mice.cs.columbia.edu/c/d.php?d=109

任何帮助将不胜感激。

以下是生成目录的代码:

\setcounter{tocdepth}{2}
\renewcommand{\contentsname}{Table of Contents}
\tableofcontents

以下是所使用的软件包:

%%%
%%% Packages
%%%
\usepackage[dvips]{epsfig}
\usepackage{amsmath}
\usepackage{named}
%\usepackage{fancyhdr}
\usepackage{afterpage}

%
% We use the hyperref package and customize it for optimal PDF 
%
\usepackage[dvipdfm,pdftitle={\thesistitle},pdfauthor={\thesisauthor},pdfpagemode={UseOutlines},letterpaper,bookmarks,bookmarksopen=true,pdfstartview={FitH},bookmarksnumbered=true,]{hyperref}
%\hypersetup{pdftex,colorlinks=true,allcolors=blue}
%\usepackage{hypcap}

我收到以下可能相关也可能不相关的警告:

\part{Bibliography}
\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{refs}
\bibliographystyle{named} 

警告是

*The anchor of a bookmark and its parent's must not(hyperref) be the same. Added a new anchor*

我还收到另一个警告::

\fancyhead's `E' option without twoside option is useless

以下是预览的快照: 在此处输入图片描述

这就是我想要的:

在此处输入图片描述

相关内容