删除考试文档类中问题后的段落缩进

删除考试文档类中问题后的段落缩进

我想删除问题内容前面的缩进。

\documentclass[addpoints]{exam}
\pointname{\ p}
\qformat{\textbf{Question \thequestion .} \hfill \textsl{(\thepoints)}} 

\begin{document}

\begin{questions}
  
  \question[3] What is your favourite color?
\end{questions}

\end{document}

在此处输入图片描述

我想要类似的东西

在此处输入图片描述

答案1

来自exam文档第 33 页,您需要将以下代码添加到您的序言中:

\renewcommand{\questionshook}{%
\setlength{\leftmargin}{0pt}%
\setlength{\labelwidth}{-\labelsep}%
}

然后你会得到以下内容:

在此处输入图片描述

\documentclass[addpoints]{exam}
\pointname{\ p}
\qformat{\textbf{Question \thequestion .} \hfill \textsl{(\thepoints)}} 
\renewcommand{\questionshook}{%
\setlength{\leftmargin}{0pt}%
\setlength{\labelwidth}{-\labelsep}%
}

\begin{document}

\begin{questions}

\question[3] What is your favourite color?

\end{questions}

\end{document}

相关内容