这个问题非常基础,我知道如何基本解决它,但这是一种解决方法,我想知道是否有更好的方法来解决它 - 问题是:
我想给某些属性(即书面文本)贴上标签,我这样做是这样的:
\begin{equation} \label{12345} \text{\emph{all functions considered are smooth}}. \end{equation}
这样我就得到了我想要的标签 - 但如果文本很长那就不好了......
答案1
通常这是通过\newtheorem
命令完成的。
\documentclass{article}
\newtheorem{prop}{Property}
\begin{document}
\begin{prop}
\label{12345}
all functions considered are smooth;
\end{prop}
blah blahh see \ref{12345}
\end{document}