従来の論文環境でスペース付き大文字を太字にする

従来の論文環境でスペース付き大文字を太字にする

従来の論文環境で、スペースのある大文字を太字にしたいのですが、\textbfうまく動作しないので、その方法を教えていただけますか?

\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}

答え1

使用\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}

ここに画像の説明を入力してください

関連情報