LaTeX表格字体大小控制

Posted on 2016-07-19 15:54  morxio  阅读(7917)  评论(0编辑  收藏  举报

这是一个很简单,但不知道会一筹莫展的问题。

\begin{table}[H]
\small                     %在这里插入字体大小控制语句
	\centering
	\begin{threeparttable}
		\caption{LaTeX表格字体大小控制}
		\begin{tabular*}{1.0\textwidth}{@{\extracolsep{\fill}}lcccr}
			\toprule
			1        2 	&    3     & 4  &   5  &  \\
			\midrule
			1        2 	&    3     & 4  &   5  &  \\
                        1        2 	&    3     & 4  &   5  &  \\
			\bottomrule
		\end{tabular*}
	\end{threeparttable}
\end{table}