线性方程组
\[6x_1 + 4x_2 = 9 \\
x_1 + 5x_2 = 0
\]
也可以描述为
\[ \left( \begin{array}{ccc}
6 & 4 & 9 \\
1 & 5 & 0 \end{array} \right).
\]
当它输入到乳胶中时,它9
会显示在旁边x_1
,我需要修复它。
答案1
\\
不能用于在数学模式下分段落...
你可能想要类似的东西
或者
代码(两者均适用)
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather*}
6x_1 + 4x_2 = 9\\
x_1 + 5x_2 = 0
\end{gather*}
\begin{align*}
6x_1 + 4x_2 & = 9\\
x_1 + 5x_2 & = 0
\end{align*}
\end{document}
答案2
您可能期望:
\documentclass{article}
\begin{document}
The system of linear equations
\[
\begin{array}{r}
6x_1 + 4x_2 = 9 \\
x_1 + 5x_2 = 0
\end{array}
\]
can be also depicted as
\[
\left( \begin{array}{ccc} 6 & 4 & 9 \\
1 & 5 & 0 \end{array}
\right).
\]
\end{document}
双反斜杠的含义取决于使用的位置。在纯方程中它没有结果,但在环境中array
它充当矩阵行的末尾。如果我们将它们向右调整,我们可以认为这里的行长为一列。