我想在乳胶中绘制一个带有一些数学公式的表格。你能帮我做这个吗?
答案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}