投影机中的表格编号

投影机中的表格编号

在此处输入图片描述

我正在编写一个 beamer 演示文稿,但当使用 \caption 包含表格时,标题左侧会出现“表格:...”,但没有表格编号。有没有办法给表格编号?比如“表格 1:.....”,然后是下一张幻灯片上的“表格 2:...”。

这是我的 MWE:

          \documentclass{beamer}
          \usetheme{Madrid}
          \usepackage{threeparttable}

          \begin{document}
          \begin{frame}{Results}
          \begin{table}[H]
          \centering

          \caption{\smallFertility intentions and measures of employment 
           security and economic uncertainty }


          \scalebox{0.8}{
          \begin{threeparttable}
          \begin{tabular}{lcccc}

          \hline
          \hline
          & (1)   & (2)   & (3)   & (4)  \bigstrut\\
           VARIABLES & Baseline 1 & Baseline 2 & Women & Men   &  

           \hline  \rule{0pt}{3ex}
             % &       &       &      & \bigstrut\\
            Job keeping & 0.0392 & 0.0300 & 0.0656 & -0.0241\\
            & (0.0352) & (0.0362) & (0.0434) & (0.0841) \\
            \hline
          Job seeking & 0.110*** & 0.0944*** & 0.0754* & 0.165**   \\
         & (0.0318) & (0.0321) & (0.0399) & (0.0673)  \\
          \hline
         Financial security & 0.124*** & 0.0942** & 0.0686 & 0.128  \\
        & (0.0438) & (0.0455) & (0.0521) & (0.105)  \\
        \hline
         Social mobility & 0.0751** & 0.0577 & 0.0387 & 0.0909  \\
          & (0.0360) & (0.0358) & (0.0454) & (0.0706)  \\
      \hline

       \multicolumn{5}{l}{\footnotesize  Significance levels: *** p$<$0.01, 
       ** p$<$0.05, * p$<$0.1.} \\
       \end{tabular}
       \end{threeparttable}}

       \end{table}

       \end{frame}
       \end{document}

答案1

我无法编译你的代码,但为了获得编号标题,你可以使用

\setbeamertemplate{caption}[numbered]

在你的序言中。


其他一些评论:

  • 浮点说明符(例如,[H]在没有浮点的文档类中没有多大意义)

  • 请不要缩放包含文本的元素,而应使用较小的字体大小。另请参阅为什么不缩放包含文本的元素

  • 请考虑使用booktabs包装 - 它为您的桌子提供了更好的空间

相关内容