使用 beamerarticle 将 Beamer Frame 中的表格内容转换为文档时,表格内容会丢失

使用 beamerarticle 将 Beamer Frame 中的表格内容转换为文档时,表格内容会丢失

我有一张投影仪幻灯片,其表格定义slides.tex如下:

\begin{frame}{Results: Partitions-Medial Computation}
\begin{table}[!h]
\begin{tabular}[h]{@{}r r r r @{}}
\toprule
{\bf Type } & {\bf Shape } & {\bf Partitions} & {\bf Midcurves}\\
\midrule
%
%
\bottomrule
\end{tabular}
\end{table}
\end{frame}

我需要使用这些幻灯片准备一份文档,因此我使用:

\documentclass[a4paper]{article}
\usepackage{booktabs}
\usepackage{beamerarticle}
\begin{document}
%
\input{slides} % as shown above
%
\end{document}

未显示表格的内容。

当我注释掉\begin{table}\end{table}保留tabular环境时,它工作正常。但是这样我就失去caption/labeltable.

任何想法?

相关内容