如何在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 itemsep
、topsep
sleftmargin
等。questions
parts
subparts
subsubparts
\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}%
}