为什么 Latex 将矩阵拆分成多行

为什么 Latex 将矩阵拆分成多行

我有多个矩阵,如下面的代码所示。我不知道为什么 latex 会将左侧矩阵的每一行拆分成多行。

\documentclass{article}
\usepackage{amsmath}
\usepackage{pdflscape}

\begin{document}

\begin{landscape}
\[
\begin{bmatrix}
    0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 \\
    0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 \\
    0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 \\
    \vdots &  &  &  & \vdots &  &  &  &  & \vdots &  &  &  &  & \vdots &  &  &  &  & \vdots & \\
\end{bmatrix}
%
\begin{bmatrix}
$x_{00}$\\
$x_{01}$\\
$x_{02}$\\
$x_{03}$\\
\vdots\\
$x_{10}$\\
$x_{11}$\\
$x_{12}$\\
$x_{13}$\\
\vdots\\
$x_{(10)0}$\\
$x_{(10)1}$\\
$x_{(10)2}$\\
$x_{(10)3}$\\
\vdots\\
$w_0$\\
$w_1$\\
$w_2$\\
$w_3$\\
\vdots\\
$w_{10}$
\end{bmatrix}
%
\begin{bmatrix}
$\leq$\\
$\leq$\\
$\leq$\\
\vdots\\
$\leq$\\
$\leq$\\
$\leq$\\
\vdots\\
$=$\\
$=$\\
$=$\\
$=$\\
$=$\\
$=$\\
\vdots\\
$\geq$\\
$\geq$\\
$\geq$\\
\vdots\\
$=$\\
$\leq$\\
$\leq$\\
$\leq$\\
\vdots
\end{bmatrix}
%
\begin{bmatrix}
$1$\\
$1$\\
$1$\\
\vdots\\
$1$\\
$1$\\
$1$\\
\vdots\\
$1$\\
$1$\\
$0$\\
$0$\\
$0$\\
$0$\\
\vdots\\
$g_1-M$\\
$g_2-M$\\
$g_3-M$\\
\vdots\\
$0$\\
$C_1$\\
$C_1$\\
$C_1$\\
\vdots
\end{bmatrix}
\]
\end{landscape}

\end{document}

答案1

您的代码产生

! Extra alignment tab has been changed to \cr.
<recently read> \endtemplate 
                             
l.10 ... 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots &
                                                   0 \\
? x

由于它有超过 10 列,因此添加

\setcounter{MaxMatrixCols}{40}

然后你得到

! Missing $ inserted.
<inserted text> 
                $
l.18 $x_
        {00}$\\
?

删除所有$已经处于数学模式的内容。

在没有报告错误之前,不要看 PDF。经过上述更改后,您将获得

在此处输入图片描述

这看起来好多了,但我可能毁了你的数据

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\usepackage{pdflscape}

\begin{document}

\setcounter{MaxMatrixCols}{40}
\renewcommand\arraystretch{1.5}
\begin{landscape}
\[
\begin{bmatrix}
    0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 \\
    0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 \\
    0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 & 0 & 0 & 0 & \ldots & 0 \\
    \vdots &  &  &  & \vdots &  &  &  &  & \vdots &  &  &  &  & \vdots &  &  &  &  & \vdots & \\
\end{bmatrix}
%
\begin{bmatrix}
x_{00}\\
x_{01}\\
x_{02}\\
%x_{03}\\
\vdots\\
x_{10}\\
x_{11}\\
x_{12}\\
%x_{13}\\
\vdots\\
x_{(10)0}\\
x_{(10)1}\\
x_{(10)2}\\
%x_{(10)3}\\
\vdots\\
w_0\\
w_1\\
w_2\\
%w_3\\
\vdots\\
w_{10}
\end{bmatrix}
%
\begin{bmatrix}
\leq\\
\leq\\
\leq\\
\vdots\\
\leq\\
\leq\\
\leq\\
\vdots\\
%=\\
%=\\
%=\\
=\\
=\\
=\\
\vdots\\
\geq\\
\geq\\
\geq\\
\vdots\\
%=\\
%\leq\\
%\leq\\
\leq\\
%\vdots
\end{bmatrix}
%
\begin{bmatrix}
1\\
1\\
1\\
\vdots\\
1\\
1\\
1\\
\vdots\\
1\\
1\\
0\\
%0\\
%0\\
%0\\
\vdots\\
g_1-M\\
g_2-M\\
g_3-M\\
\vdots\\
%0\\
%C_1\\
%C_1\\
C_1\\
%\vdots
\end{bmatrix}
\]
\end{landscape}

\end{document}

相关内容