从参考文献中分配定理编号

从参考文献中分配定理编号

我想知道是否有以下简单的方法。

我在文章后面的部分有一个陈述,比如说Theorem G\label{Thm:G}在介绍中,我想把这个定理陈述为

定理G
2 + 2 = 4。

这可能吗?

我想拥有定理 2.1在简介部分。

%---- MWE
\documentclass{article}  
\usepackage{amsthm} 
\newtheorem{thm}{Theorem}[section]


\begin{document}  
\section{Intro}

\section{body} 
\begin{thm}\label{theorem G}
$2+2 = 4$.
\end{thm}

\end{document}  

答案1

获得此结果的一种快速简便的方法是创建一个模拟的“重复”定理环境,但您永远不会真正使用它的全部内容。相反,您可以调整计数器表示以采用对您所追求的定理的引用:

在此处输入图片描述

\documentclass{article}
\usepackage{amsthm}
\newtheorem{thm}{Theorem}[section]
\newtheorem{thmB}{Theorem}% Dummy theorem

\begin{document}
\section{Intro}

\renewcommand{\thethmB}{\ref{thm:G}}
\begin{thmB}
$2+2 = 4$.
\end{thmB}

\section{body}
\begin{thm}\label{thm:G}
$2+2 = 4$.
\end{thm}

\end{document}

这样做的好处是您可以在整个文档中使用多个不同的引用,只需\thethmB根据自己的喜好进行更改即可。

相关内容