如何使 pNiceMatrix 的第一列居中对齐?

如何使 pNiceMatrix 的第一列居中对齐?

如何使 pNiceMatrix 的第一列居中对齐?

在此处输入图片描述

\documentclass[journal]{IEEEtran}
\usepackage{graphicx}
\usepackage{mathtools}
\usepackage{nicematrix}

\begin{document}

$\begin{pNiceMatrix}[first-row,first-col]
    & V_{\mathrm{X}} & V_{\mathrm{XYZ}} & V_{\mathrm{TK}} \\
V_{\mathrm{X}}& C_1 & C_2 & C_3 \\
V_{\mathrm{XYZ}} & C_1 & C_2 & C_3  \\
V_{\mathrm{TK}} & C_1 & C_2 & C_3  \\
\end{pNiceMatrix}$

\end{document}

答案1

使用命令\Block\Block{n-m}{<content>}生成n多行 x多列单元格(在本例中为 1x1 单单元格)居中内容。

在此处输入图片描述

\documentclass[journal]{IEEEtran}
\usepackage{graphicx}
\usepackage{mathtools}
\usepackage{nicematrix}

\begin{document}
    

$\begin{pNiceMatrix}[first-row,first-col]
                                    & V_{\mathrm{X}} & V_{\mathrm{XYZ}} & V_{\mathrm{TK}} \\
    \Block{1-1}{V_{\mathrm{X}}}     & C_1 & C_2 & C_3 \\
    \Block{1-1}{V_{\mathrm{XYZ}}}   & C_1 & C_2 & C_3  \\
    \Block{1-1}{V_{\mathrm{TK}}}    & C_1 & C_2 & C_3  \\
\end{pNiceMatrix}$

\end{document}

相关内容