如何在 Latex 中并排写入上述 2 个和 3 个矩阵?
答案1
这应该没有什么神秘之处,只需将几个矩阵一个接一个地放在显示器上即可。标准amsmath
包裹提供了带括号的矩阵的便利pmatrix
,以及大量其他有用的数学构造;另见mathtools
包裹这做出了一些有用的补充。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
A simple matrix conjugation is a follows
\begin{equation*}
\begin{pmatrix}
1&0\\
0&2
\end{pmatrix}
\begin{pmatrix}
\epsilon&b'\\
0&\eta
\end{pmatrix}
\begin{pmatrix}
1&0\\
0&2
\end{pmatrix}
^{-1}
=
\begin{pmatrix}
\epsilon&b'/2\\
0&\eta
\end{pmatrix}
.
\end{equation*}
Here is a similarity relation.
\begin{equation*}
\begin{pmatrix}
\epsilon&b\\
0&\eta
\end{pmatrix}
\sim
\begin{pmatrix}
\epsilon&b'\\
0&\eta
\end{pmatrix}
.
\end{equation*}
\end{document}
答案2
对于可重复的模式使用宏可能会有用:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\def\epse#1{\left(\begin{array}{cc}
\epsilon& #1\\
0 &\eta
\end{array}
\right)}
\def\onet{\left(\begin{array}{cc}
1& 0\\
0 &2
\end{array}
\right)}
\begin{gather*}
\onet\epse{b'}\onet^{-1}=\epse{2b'}\\[6pt]
\epse{b}\sim\epse{b'}
\end{gather*}
\end{document}