我正在设计家庭作业集,我能够使编号的问题标签(例如 1.、2.、3. 等)以粗体显示。我使用了 \renewcommand{\questionlabel}{\textbf{\thequestion.}}
我曾尝试对 (a)、(b) 等部件标签执行相同的操作,但不起作用。如果我使用 \renewcommand(\partlabel}{\textbf{(\thepart)}},则不起作用。我也曾尝试向 ChatGPT 寻求解决方案,它确实尝试使用涉及 \usepackage{titlesec} 的技术并定义新命令,但同样不起作用。
答案1
自考試班使用article.cls
并且该文件定义了thepart
,但此处使用了不同的名称thepartno
。请参阅软件包手册第 39-40 页。
\documentclass{exam}
\begin{document}
\renewcommand\partlabel{\textbf{\thepartno}}
\begin{questions}
\question
\begin{parts}
\part Explain why the package manual is better than ChatGPT.
\part Explain why \texttt{tex.stackexchange.com} is also better than ChatGPT.
\end{parts}
\end{questions}
\end{document}