矩阵的设定单位/对齐问题

矩阵的设定单位/对齐问题

如何获得矩阵 [m] 的单位,如图所示。

required matrix

\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\begin{document}
\begin{equation}\label{eq:appendrow}
    ScanPos=\left[ \begin{matrix}
        A \\
        B \\
        C\\
    \end{matrix} \right]=\left[\begin{array}{ccc}   
    -3.3816  & \ -1.6166  & \ 1.75\\ 
    -3.3816  & \ -1.6166 & \  1.5\\ 
    -3.3816 & \ -1.6166  & \  1.25\\
\end{array}\right]{[}m{]}
\end{equation}
\end{document}

答案1

几乎相同的解决方案,略有改进:

\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{mathtools}
\usepackage{babel}

\begin{document}

\begin{equation}\label{eq:appendrow}\renewcommand\arraycolsep{0.67em}
  \text{ScanPos}=\begin{bmatrix}
  A \\
  B \\
  C\\
  \end{bmatrix}=\begin{bmatrix}
  -3.3816 & -1.6166 & 1.75\\
  -3.3816 & -1.6166 & 1.5\hphantom{0}\\
  -3.3816 & -1.6166 & 1.25\\
  \end{bmatrix}_{[\mathrm m]}
\end{equation}

\end{document} 

enter image description here

答案2

这是你想要的吗?

enter image description here

\documentclass[english]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}\label{eq:appendrow}
    \text{ScanPos}=
    \begin{bmatrix}
        A B C
    \end{bmatrix}=
    \begin{bmatrix}
    -3.3816  & \ -1.6166  & \ 1.75\\ 
    -3.3816  & \ -1.6166  & \  1.5\\ 
    -3.3816  & \ -1.6166  & \  1.25\\
    \end{bmatrix}_{[m]}
\end{equation}
\end{document}

相关内容