LaTex将表格居于文档中间

导入booktabs包:

\usepackage{booktabs}

插入表格处:

\begin{table}[!htbp] %table环境,[]中换成h!效果相同
		\centering % 表示居中
		\begin{tabular}{cc} % 表示两列
			\toprule  % 添加表格头部粗线
			符号& 意义\\
			\midrule  % 添加表格中横线
			Steve Jobs& 001\\
			Bill Gates& 002\\
			\bottomrule % 添加表格底部粗线
		\end{tabular}
\end{table}

在这个例子中,h!参数代表着表格的位置是必须这里,它覆盖了LaTeX表格的默认设定。其他可能的位置参数包括:

h表示大约出现在这里(here);

t表示出现在页面的顶部(top);

b表示出现在页面的底部(bottom);

p表示将表格放置在一个专门放置表格的特殊页面;

!表示覆盖LaTeX内部的参数;

H将表格精确地放置在其出现的位置,一般等价于h!

你可能感兴趣的:(latex)