latex将表格居于文档中间

\usepackage{booktabs}

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

猜你喜欢

转载自blog.csdn.net/DwenKing/article/details/108101977
今日推荐