Latex表格超页宽解决方法
Latex排版时表格超出页宽解决办法
两个思路
1、字号调小
2、表格限宽
字号调小
可以利用字号限制大小从而调整表格自适应大小1
具体方法,使用以下参数限制
\tiny
\scriptsize
\footnotesize
\small
\normalsize
\large
\Large
\LARGE
\huge
\Huge
限制表格宽度
可以利用命令限制强制表格宽度从而调整表格自适应大小
\resizebox{.5\textwidth}{!}{
\begin{tabular}{ccccccccc}
\toprule
xxxx
\bottomrule
\end{tabular}
}