对于如下所示的简单矩阵方程,我得到的矩阵条目是底部对齐的,而不是居中对齐的。我在 StackExchange 上找到了一些使用 arraystretch、vphantom、struts 等的花哨行编辑。我的是一个简单的方程,我希望将其垂直居中并带有等号。这是一篇 IEEE 论文,因此我使用 IEEEtran.cls 以防万一。我很感激任何建议。
\begin{equation}
z =& \begin{bmatrix} H & \vdots & M \end{bmatrix}\begin{bmatrix} x \\ \cdots
\\ f\end{bmatrix} + e\\
\end{equation}
答案1
您没有提供 MWE,因此我假设您使用的是标准 10pt 文章类别。
作为埃格尔 正确地说你混淆了垂直点和水平点,但这里仍然可以解决你的问题:
\documentclass[10pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
z = \begin{bmatrix} \vspace{1.5pt}H & \vdots & \vspace{1.5pt}M \end{bmatrix}\begin{bmatrix} x \\ \cdots
\\ f\end{bmatrix} + e\\
\end{equation}
\end{document}
我还删除了&
等号后面的,输出如下: