beamer 中的新浮动环境

beamer 中的新浮动环境

我正在写一个演示文稿,我需要一种新的浮点类型“Quadro”。我正在使用 beamer。巴西样式表要求所有表格(用于定量​​数据)和“Quadros”(包含文本和定性数据的表格)都命名为:表 1:XXXXXX。

我尝试了很多种方法,但都无果。以下是我的一些尝试。正如我在序言中尝试的那样:

\usepackage{float}
\newfloat{quadro}{thp}{lop}
\floatname{quadro}{Quadro}

并在文档中写道:

\begin{block}{O livro e seu protagonismo}
O livro tem se caracterizado como principal recurso há 400 anos
\end{block}
\rowcolors{1}{}{lightgray}
\begin{quadro}    
\begin{center}
        \begin{tabular}{|c||c|}
    \hline 
    Reutilizar & Revisar \\ 
    Sim & Não \\ 
    \hline 
        \hline 
    Recombinar & Redistribuir \\ 
    Não & Depende \\ 
    \hline 
\end{tabular} 
\end{center}
\caption{Status do livro didático enquanto recurso}
\end{quadro}
\end{frame}

但我收到以下错误消息:

Not in outer par mode. \end{frame}
Undefined control sequence. \end{frame}
Missing number, treated as zero. \end{frame}
Undefined control sequence. \end{frame}
Missing number, treated as zero. \end{frame}
Undefined control sequence. \end{frame}
Missing number, treated as zero. \end{frame}

谢谢

答案1

作为萨姆卡特 她在评论中说,定义新的浮点数来替换标准table并将其用作标准表,这是没有意义的。我会用更简单(更短)的标准方式编写你的表格代码示例:

\documentclass[xcolor={svgnames,table}]{beamer}
\setbeamertemplate{caption}[numbered]% for numbered figures and tables captions

\begin{document}
\begin{frame}
\frametitle{use of tables \dots}
\begin{block}{O livro e seu protagonismo}
O livro tem se caracterizado como principal recurso há 400 anos
\end{block}

\begin{table}
\rowcolors{1}{LightGray}{}
\centering
        \begin{tabular}{|c|c|}
    \hline
    Reutilizar & Revisar \\
    Sim & Não \\
    \hline
    \hline
    Recombinar & Redistribuir \\
    Não & Depende \\
    \hline
\end{tabular}
\caption{Status do livro didático enquanto recurso}
\end{table}
\end{frame}
\end{document}

这使:

在此处输入图片描述

相关内容