我该如何设置以便当按下数字时它会导致相应的定理(或公式)?

我该如何设置以便当按下数字时它会导致相应的定理(或公式)?

字面上,给定一个定理和一个数字,有没有办法让它在按下数字时移动到该定理?有人可以提供示例或模板吗?

例如,让我们看下一张图片:在此处输入图片描述 在此处输入图片描述

注意下划线的粉红色数字。我们如何才能做到这一点

  1. 如果我们按数字(23)或(24),那么就得到公式(23),(24)
  2. 如果我们按照构造4.9.1.,那么它就导致了相应的构造4.9.1

有人可以帮忙吗?

答案1

一个例子:

\documentclass{report}
\newtheorem{construction}{Construction}[section]
\counterwithout{equation}{chapter}
\usepackage{lipsum}
\usepackage{xcolor}
\usepackage[colorlinks,linkcolor=magenta]{hyperref}
\begin{document}
\setcounter{equation}{22}
\setcounter{chapter}{3}
\chapter{One}
\setcounter{section}{8}
\section{One}
\begin{construction}[title name]\label{cons:4.9.1}
\lipsum[1]
\begin{equation}\label{eqn:23}
    E=m\cdot c^2
\end{equation}
and
\begin{equation}\label{eqn:24}
    c=\sqrt{\frac{E}{m}}
\end{equation}
\end{construction}
\clearpage

Refer to the construction \ref{cons:4.9.1}.

Refer to the equation (\ref{eqn:23}) and (\ref{eqn:24}).
\end{document}

在此处输入图片描述 在此处输入图片描述

相关内容