고전적인 논문 환경에서 간격이 있는 대문자를 굵게 만듭니다.

고전적인 논문 환경에서 간격이 있는 대문자를 굵게 만듭니다.

고전적인 논문 환경에서는 간격이 있는 대문자를 굵게 만들고 싶습니다. \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}

여기에 이미지 설명을 입력하세요

관련 정보