我的论文中有 6 个部分,之后我想写附录 A 和附录 B。在第 4 部分中,我想在某处引用附录 A 和附录 B。但它显示的是 $6$ 而不是附录 A。请帮忙。
答案1
像这样吗?
\documentclass{article}
\usepackage{blindtext}%
\begin{document}
\section{First}
\blindtext
\section{Second}
\blindtext
\section{Third}
\blindtext
\section{Fourth}
\blindtext
In Appendix \ref{appendixsection::1} we will see that..., however in
Appendix \ref{appendixsection::2} there is also shown that ...
\section{Fifth}
\blindtext
\section{Sixth}
\blindtext
\clearpage
\appendix
\setcounter{section}{0}
\renewcommand{\thesection}{\Alph{section}}
\section{First of Appendix}\label{appendixsection::1}
\blindtext[1-20]
\section{Second of Appendix}\label{appendixsection::2}
\blindtext[21-40]
\end{document}