答案1
答案2
我们应该使用\Cdots
,,\Vdots
(\Ddots
除非您使用选项renew-dots
)。
\documentclass{article}
\usepackage{nicematrix}
\begin{document}
$\begin{pNiceMatrix}[extra-margin=2mm]
C_{0m}C_{0m} &C_{0m}C_{1m} & \Cdots \\
C_{1m}C_{0m} &\Ddots & \\
\Vdots & & \hspace*{5mm}\\
\end{pNiceMatrix}$
\end{document}
我已将\hspace*{5mm}
最后一个单元格设置为非空单元格(nicematrix
不喜欢空单元格)。
答案3
要画出漂亮的虚线对角线,从一个细胞的底部中心到另一个细胞的顶部中心,使用nicematrix
你需要做两件事:
(1)用一些内容填充单元格(不可见)。我选择这样做是\phantom{\cdots}
因为您可能最终还是想显示 cdot。
(2)使用\CodeAfter
绘制虚线对角线。
\documentclass{article}
\usepackage{nicematrix}
\begin{document}
\begin{align*}
\begin{pNiceMatrix}
C_{0m}C_{0m}& C_{0m}C_{1m} & \cdots \\
C_{1m}C_{0m}& \phantom{\cdots} & \\
\vdots & & \phantom{\cdots}\\
\CodeAfter % added <<<<<<<<<<<<
\line{2-2}{3-3}
\end{pNiceMatrix}
\end{align*}
\end{document}