仅在章节名称和目录中的页面中提供链接

仅在章节名称和目录中的页面中提供链接

我正在寻找一种自定义目录的方法,以便所有页码都包含指向指示部分的链接,但除了章节之外,还可以点击,而子部分则处于非活动状态,我在图片中放置了我正在尝试的示例。所有以蓝色显示的内容都应该是可点击的。我尝试使用 hyperref 包,但我只能保留所有文本或数字或两者,我无法达到那种自定义级别。

提前非常感谢您,如果这是一个非常简单的事情,我很抱歉,但是我对这个世界有点陌生,在谷歌上查找我没有找到任何可以帮助我的东西。 目录链接

PS:当前目录配置的一个示例是这样的,但它只允许我以蓝色显示带有链接的页码:

\documentclass[11pt]{book}

\usepackage{lmodern}
\usepackage[utf8]{inputenc}
\usepackage[none]{hyphenat}
\usepackage{lipsum}

\usepackage[hidelinks,pdfpagelabels,bookmarks,hyperindex,hyperfigures]{hyperref}
\usepackage{bookmark}

\hypersetup{
    linktoc=page,
    colorlinks=true,
    citecolor=blue,
    urlcolor=red,
    linkcolor=blue,
    citebordercolor={1 0 0},
    urlbordercolor={1 0 0},
    linkbordercolor={.7 .8 .8},
    breaklinks=true,
    }

\begin{document}
\tableofcontents

\chapter{Chapter 1}
\lipsum[1-2]
\section{One dummy example}
\lipsum[1-2]

\chapter{Chapter 2}
\lipsum[1-2]
\section{One dummy example}
\lipsum[1-2]
\section{One dummy example}
\lipsum[1-2]
\end{document}

相关内容