有没有办法同时使用align
和tag
内联? 以下是我尝试的一些示例:
\documentclass[]{article}
\begin{document}
$$\begin{aligned}
x^2 &= 1 \\
x &= -1,1 \tag{*} \\
\end{aligned}$$
\end{document}
但是,它给了我一个错误,告诉我\tag not allowed
。
答案1
您需要align
或align*
(并且永远不要$$
在乳胶中使用)。
\documentclass{amsart}
\begin{document}
\begin{align*}
x^2 &= 1 \\
x &= -1,1 \tag{*}
\end{align*}
\end{document}