我知道这个问题之前已经被问过并且我确实参考了以前给出的答案不幸的是我在编译时不断出现错误。
以下是我的最低限度的序言
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{hyperref}
\usepackage{cleveref}
\theoremstyle{definition}
\newtheorem{my}{Theorem}[section]
\begin{document}
\section{First}
\begin{restatable}
\label{thm:Eprime}
Suppose $q \neq 2, 3, 17$ is a prime with $2kP_\star=\infty \in
E(\mathbb{F}_q)$ but $kP_\star \neq 0, T_\star$.
\end{restatable}
\section{Second}
We recall \cref{thm:Eprime}
然后在第 2 部分中,我想回顾这个定理及其陈述,而不改变编号。
我尝试使用\usepackage{thmtools}
和\usepackage{thm-restate}
,但似乎不起作用。编译时出现错误。不知道为什么。
答案1
最小示例:
\documentclass{article}
\usepackage{amsmath,amsthm}
\begin{document}
\[
\mathbb{A}
\]
\end{document}
尝试编译它时会产生以下错误:
! Undefined control sequence. l.7 \mathbb {A} ? x
这是因为\mathbb
这不是标准的 LaTeX 命令,并且未被加载的任何一个包定义。添加
\usepackage{amssymb}
启用它并解决错误。