我在 LaTeX 文档中格式化了许多表格。我想将这些表格放入一个带有一个表格/幻灯片的 beamer 类中并保留表格格式。当我编译文档时,一切都按预期运行,但我的表格没有保留其原始格式。具体来说,我看不到我的bottomrule
线条。这是我的 MWE:
\usepackage{booktabs, caption}
\documentclass{beamer}
\title{Here is my Title}
\author{drbunsen}
\date{October 1st, 2011}
\begin{document}
\begin{frame}
\frametitle{My Slide Title}
\begin{table}[h]
\setlength{\arrayrulewidth}{1.5px}
\setlength{\tabcolsep}{10pt}
\centering
\begin{tabular}{lcccccc} \bottomrule
H1 & H2 & H3 & H4 & H5 & H6 & H7\\ \bottomrule
a & b & c & d & e & f & g \\
& 2 & 3 & 4 & 5 & 6 & 7 \\
\bottomrule
\end{tabular}
\caption{This is my caption}
\end{table}
\end{frame}
\end{document}
我如何在 Beamer 中保留我的 LaTeX 表格格式/样式?提前感谢您的帮助。
答案1
在 之后加载包(booktabs
,caption
)\documentclass
,而不是在 之前。
我可以确认,如果以错误的顺序加载,就会产生错误并且会丢失行。但是,按正确的顺序加载则一切正常:
\documentclass{beamer}
\usepackage{booktabs}
\usepackage{caption}