jmlr2e.sty 包附录链接已损坏

jmlr2e.sty 包附录链接已损坏

我正在使用jmlr2e.sty 包

在正文中,我想使用链接引用附录。在 pdf 上,当我单击链接时,它们会将我重定向到当前部分,而不是将我重定向到附录。

这是 MWE

\documentclass[twoside,11pt]{article}
\usepackage{jmlr2e}
\begin{document}
\title{MWE}
\editor{John}
\maketitle

\section{Introduction}
     See Appendix~\ref{app:appendix} for more details.
\newpage

\appendix

\section{The Details}
\label{app:appendix}
     Here are more details

\end{document}

当我点击Apdf 文档时,我被重定向到“简介”部分而不是“附录”部分。

我对这个我不应该修改的文件感到很困惑jmlr2e.sty。以下是我在附录中读到的内容:

\renewcommand{\appendix}{\par
  \setcounter{section}{0}
  \setcounter{subsection}{0}
  \def\thesection{\Alph{section}}
\def\section{\@ifnextchar*{\@startsiction{section}{1}{\z@}{-0.24in}{0.10in}%
         {\large\bf\raggedright}}%
 {\@startsiction{section}{1}{\z@}{-0.24in}{0.10in}
         {\large\bf\raggedright Appendix\ }}}}

答案1

解决方法是在指令前添加下面一行\appendix

\renewcommand{\theHsection}{A\arabic{section}}

相关内容