在 LaTeX 中创建邻接矩阵

在 LaTeX 中创建邻接矩阵

我怎样才能在 LaTeX 中创建这样的邻接矩阵作为矢量图像?

在此处输入图片描述

答案1

使用\documentclass{standalone}可以避免使用 时在矩阵周围产生的大面积空白\documentclass{article}

\documentclass[border=2mm]{standalone}
\usepackage{amsmath}
\begin{document}
$\begin{pmatrix}
    2&1&0&0&1&0\\
    1&0&1&0&1&0\\
    0&1&0&1&0&0\\
    0&0&1&0&1&1\\
    1&1&0&1&0&0\\
    0&0&0&1&0&0\\
\end{pmatrix}$
\end{document}

在此处输入图片描述

相关内容