大矩阵错误

大矩阵错误

我正在尝试生成一个非常大的矩阵:

\[
CM = \begin{bmatrix}
              0&          0&          0&     1.0000&          0&     1.0000&          0&     2.0000&          0&     3.3809&          0&     3.3809&          0&     2.3810&          0&    20.1921&          0&    20.1921\\
              0&          0&          0&          0&     1.0000&          0&    -2.0000&          0&    -2.0000&          0&    -6.1904&          0&    -2.3810&          0&    -2.3810&          0&     8.7975&          0\\
              0&          0&          0&          0&          0&     1.0000&          0&          0&          0&          0&          0&    -3.1904&          0&          0&          0&          0&          0&    10.1787\\
         1.0000&          0&     1.0000&          0&     2.0000&          0&     3.3809&          0&     3.3809&          0&     2.3810&          0&    20.1921&          0&    20.1921&          0&    35.1688&          0\\
              0&     1.0000&          0&    -2.0000&          0&    -2.0000&          0&    -6.1904&          0&    -2.3810&          0&    -2.3810&          0&     8.7975&          0&   -35.1688&          0&   -35.1688\\
              0&          0&     1.0000&          0&          0&          0&          0&          0&    -3.1904&          0&          0&          0&          0&          0&    10.1787&          0&          0&          0
\end{bmatrix}
\]

对于我来说语法似乎正确,但我收到此错误:

额外的对齐标签已更改为 \cr。... 0& 2.0000& 0& 3.3809&

...矩阵的每一行。出了什么问题?

答案1

尝试这个

    \documentclass[landscape]{article}
    \usepackage[margin=.25in]{geometry}
    \usepackage{amsmath}
    \begin{document}
    \tiny
    \setcounter{MaxMatrixCols}{18}
    \[
    CM = \begin{bmatrix}
    0& 0& 0& 1.0000& 0& 1.0000& 0& 2.0000& 0& 3.3809& 0& 3.3809& 0& 2.3810& 0&    20.1921& 0& 20.1921\\
    0& 0& 0& 0& 1.0000& 0& -2.0000& 0& -2.0000& 0& -6.1904& 0& -2.3810& 0& -2.3810&  0& 8.7975& 0\\
    0& 0& 0& 0& 0& 1.0000& 0& 0& 0& 0& 0& -3.1904& 0& 0& 0& 0& 0& 10.1787\\
    1.0000& 0& 1.0000& 0& 2.0000& 0& 3.3809& 0& 3.3809& 0& 2.3810& 0& 20.1921& 0& 20.1921& 0& 35.1688& 0\\
    0& 1.0000& 0& -2.0000& 0& -2.0000& 0& -6.1904& 0& -2.3810& 0& -2.3810& 0& 8.7975& 0& -35.1688& 0& -35.1688\\
    0& 0& 1.0000& 0& 0& 0& 0& 0& -3.1904& 0& 0& 0& 0& 0& 10.1787& 0& 0& 0
    \end{bmatrix}
    \]

    \end{document}

参考:输入 11 x 11(或更大)矩阵当然还有 amsldoc.pdf 手册。

相关内容