表格单元格中文本的垂直居中对齐

表格单元格中文本的垂直居中对齐

我正在尝试创建下表

在此处输入图片描述

但问题是第三列的大圆括号位于水平线上。有没有什么方法可以简单地将括号垂直居中对齐?

\begin{tabular}{ |c | c | c|}

\hline
\rowcolor{myblue} \textcolor{white}{Parabola} & \textcolor{white}{Equation of Tangent} & \textcolor{white}{Point of Contact} \\ 

 \rule{0pt}{25pt}\bm{$y^2=4ax$} & \bm{$\displaystyle y=mx+\frac{a}{m}$} & \bm{$\displaystyle \bigg(\frac{a}{m^2},\frac{2a}{m}\bigg)$}   \\ \hline  
 
\rule{0pt}{25pt}\bm{$y^2=-4ax$} & \bm{$\displaystyle y=mx-\frac{a}{m}$} & \bm{$\displaystyle  \bigg(-\frac{a}{m^2},\frac{2a}{m}\bigg)$}   \\  \hline
  
\rule{0pt}{20pt}\bm{$x^2=4ay$} & \bm{$\displaystyle y=mx-am^2$} & \bm{$\displaystyle \big(2am,am^2\big)$}   \\ \hline  
 
\rule{0pt}{20pt}\bm{$x^2=-4ay$} & \bm{$\displaystyle y=mx+am^2$} & \bm{$\displaystyle \big(-2am,-am^2\big)$}   \\   \hline 

\end{tabular}

答案1

我建议使用{NiceTabular}提供nicematrix参数cell-space-bottom-limit并受包的cell-space-top-limit长度\cellspacebottomlimit和启发。\cellspacetoplimitcellspace

{NiceTabular}colortbl旨在当规则与彩色面板结合使用时,在 PDF 查看器中提供比标准更好的效果。但是,您需要进行多次编译。

\documentclass{article}

\usepackage{nicematrix}

\begin{document}
\begin{center}
\everymath{\displaystyle}
\NiceMatrixOptions{cell-space-top-limit=2pt,cell-space-bottom-limit=2pt}
\begin{NiceTabular}{ccc}[hvlines,colortbl-like]
\rowcolor{blue!50} \textcolor{white}{Parabola} & \textcolor{white}{Equation of Tangent} & \textcolor{white}{Point of Contact} \\ 
$y^2=4ax$& $y=mx+\frac{a}{m}$& $\biggl(\frac{a}{m^2},\frac{2a}{m}\biggr)$  \\ 
$y^2=-4ax$ & $y=mx-\frac{a}{m}$ & $ \biggl(-\frac{a}{m^2},\frac{2a}{m}\biggr)$  \\  
$x^2=4ay$ & $y=mx-am^2$& $\bigl(2am,am^2\bigr)$  \\ 
$x^2=-4ay$ & $y=mx+am^2$& $\bigl(-2am,-am^2\bigr)$  \\   
\end{NiceTabular}
\end{center}
\end{document}

上述代码的输出

答案2

使用nccmathcellspacehhline包以及array表:


\documentclass{article}
\usepackage{nccmath}
\usepackage[table]{xcolor}
\usepackage{cellspace, hhline}
    \setlength\cellspacetoplimit{5pt}
    \setlength\cellspacebottomlimit{5pt}

\begin{document}
\[
    \begin{array}{ |c | c | >{$}Sc<{$}|}
    \hhline{---}
\rowcolor{blue!50} 
\text{\textcolor{white}{Parabola}} 
        & \text{\textcolor{white}{Equation of Tangent}} 
                & \text{\textcolor{white}{Point of Contact}}   \\
    \hhline{---}
y^2=4ax
    & y=mx+\frac{a}{m}
        & \Bigl(\mfrac{a}{m^2},\mfrac{2a}{m}\Bigr)      \\  \hhline{---}
y^2=-4ax
    & y=mx-\dfrac{a}{m}
        & \Bigl(-\mfrac{a}{m^2},\mfrac{2a}{m}\Bigr)     \\  \hhline{---}
x^2=4ay
    & y=mx-am^2
        & \bigl(2am,am^2\bigr)                          \\ \hhline{---}
{x^2=-4ay}
    & y=mx+am^2
        & \bigl(-2am,-am^2\bigr)                        \\ \hhline{---}
    \end{array}
\]
\end{document}

在此处输入图片描述

附录: 单元格中的方程式以等号对齐并指向逗号的版本:

\documentclass{article}
\usepackage{nccmath}
\usepackage[table]{xcolor}
\usepackage{cellspace, hhline}
    \setlength\cellspacetoplimit{5pt}
    \setlength\cellspacebottomlimit{5pt}
\usepackage{xparse}
\NewExpandableDocumentCommand\mcw{O{>{\color{white}}Sc|}m}
    {\multicolumn{2}{#1}{#2}}
\usepackage[skip=1ex]{caption}

\begin{document}
\[
\setlength\arrayrulewidth{0.5pt}
\setlength\arraycolsep{12pt}
    \begin{array}{ |r@{\,}l | >{\qquad}r@{\,}l | r@{,\,}>{$}Sl<{$}|}
    \hhline{*{6}{-}}
\rowcolor{blue!50}
\mcw[|>{\color{white}}Sc|]{Parabola}
        & \mcw{Equation of Tangent}
                & \mcw{Point of Contact}             \\
    \hhline{*{6}{-}}
y^2 & = 4ax
    & y & =mx+\frac{a}{m}
        & \Bigl(\mfrac{a}{m^2} & \mfrac{2a}{m}\Bigr)    \\  
    \hhline{*{6}{-}}
y^2 & = -4ax
    & y & = mx-\dfrac{a}{m}
        & \Bigl(-\mfrac{a}{m^2} & \mfrac{2a}{m}\Bigr)   \\  
    \hhline{*{6}{-}}
x^2 & = 4ay
    & y & = mx-am^2
        & \bigl(2am & am^2\bigr)                        \\ 
    \hhline{*{6}{-}}
x^2 & = -4ay
    & y & = mx+am^2
        & \bigl(-2am & -am^2\bigr)                      \\ 
    \hhline{*{6}{-}}
    \end{array}
\]
\end{document}

在此处输入图片描述

相关内容