beamer currently is incompatible with the caption package (as described here). I would like to define an additional command that works like the \caption* command of that package, i.e. typesets the caption without label and without entry in the list of tables/figures, but has the same formatting as the regular \caption-command. Important: I do still need the normal \caption command, so I cannot just globally redefine \setbeamertemplate{caption}
I am thinking about something along the lines of
\documentclass{beamer}
\usepackage[english]{babel}
\usepackage{caption}
\begin{document}
\begin{frame}{Some title}
\begin{table}
\begin{tabular}{cc}
A & B \\
C & D \\
\end{tabular}
\caption{Some numbered Table and its description. Even more and more and more text.}
\end{table}
\begin{table}
\begin{tabular}{cc}
A & B \\
C & D \\
\end{tabular}
\caption*{Some unnumbered Table and its description. Even more and more and more text.}
\end{table}
\end{frame}
\end{document}

caption(as pointed out by Joseph Wright) and I am looking for a different approach not involving that package. – jpfeifer Aug 20 '15 at 13:25\captionin beamer will be left-aligned. Of course, I could manually make them similar. But the goal is to inherit the formatting from the original\captioncommand – jpfeifer Aug 20 '15 at 14:26\caption*the second line is centered in the bottom table. – jpfeifer Aug 20 '15 at 14:44