在經典論文環境中使間隔大寫字母加粗

在經典論文環境中使間隔大寫字母加粗

在經典的論文環境中,我想讓間隔大寫字母加粗。有人可以告訴我如何執行此操作,因為\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}

在此輸入影像描述

相關內容