我有两个矩阵,我想在显示模式下将它们并排渲染,并在它们之间留出适当的空间。在 LyX 中应该如何实现?
答案1
不知道 LyX 中的情况如何,但这里有一种使用 LaTeX 的方法:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
A=
\begin{bmatrix}
0 & 1 & 1 \\
1 & 0 & 1
\end{bmatrix}\quad
B=
\begin{bmatrix}
1 & 0 & 0 \\
0 & 1 & 0
\end{bmatrix}
\]
\end{document}
答案2
在 LaTeX 中并排显示两个矩阵应该(是!)与编辑器(LyX)无关。下面是一个最小示例,展示了如何将两个矩阵并排放置:
\documentclass{article}
\begin{document}
This is text.
\[
\left[\begin{array}{cc}
a & b \\
c & d
\end{array}\right] \qquad
\left[\begin{array}{cc}
e & f \\
g & h
\end{array}\right]
\]
This is some more text.
\end{document}
两个矩阵之间的间距使用\qquad
(two \quad
s) 指定。但是,您可以更改此设置。例如,您可能需要\hspace{5em}
或\qquad \qquad
(4 \quad
s) 或其他任何值。