如何在考试类别的问题环境中更改问题的垂直分隔?

如何在考试类别的问题环境中更改问题的垂直分隔?

如何在questions环境中更改问题的垂直分隔?我需要知道如何做,因为有时不需要垂直分隔,有时考试有一些垂直分隔更合适(或看起来更好)。

enumitem我已经按照描述使用了使用包的方法这里,但是它不起作用。

梅威瑟:

\documentclass[11pt]{exam}

\begin{document}

\begin{questions}
\question He believed that matter consists of four elements of air, earth, water, and fire.
\question She believed that the children are our future if they are taught well.
\end{questions}

\end{document}

答案1

我在我的序言中使用了以下内容。

您可以为、问题和设置aration 、aration itemseptopsepsleftmargin等。questionspartssubpartssubsubparts

\renewcommand{\questionshook}{%
  \setlength{\itemsep}{0.7cm}%
}

\renewcommand{\partshook}{%
  \setlength{\itemsep}{0.7cm}%
  \setlength{\topsep}{0.7cm}%
  \setlength{\leftmargin}{0cm}%
}

\renewcommand{\subpartshook}{%
  \setlength{\itemsep}{0.7cm}%
  \setlength{\topsep}{0.7cm}%
}

\renewcommand{\subsubpartshook}{%
  \setlength{\itemsep}{0.7cm}%
  \setlength{\topsep}{0.7cm}%
}

相关内容