我遇到的问题是,返回目录的链接无法正常工作。所有章节的链接似乎都正常工作,但如果我想返回,我最终只能返回到摘要中的某个位置。如何解决这个问题?
最小工作示例:
\documentclass[a4paper,12pt]{book}
\usepackage[british,ngerman]{babel}
\usepackage[colorlinks=false, breaklinks]{hyperref}
\usepackage{lipsum}
\begin{document}
\frontmatter
\selectlanguage{british}
\chapter{Abstract}
\lipsum\lipsum
\newpage\cleardoublepage
\tableofcontents
\markboth{}{}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{List of Figures}\listoffigures\newpage
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{List of Tables}\listoftables\newpage
\markboth{LIST OF ABBREVIATIONS}{LIST OF ABBREVIATIONS}
\chapter{Abbreviations}\newpage
\thispagestyle{empty}
\mainmatter
\setcounter{page}{1}
\chapter{Introduction}
Some text\newpage\cleardoublepage
\chapter{One}
Some text\newpage\cleardoublepage
\chapter{Two}
Some text\newpage\cleardoublepage
\chapter{Three}
Some text\newpage\cleardoublepage
\end{document}enter code here