是否可以显示类似于定理名称显示的方程名称:
\begin{theorem}[Convergence of Cauchy Sequences in $\mathbb{R}$]
Every Cauchy sequence of real numbers is also a convergent sequence of real numbers.
\end{theorem}
因此定理数后面跟着“柯西序列的收敛$\mathbb{R}$
“。我想知道这是否适用于方程式。我想要做的一个例子是:
\begin{equation}[Faraday's Law of Induction]
\nabla\times{\bf E}=-\frac{\partial{\bf B}}{\partial t}
\label{eqn:Faraday}
\end{equation}
答案1
\documentclass{article}
\usepackage{amsmath}
\newenvironment{Equation}[1][]
{\par\noindent\refstepcounter{equation}\textbf{\arabic{equation}: #1}\[}
{\]}
\begin{document}
\begin{Equation}[Faraday's Law of Induction]
\nabla\times{\bf E}=-\frac{\partial{\bf B}}{\partial t}
\label{eqn:Faraday1}
\end{Equation}
\begin{Equation}[Faraday's Law of Induction]
\nabla\times{\bf E}=-\frac{\partial{\bf B}}{\partial t}
\label{eqn:Faraday2}
\end{Equation}
see eqn~\ref{eqn:Faraday1} and eqn~\ref{eqn:Faraday2}
\end{document}