
phfthm
표시가 있는 증거를 얻기 위해 패키지를 사용하려고 합니다.정리 1 증명, 그리고 이와 유사한 것.
나는 제공된 예제를 거의 정확하게 사용하고 있습니다.패키지 문서, 15페이지에 나와 있지만1의 증명, 말 없이정리, 내가 어디서 실수를 하는지 이해할 수 없습니다.
내 예는 다음과 같습니다.
\documentclass[]{article}
\usepackage[resetstyle]{phfthm}
\begin{document}
\section*{Introduction}
This is a theorem
\begin{theorem}[Gauss]
\label{thm:Gauss}
For a closed surface $S$ enclosing a volume $V$, we have
\begin{equation}
\oint_S\vec u\cdot d\vec S = \int_V(\vec\nabla\cdot\vec u)\,dV\ .
\end{equation}
\end{theorem}
Then the proof.
\begin{proof}[*thm:Gauss]
text of proof
\end{proof}
\end{document}
답변1
증명 유형을 인쇄하는 데 필요한 hyperref
제공을 위해 로드해야 합니다 . 사용할 수 없는 \autoref
경우 대체 수단으로 사용되므로 숫자만 표시됩니다(참조.\autoref
\ref
https://tex.stackexchange.com/a/137433/29873). 이는 문서에 더 명확하게 명시되어 있을 수 있습니다(숨겨진 설명만 있을 뿐입니다). 어쨌든, 다음과 같습니다.
\documentclass[]{article}
\usepackage[resetstyle]{phfthm}
\usepackage{hyperref}
\begin{document}
\section*{Introduction}
This is a theorem
\begin{theorem}[Gauss]
\label{thm:Gauss}
For a closed surface $S$ enclosing a volume $V$, we have
\begin{equation}
\oint_S\vec u\cdot d\vec S = \int_V(\vec\nabla\cdot\vec u)\,dV\ .
\end{equation}
\end{theorem}
Then the proof.
\begin{proof}[*thm:Gauss]
text of proof
\end{proof}
\end{document}