在表格环境中居中文本

在表格环境中居中文本

大家好,

这对我来说看起来不太美观,我希望文本特别在框中居中$\frac{1}{s^n}$。非常感谢您的帮助。

\documentclass{report}

\usepackage{amsmath} 

\begin{document}
\begin{table}[H]\centering\label{laplaceintegral}
\begin{tabular}{|c|c|c|}
\hline 
Item & $\text{Functions ($t$ domain)}$ & $\text{Laplace Transforms ($s$ domain)}$\\
\hline\hline
1&$\int_0^t x(\tau)d\tau$ & $\displaystyle\frac{1}{s}\cdot X(s)$\\ \hline
2&$\underbrace{\int_0^{t}\ldots\int_0^{t_3}\int_0^{t_2}}_{n\text{times}} %
    x\left(\tau_1\right)d\tau_1dt d\tau_2\ldots d\tau_n$ %
    & $\displaystyle \frac{1}{s^n}\cdot X(s)$ \\ \hline
\end{tabular}
\caption{Laplace transform of integral}
\end{table}

\end{document}

先感谢您。

答案1

我建议删除分隔行条目的水平规则,以及所有垂直规则 -tabular已经鼓励了列上下文自然. 更多信息请阅读booktabs 文档

按照booktabs'建议,将空间稍微拉大一些:

在此处输入图片描述

\documentclass{report}
\usepackage{float}% http://ctan.org/pkg/float
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\usepackage{booktabs}% http://ctan.org/pkg/booktabs
\newcommand{\dt}{\mathrm{d}t}
\begin{document}

\begin{table}%[H]
  \centering
  \begin{tabular}{ccc}
    \toprule
    Item & $\text{Functions ($t$~domain)}$ & $\text{Laplace Transforms ($s$~domain)}$ \\
    \midrule
    1 & $\int_0^t x(\tau)d\tau$ & $\displaystyle\frac{1}{s}\cdot X(s)$ \\
    2 & $\underbrace{\int_0^{t}\ldots\int_0^{t_3}\int_0^{t_2}}_{n~\text{times}} 
      x\left(\tau_1\right)d\tau_1\dt d\tau_2\ldots d\tau_n
      \vphantom{\overbrace{\int_0^{t}\ldots\int_0^{t_3}\int_0^{t_2}}^{n~\text{times}}}$ & 
      $\displaystyle \frac{1}{s^n}\cdot X(s)$ \\
    \bottomrule
  \end{tabular}
  \caption{Laplace transform of integral}
\end{table}

\end{document}

我添加了一个\vphantom单元格 (2,2),它增加了一些垂直空间,相当于“n 次”启动的下降。使用\\[<len>](其中<len>是某个长度) 也可以。

最后,你需要放置\label \caption总是。 看为什么环境的标签必须出现在标题之后?

相关内容