在 MacTex 中如何实现这样的事情:
答案1
一种可能性是使用array
; 第一列的编号是自动完成的:
\documentclass{article}
\usepackage{array}
\newcounter{myrow}
\begin{document}
\[
\begin{array}{>{\stepcounter{myrow}\themyrow}c|*{5}{c}}
\multicolumn{1}{c|}{} & 1 & 2 & 3 & 4 & 5 \\
\hline
& 0 & 1 & 0 & 1 & 0 \\
& 1 & 1 & 0 & 1 & 0 \\
& 0 & 1 & 1 & 1 & 0 \\
& 1 & 0 & 0 & 1 & 0 \\
& 0 & 1 & 1 & 1 & 0 \\
\end{array}
\]
\end{document}
或者:
\documentclass{article}
\usepackage{array}
\newcounter{myrow}
\begin{document}
\[
\begin{array}{c|*{5}{c}}
\multicolumn{1}{c|}{} & 1 & 2 & 3 & \cdots & n \\
\hline
1 & 0 & 1 & 0 & \cdots & \\
2 & 1 & 1 & 0 & \cdots & \\
3 & 0 & 1 & 1 & \cdots & \\
\vdots & \vdots & \vdots & \vdots & \ddots & \\
n & & & & & \\
\end{array}
\]
\end{document}