Code
\documentclass[xcolor={x11names,table}]{beamer}
% http://tex.stackexchange.com/a/303060/13173
% http://tex.stackexchange.com/a/303091/13173
% http://tex.stackexchange.com/a/196808/13173
% http://tex.stackexchange.com/a/303021/13173
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[TS1,T1]{fontenc}
\usefonttheme{professionalfonts}% otherwise fourier's font configuration will be partially overridden
\usepackage{fourier, heuristica}
\usepackage{array, booktabs}
\usepackage{caption}
\newcommand{\foo}{%
\color{LightSteelBlue3}%
\makebox[0pt]{\textbullet}%
\hskip-0.5pt\vrule width 1pt%
\hspace{\labelsep}%
}
\newlength{\CVbreakdotsep}% length to change spacing between dots
\setlength{\CVbreakdotsep}{0.6mm}
\newcommand{\CVbreakdot}{% command for smaller dots
\scalebox{0.6}{\textbullet}%
}
\newcommand{\CVbreak}{% command for the break itself
\multicolumn{2}{l}{%
\hspace*{8.715mm}% <--- align dots with vertical line
\rotatebox[origin=c]{-90}{%
\color{LightSteelBlue3}%
\hspace{2mm}% <--- extra vertical space
\CVbreakdot\kern\CVbreakdotsep\CVbreakdot\kern\CVbreakdotsep\CVbreakdot
\hspace{2mm}% <--- extra vertical space
}%
} \\%
}
\begin{document}
\begin{frame}
\begin{table}
\renewcommand\arraystretch{1.4}
\caption{Timeline, really?}\vskip -1.5ex
\arrayrulecolor{LightSteelBlue3}
\begin{tabular}{@{\,}r <{\hskip 2pt} !{\foo} >{\raggedright\arraybackslash}p{5cm}}
\toprule
\addlinespace[1.5ex]
1969 & Lassa virus. \\
\CVbreak
1989 & Guanarito virus, Venezuela. \\
\end{tabular}
\end{table}
\end{frame}
\end{document}
Nunkulla's Test Code
Have the following line before \caption{...}
\captionsetup{labelformat=empty}
I run Nunkulla's code in my system of OS X 10.11.4 with MacTeX 2015 and I see no such an effect as Nunkulla sees, and I did have \captionsetup{...} active in one instance
Solution: Run TeX Live Utility and update packages. The ticket and ... were issued after the release of MacTeX 2015 so are not included in the package. The same output as in the accepted answer now.
How can you have no Table in Beamer's Cut?



\usepackage{caption}\captionsetup{labelformat=empty}. See here: http://tex.stackexchange.com/questions/41880/table-caption-without-the-word-table – Ross Apr 08 '16 at 17:12\usepackage{caption} \captionsetup{labelformat=empty}. – Léo Léopold Hertz 준영 Apr 08 '16 at 17:16\usepackage{array, booktabs}? – Ross Apr 08 '16 at 17:23TeX Live Utilityfor updates. – Léo Léopold Hertz 준영 Apr 09 '16 at 14:14