如何使目录的“图表列表”链接到标题而不是列表本身

如何使目录的“图表列表”链接到标题而不是列表本身

我制作了一个带有可点击链接的目录。章节和节的链接工作正常:当我点击它们时,我可以看到章节标题及其内容。另一方面,当我点击图表、表格和内容本身的列表时,我可以看到列表的文本,而不是看到标题为“图表列表”的整个页面。

我可以让“图形列表”以与章节相同的方式运行吗?

编辑:这可能是我编译代码的方式存在问题,因为使用相同 pdf 查看器的其他用户表示它已经按照我希望的方式工作了。

这是一个代码示例。

\documentclass{book}

\usepackage{color}
\usepackage{hyperref}
\hypersetup{
    colorlinks=true,
    citecolor=black,
    filecolor=black,
    linkcolor=blue,
    urlcolor=black
}


\begin{document}

\tableofcontents
\addcontentsline{toc}{chapter}{Content}

\newpage ~

\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}

\listoftables
\addcontentsline{toc}{chapter}{List of Tables}

\newpage ~
\chapter{Intro}

\begin{figure}
\caption{Bla Bla}
\label{fig:bla}
\end{figure}

\newpage ~
\chapter{Related}

\begin{table}[hb]
\caption{Boh}
\begin{tabular}{|l|l|r|}

\end{tabular}
\label{tab:boh}
\end{table}


\end{document}

答案1

看来您正在使用过时的 TeXLive 2009。您可以在日志文件的第一行看到这一点:

This is pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian) (format=pdflatex 2013.6.3) 

当前版本是 TeXLive 2013。

请关注问题如何在 Debian 或 Ubuntu 上安装“原始” TeXLive?更新您的系统。

相关内容