如何编写这样的矩阵

如何编写这样的矩阵

如何编写这样的矩阵 在此处输入图片描述

我试过这个

$$
\begin{pmatrix}
J_0 & O &\cdots\\
0& J_{n+1} & 0\cdots
\end{pmatrix}
$$

我不知道该怎么办

答案1

这些例子中有一个适合您吗?

\documentclass[preview]{standalone}

\usepackage{amsmath}

\begin{document}
\(
    \begin{pmatrix}
        J_0    & 0       & \cdots & 0      \\
        0      & J_{n+1} & \cdots & 0      \\
        \vdots & \vdots  & \ddots & \vdots \\
        0      & 0       & \cdots & J_r
    \end{pmatrix}
\)
\(
    \begin{pmatrix}
        J_0    & 0       & \cdots &     \\
        0      & J_{n+1} & \cdots &     \\
        \vdots & \vdots  & \ddots &     \\
               &         &        & J_r
    \end{pmatrix}
\)
\end{document}

结果: 在此处输入图片描述 我个人更喜欢左边的,因为它留下的误解空间更小。

为什么 \[ ... \] 比 $$ ... $$ 更可取?为什么我使用\( \)而不是$$ $$

相关内容