在行尾对齐标签

在行尾对齐标签

是否存在特殊原因导致使用$$不会像使用 那样产生标签\[ \]

\documentclass[12pt]{article}
\usepackage{mathtools}
\usepackage{amsmath}
\begin{document}
\[\lim_{\begin{smallmatrix} \,x\to 0& \\ \,x>0 \end{smallmatrix}} f(x) \tag{1}\]
$$\lim_{\begin{smallmatrix} \,x\to 0& \\ \,x>0 \end{smallmatrix}} f(x) \tag{1}$$
\end{document}

我习惯使用美元符号来写方程式。有没有其他方法可以使用美元符号在行末生成这些标签?

答案1

这里我提供了使用 的任何示例\tag

在此处输入图片描述

\documentclass[12pt]{article}
\usepackage{mathtools}

\begin{document}
\begin{equation*}
     \lim_{\begin{smallmatrix} \,x\to 0& \\ \,x>0 \end{smallmatrix}} f(x) \tag{abc}
\end{equation*}

\begin{equation*}
     \lim_{\begin{smallmatrix} \,x\to 0& \\ \,x>0 \end{smallmatrix}} f(x) \tag{1}
\end{equation*}

\begin{equation*}
     \lim_{\begin{smallmatrix} \,x\to 0& \\ \,x>0 \end{smallmatrix}} f(x) \tag{bhj}
\end{equation*}
\end{document}

相关内容