使用 Latex - documentclass{exam} 时,如何在问题编号前加上单词?(我希望问题这个词出现在那里)

使用 Latex - documentclass{exam} 时,如何在问题编号前加上单词?(我希望问题这个词出现在那里)
\documentclass{exam} 

\begin{document} 
\bf {This is easy enough}
\begin{questions}
\question What is the sum of 1 and 1
\end{questions}
\vspace{2cm}
But what I really want is :\\\\
Question 1. What is the sum of 1 and 1

\end{document}

答案1

\documentclass{exam} 

\renewcommand\questionlabel{Question \thequestion.}

\begin{document} 
\textbf{This is easy enough}
\begin{questions}
\question What is the sum of 1 and 1
\end{questions}

\end{document}

在此处输入图片描述

相关内容