[Tex/LaTex] Using \scshape and \bfseries together

boldfontsformattingsmall-caps

A very obvious one I suspect, but when I try to do the following the small caps are over-ruled by the boldface, so I get lowercase rhubarb rhubarb. Is there an easy way to get \scshape\bfseries?

\documentclass[10pt]{article}    
\begin{document}
\bfseries\scshape rhubarb rhubarb
\end{document}

Best Answer

Some fonts support this. The incomplete list is:

\documentclass[10pt]{article}
\usepackage{libertine}
%\usepackage{mathpazo}
%\usepackage{newtxtext}
%\usepackage{charter}
%\usepackage{kpfonts}
%\usepackage{fourier}
%\usepackage[garamond]{mathdesign}
%\usepackage{pxfonts}
\begin{document}
\bfseries\scshape Rhubarb Rhubarb
\end{document}
Related Question