问题
apxproof
使用 的命令定义了一个定理环境\newtheoremrep
。但是,该定理并未出现在附录中,\proof
软件包文档声称的后续内容也没有出现。
例如
\documentclass{article}
\usepackage{apxproof}
\newtheoremrep{theorem}{Theorem}
\begin{document}
\section{We test apxproof}
\begin{theorem}
This is the theorem.
\end{theorem}
\begin{proof}
This is the proof.
\end{proof}
\end{document}
解决方案
查看问答答案。
答案1
有点尴尬的是,我发现错误是“RTFM(b)” *的情况。浏览文档时,我错误地认为这\newtheoremrep{theorem}{Theorem}
会导致theorem
环境总是重复。
命令实际上是
- 创建一个所需的
theorem
环境\newtheorem
。 - 创建一个
theoremrep
具有所需的“在附录中重复”行为的环境。
因此正确的用法是
\documentclass{article}
\usepackage{apxproof}
\newtheoremrep{theorem}{Theorem}
\begin{document}
\section{We test apxproof}
\begin{theoremrep} % <- swap theorem for theoremrep
This is the theorem.
\end{theoremrep}
\begin{proof}
This is the proof.
\end{proof}
\end{document}
*阅读 f** 手册(更好)。