当我设置部分章节的计数器时,如何更正超链接

当我设置部分章节的计数器时,如何更正超链接

我正在使用包hyperref。当我单击 PDF 文件中第二部分的第一章时,我会跳转到第一部分的第一章。我怎样才能跳转到第二部分的第一章?我的代码

\documentclass[12pt,a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{hyperref}
\begin{document}
    \tableofcontents
    \part{Part One}
    \chapter{Chapter one}
    \section{Section one}
        \section{Section two}
        \chapter{Chapter two}
    \section{Section three}
    \section{Section four}  
        \part{Part One}
        \setcounter{chapter}0
    \chapter{Chapter one}
    \section{Section one}
    \section{Section two}
    \chapter{Chapter two}
    \section{Section three}
    \section{Section four}  
\end{document}

在此处输入图片描述

相关内容