我正在使用包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}