LaTeX:使用子图页时表格标题出现问题

LaTeX:使用子图页时表格标题出现问题

我运行的是 Arch Linux,texlive 版本为 2019.52579-1。当我编译下面的 LaTeX(Beamer)代码时,表格标题是“图:一个简单的表格”。也就是说,它包含“图:”而不是“表格:”。当不使用 subfig 包或使用已弃用的 subfigure 包时,不会出现此问题。欢迎提出建议。谢谢。

\documentclass{beamer}

\usepackage[utf8]{inputenc}
\usetheme{default}

\usepackage{subfig}

\begin{document}

\begin{frame}{A simple frame}

\begin{table} 
\caption{A simple table.}
\begin{tabular}{ll}
\hline
a & b \\
c & d \\        
\hline                 
\end{tabular} 
\end{table}

\end{frame}

\end{document}

相关内容