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?
I'm trying to get some bold, colored, small-cap text. I've tried different variations, including:
and it doesn't work. Any suggestions? |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
If you do
|
|||
|
\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 6 '12 at 4:10