LaTeX附录公式和表格编号及正确跳转

2024-12-04
#LaTeX

1. 问题

  • 点击附录中的Table A1,结果跳转到正文的Table 1;需要正确跳转到Table A1
  • 附录中的公式编号A1, B2, C3;需要附录中的公式编号为A1, B1, C1

2. 解决方案

% 确保加载超链接支持
\usepackage{hyperref} 

% 放在附录 \appendix 后
\renewcommand{\thetable}{\Alph{section}\arabic{table}}
\renewcommand{\theequation}{\Alph{section}\arabic{equation}}


% 放在附录的 \section \label 后
\setcounter{equation}{0}
\setcounter{table}{0}


% 在表格 \caption 和 \label之间,加入 \phantomsection 强制创建锚点
\phantomsection