Restatable에 정리 번호가 표시되지 않음

Restatable에 정리 번호가 표시되지 않음

나는 restatable에 대해 배웠습니다.이것답변. 그런데 그 정리를 부록에 넣었더니 그 참고문헌에는 숫자가 없다. MWE는 다음과 같습니다.

\documentclass{amsart}
\usepackage{thmtools} 
\usepackage{thm-restate}
\newtheorem{theorem}{Theorem}[section]
\usepackage{hyperref}

\begin{document}


\begin{restatable*}{theorem}{thm}
  Everybody knows that $1 + 1 = 2$.
\end{restatable*}

I would like this \ref{thm} to display A.1.

\appendix
\section{Proofs}
\thm\label{thm}
\begin{proof}
  Proof is trivial.
\end{proof}

\end{document}

여기에 이미지 설명을 입력하세요

답변1

\label{thm}환경 으로 이동합니다 restatable*.

\documentclass{amsart}
\usepackage{thmtools} 
\usepackage{thm-restate}
\newtheorem{theorem}{Theorem}[section]
\usepackage{hyperref}

\begin{document}


\begin{restatable*}{theorem}{thm}\label{thm} % <<< \label moved to here
  Everybody knows that $1 + 1 = 2$.
\end{restatable*}

I would like this \ref{thm} to display A.1.

\appendix
\section{Proofs}
\thm
\begin{proof}
  Proof is trivial.
\end{proof}

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보