在经典论文环境中将间隔大写字母加粗

在经典论文环境中将间隔大写字母加粗

在经典论文环境中,我想将间隔大写字母加粗。有人能告诉我如何做到这一点吗?因为\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}

在此处输入图片描述

相关内容