小型文档不支持粗体文本

小型文档不支持粗体文本

我有一个一页的小型乳胶文档。问题是\textbf{}无法使文本变为粗体。没有错误,但没有出现粗体文本。这是我的代码。

\documentclass[letterpaper]{twentysecondcv} % a4paper for A4

\begin{document}

\section{Education}

\begin{twenty} % Environment for a list with descriptions
    \twentyitem{2008-2016}{\textbf{Ph.D. in Computer Science} {\normalfont}}{}{\emph{Spezialisation in Analytics \& Machine Learning}}
    \twentyitem{2003-2006}{\textbf{MCA}}{}{Majoring in Computer Science}
    \twentyitem{2000-2003}{\textbf{BCA}}{}{Majoring in Computer Science}
\end{twenty}

答案1

类文件确实

\renewcommand{\bfseries}{\color{gray}}

所以你得到的是预期的结果。颜色定义为

\definecolor{gray}{HTML}{4D4D4D}

不清楚这种定义的目的是什么,但作者可能想用灰度来表示标题之类的东西。当然这是错误的方法。使用其他人制作的模板存在风险:您也会遇到他们的编程错误。

解决方案:忘记该模板。如果您仍想使用它,请恢复 的默认定义\bfseries

\documentclass[letterpaper]{twentysecondcv} % a4paper for A4

\makeatletter
\DeclareRobustCommand{\bfseries}{%
  \not@math@alphabet\bfseries\mathbf
  \fontseries\bfdefault\selectfont
}
\makeatother

\begin{document}

\section{Education}

\begin{twenty} % Environment for a list with descriptions
\twentyitem{2008-2016}
  {\textbf{Ph.D. in Computer Science}}
  {}
  {\emph{Spezialisation in Analytics \& Machine Learning}}

\twentyitem{2003-2006}
  {\textbf{MCA}}
  {}
  {Majoring in Computer Science}

\twentyitem{2000-2003}
  {\textbf{BCA}}
  {}
  {Majoring in Computer Science}
\end{twenty}

\end{document}

在此处输入图片描述

相关内容