如何将公式引用 (1) 右对齐

如何将公式引用 (1) 右对齐

我有一个居中方程,我想将 (1) 放在与方程相同的行上,但与右侧对齐,以便将来可以参考该方程。我目前有的是:

\center  $ \begin{pmatrix} e & \frac{f}{2} \\ \frac{f}{5} & g \end{pmatrix} = L^T %
  \begin{pmatrix} a & b \\ c & d \end{pmatrix} L $ \flushright' (1)

答案1

\documentclass{article}
\usepackage{amsmath}
\begin{document}

\begin{align} \label{foo}
\begin{pmatrix} e & \frac{f}{2} \\ \frac{f}{5} & g \end{pmatrix} 
  &= L^T   \begin{pmatrix} a & b \\ c & d \end{pmatrix} L 
\end{align}

See Eqn~\ref{foo}
\end{document}

答案2

出什么问题了

\begin{equation}
\label{eq:1}
\begin{pmatrix} e & \frac{f}{2} 
 \\ 
 \frac{f}{5} & g 
\end{pmatrix} 
= L^T 
\begin{pmatrix} 
 a & b 
\\ 
 c & d 
\end{pmatrix} 
L 
\end{equation}  

然后使用\eqref{eq:1}(假设amsmath

相关内容