Possible Duplicate:
Small Caps and Bold Face
I'm trying to get some bold, colored, small-cap text. I've tried different variations, including:
{\bf \textcolor{blue}{\textsc{text}}}
and it doesn't work.
Any suggestions?
Possible Duplicate:
Small Caps and Bold Face
I'm trying to get some bold, colored, small-cap text. I've tried different variations, including:
{\bf \textcolor{blue}{\textsc{text}}}
and it doesn't work.
Any suggestions?
If you do \usepackage[T1]{fontenc} you have bold caps in your font avaiable. Don't use \bf and so on because they overwrite each other. Here is a MWE:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{xcolor}
\begin{document}
\textcolor{blue}{\textbf{\textsc{bold small blue caps}}}
\end{document}
\usepackage[T1]{fontenc}\usepackage{xcolor}and then\textcolor{blue}{\bfseries\textsc{text}}. Don't use the deprecated\bf. For more on this, see Will two-letter font style commands (\bf,\it, ...) ever be resurrected in LaTeX? – Werner Jan 06 '12 at 04:10