表格中的数学公式

表格中的数学公式

我想在乳胶中绘制一个带有一些数学公式的表格。你能帮我做这个吗? 在此处输入图片描述

答案1

我建议你

  • 使用array而不是tabular环境 作为主要结构:由于表格的所有材料(标题行除外)都应在数学模式下排版,因此使用tabular并不方便,因为您必须输入大量$符号(每个单元格一对)才能进入和退出数学模式。请注意,array环境必须处于数学模式。

  • 加载amsmath包(您可能已经这样做了)并使用该包的\text宏以直立字体形状呈现标题行中的材料。

  • 使用\vdots宏创建带有三个垂直点的符号

  • 使用包的宏booktabs来获得间距良好的水平线。

这是表格的起始模板;我将让您填写缺失的单元格。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath,caption,booktabs}
\begin{document}
\begin{table}
\centering
$\begin{array}{ ccccc }
\toprule
\text{harmonic} & \text{period} & \text{frequency} & \text{frequency} & \text{contribution}\\
& & (\text{cycle/samp.~int.}) & (\text{rad/samp.~int.}) & \text{to variance}\\
\midrule
1 & n & 1/n & 2\pi/n & \frac{1}{2}A_1^2\\
2 & & & & \\
3 & & & & \\
\vdots & & & & \\
n/2-1 & & & & \\
n/2 & & & & \\
\bottomrule
\end{array}$
\end{table}
\end{document} 

相关内容