tabularx 和 pmatrix 对齐问题

tabularx 和 pmatrix 对齐问题

为什么表格中的以下条目未垂直对齐?我发现第一列太低,第二列太高。

在此处输入图片描述

这是我的代码:

\documentclass{article}
\usepackage{tabularx,amsmath,color}

\begin{document}

\begin {centering}
    \huge{\textbf{Homogene Transformationen}} \\[20pt]
\end{centering}


\noindent
\begin{tabularx}{\textwidth}{XX}

\hline

    \color{red}{\textbf{Translation}} 

    &

    T = $\begin{pmatrix}
                1 & 0 & d_x \\
                0 & 1 & d_y \\
                0 & 0 & 1
    \end{pmatrix} $\\

    \hline
\end{tabularx}

\end{document}

答案1

\color不将文本作为参数着色,你应该使用

 \textcolor{red}{\textbf{Translation}} 

不是

 \color{red}{\textbf{Translation}} 

color正如包文档中所述,\color表格单元格的开始会影响定位,使用在\textcolor颜色改变之前开始段落可以避免该问题。

在此处输入图片描述

相关内容