如何使该表的内容垂直对齐?

如何使该表的内容垂直对齐?

我有这张表:

\begin{table}[!h]
    \normalsize
    \caption{Elementos ideias e suas estampas na Formulação Nodal Modificada.}
    \label{tab:anm_estampas}
    \begin{center}
        %\setlength{\tabcolsep}{8pt}
        \begin{tabular}{l | c | l | c }
            \hline Elemento & Símbolo & Estampa & Equações  \\\hline
            Resistor                    &   \figresistor        &    \estamparesistor   &   \eqresistor     \\
            Fonte de Corrente           &   \figfontecorrentecc &       & \eqfontecorrentecc    \\
            Fonte de Tensão             &   \figfontetensaocc   &       & \eqfontetensaocc      \\
            Circuito Aberto             &   \figcircuitoaberto  &       & \eqcircuitoaberto     \\
            Curto                       &   \figcircuitofechado &       & \eqcurto              \\
            Amplificador Operacional    &   \figcircuitoampop   &       & \eqampop              \\
        \end{tabular}
    \end{center}
    \fonte{Figuras do Autor}
\end{table}

生成下表:

在此处输入图片描述

我正在尝试垂直对齐所有单元格的内容。

答案1

您可以定义

 \def\vcent#1{$\vcenter{\hbox{#1}}$}

然后你就可以写\vcent\figresistor,,,等等。\vcent\estamparesistor\vcent\eqresistor\vcent\figfontecorrentecc

相关内容