一:设置表格整体大小:
\resizebox{width}{height}
命令来控制表格的整体高度和宽度
\resizebox{0.45\textwidth}{!}{表格内容}
将表格缩小到页面宽度的45%,高度自适应。
\begin{table}[h]
\centering
\resizebox{0.45\textwidth}{1.0in}{\begin{tabular}{|c|c|c|}
\hline
\diagbox{llf\\smz}{lxq\\xcn}& yqq & grd\\ %添加斜线表头
\hline
aa & 1.1 & 1.2 \\
\hline
bb & 1.3 & 1.8 \\
\hline
\end{tabular}}
\caption{hsss}
\end{table}
二:设置表格每个单元格宽高
\renewcommand{\arraystretch}{1.2} :将单元格高拉伸到1.2倍。
\begin{tabular}{<column spec>}
命令中的<column spec>
参数可以控制单元格的宽度:
\begin{table}
\centering
\begin{tabular}{|p{2cm}|p{3cm}|p{4cm}|}
\hline
A & B & C \\
\hline
1 & 2 & 3 \\
\hline
4 & 5 & 6 \\
\hline
\end{tabular}
\caption{Example table.}
\end{table}
参考资料:
LaTeX如何控制表格整体高度和宽度_latex缩小表格_UCAS_V的博客-CSDN博客
LaTeX 控制表格的每行高度和单元格宽度_latex表格高度_UCAS_V的博客-CSDN博客