[Tex/LaTex] Small caps and bold styles in beamer

beamerboldfontssmall-caps

I am trying to use small caps and boldface styles together in beamer but it is not producing the desired output. How is possible to use both styles without changing too much the default beamer's font?

By the way, I tried the answers given here for a similar question but they only seem to work within the article class.

Here is a MWE:

\documentclass{beamer}

% Needed encodings
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\begin{document}

\begin{frame}
\textbf{\textsc{Test}}
\end{frame}

\end{document}

And its output:enter image description here

Best Answer

The sans-serif default font does not have small capitals.

You can use a different font, eg KP Sans-Serif. With \usepackage[sfmath]{kpfonts} in the preambule it produces the following result:

enter image description here