ElegantLaTeX/ElegantBook

脚注的跳转问题

Closed this issue · 1 comments

模板版本

4.1

问题描述

点击脚注会跳转到标题页, elegantbook-en.tex 也有此问题.

MWE

\documentclass[11pt,fancy]{elegantbook}

\title{An Elegant \LaTeX{} Template for Books}
\subtitle{Classic Elegant\LaTeX{} Template}

\author{Ethan Deng \& Liam Huang}
\institute{Elegant\LaTeX{} Program}
\date{May. 2, 2021}
\version{4.1}
\bioinfo{Bio}{Information}

\extrainfo{Victory won\rq t come to us unless we go to it. }

\logo{logo-blue.png}
\cover{cover.jpg}
\definecolor{customcolor}{RGB}{32,178,170}
\colorlet{coverlinecolor}{customcolor}
\begin{document}
\maketitle
\mainmatter
% 前面照抄英文模板
\begin{definition}
  This is an example definition.\footnotemark
\end{definition}
\footnotetext{An example footnote inside.}
A normal paragraph with a normal footnote.
\footnote{A normal footnote.}
\end{document}

解决方案

footmisc 先于 hyperref 加载即可. 参考 Why are all of my footnotes hyperlinked to the titlepage?

fixed.