在 apa6 文档的附录中从 1、2 ......重新启动方程式列表的自动引用

在 apa6 文档的附录中从 1、2 ......重新启动方程式列表的自动引用

如何在附录中设置一个单独的方程标签数组,以区别于正文中使用的方程标签数组?提前致谢。

\documentclass{apa6}
\usepackage{hyperref}
\oneappendixfalse
\begin{document}

The first equation is \autoref{e1}

\begin{equation}\label{e1}
x+y=z
\end{equation}

\appendix
\section{} %% another question is how to make this unused section line disappear

The first equation in Appendix A should be Equation A1 instead of \autoref{e2}

\begin{equation}\label{e2}
x+y=z
\end{equation}

\end{document}

相关内容