Großbuchstaben in der klassischen Thesis-Umgebung fett formatieren

Großbuchstaben in der klassischen Thesis-Umgebung fett formatieren

In einer klassischen Thesis-Umgebung möchte ich Großbuchstaben fett formatieren. Kann mir jemand sagen, wie das geht, da \textbfes nicht richtig funktioniert?

\documentclass{article}

\usepackage[nochapters]{classicthesis} % Use the classicthesis style for the style of the document
\usepackage{color}
\usepackage{changepage}


\begin{document}

{\color{Maroon}\noindent\footnotesize\spacedallcaps{Personal Information}}\vspace{1pc} 

\end{document}

Antwort1

Verwenden \bfseries:

\documentclass{article}

\usepackage[nochapters]{classicthesis} % Use the classicthesis style for the style of the document
\usepackage{color}


\begin{document}

{\color{Maroon}\noindent\footnotesize\bfseries\spacedallcaps{Personal Information}}\vspace{1pc}

\end{document}

Bildbeschreibung hier eingeben

verwandte Informationen