问题:表格没有完全显示在 Beamer 文档的框架中。请指导我
\documentclass[12pt,fleqn]{beamer}
\usepackage{booktabs}
\begin{document}
\begin{frame}
\frametitle{A large table}
\resizebox{\textwidth}{!}{%
\begin{tabular}{*{5}{c}}
\toprule
$x$ & $y$ & $x^2$ & $y^2$ & $xy$ \\
\midrule
43 & 29 & 1849 & 841 & 1247 \\
44 & 31 & 1936 & 961 & 1364 \\
46 & 19 & 2116 & 361 & 874 \\
40 & 18 & 1600 & 324 & 720 \\
44 & 19 & 1936 & 361 & 836 \\
42 & 27 & 1764 & 729 & 1134 \\
45 & 27 & 2025 & 729 & 1215 \\
42 & 29 & 1764 & 841 & 1218 \\
38 & 41 & 1444 & 1681 & 1558 \\
40 & 30 & 1600 & 900 & 1200 \\
42 & 26 & 1764 & 676 & 1092 \\
57 & 10 & 3249 & 100 & 570\\
\bottomrule
\end{tabular}%
}
\end{frame}
\end{document}
答案1
切勿\resizebox
与表格一起使用——这会导致字体大小不一致,有时甚至导致表格无法阅读。
使用允许您指定整体表格宽度的环境,例如tabular*
或tabularx
。您还可以使用标准字体大小(\small
,等)和 的值\tabcolsep
。
在这种情况下,我建议使用`tabular* 的以下代码:
\documentclass[12pt,fleqn]{beamer}
\usepackage{booktabs}
\begin{document}
\begin{frame}
\frametitle{A large table}
\centering\begin{tabular*}{\framewidth}{@{\extracolsep{\fill}}*{5}{c}}
\toprule
$x$ & $y$ & $x^2$ & $y^2$ & $xy$ \\
\midrule
43 & 29 & 1849 & 841 & 1247 \\
44 & 31 & 1936 & 961 & 1364 \\
46 & 19 & 2116 & 361 & 874 \\
40 & 18 & 1600 & 324 & 720 \\
44 & 19 & 1936 & 361 & 836 \\
42 & 27 & 1764 & 729 & 1134 \\
45 & 27 & 2025 & 729 & 1215 \\
42 & 29 & 1764 & 841 & 1218 \\
38 & 41 & 1444 & 1681 & 1558 \\
40 & 30 & 1600 & 900 & 1200 \\
42 & 26 & 1764 & 676 & 1092 \\
57 & 10 & 3249 & 100 & 570\\
\bottomrule
\end{tabular*}
\end{frame}
\end{document}