\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
As shown in Appendix~\ref{app_eg},...
\appendix
\renewcommand{\thesection}{\Alph{section}}
\numberwithin{equation}{section}
\section{An example}
\label{app_eg}
\begin{equation}
1+1=2
\label{pert}
\end{equation}
\end{document}
我希望附录的名称为附录 A:示例。但正文中的公式编号和引用应保持原样。请提出修复建议。
答案1
更新为\@seccntformat
通常的前缀:\the<cntr>
Appendix
\documentclass{article}
\usepackage{amsmath}
\begin{document}
As shown in Appendix~\ref{app_eg},...
\appendix
\makeatletter
\renewcommand{\@seccntformat}[1]{Appendix \csname the#1\endcsname\quad}
\makeatother
\renewcommand{\thesection}{\Alph{section}}
\numberwithin{equation}{section}
\section{An example}
\label{app_eg}
\begin{equation}
1+1=2
\end{equation}
\end{document}