彩色小型大写字母

彩色小型大写字母

可能重复:
小型大写字母和粗体

我想要获取一些粗体、彩色、小写字母的文本。我尝试了不同的变体,包括:

{\bf \textcolor{blue}{\textsc{text}}}

但它不起作用。

有什么建议么?

答案1

如果有的话,\usepackage[T1]{fontenc}您的字体中就有粗体大写字母。不要使用\bf等等,因为它们会互相覆盖。以下是 MWE:

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{xcolor}
\begin{document}
    \textcolor{blue}{\textbf{\textsc{bold small blue caps}}}
\end{document}

相关内容