我正在使用考试类,我想增加部分标签和子部分标签之间的空间。我使用了以下几行代码,但没有帮助。我需要图像中用红色箭头指示的空间。
\documentclass[a4paper,addpoints,12pt]{exam}
\qformat{\textbf{Question \thequestion}\quad (\totalpoints~\points) \hfill
\vrule depth 0.6cm width 0pt}
\renewcommand{\questionshook}{
\setlength{\leftmargin}{0pt}
\setlength{\labelwidth}{-\labelsep}
\setlength{\itemsep}{0.9cm}}
\renewcommand{\partshook}{\setlength{\topsep}{0.2cm}}
\renewcommand{\partshook}{\setlength{\itemsep}{0.5cm}}
\renewcommand{\subpartshook}{\setlength{\itemsep}{0.5cm}}
\begin{document}
\begin{questions}
\question
\begin{parts}
\part Evaluate the following if \ $\alpha=37^\circ$ \ and
\ $\beta=53^\circ$. \ You may use a calculator.
\begin{subparts}
\subpart[2] $\cos 3\alpha$\droppoints
\fillwithlines{1cm}
\end{subparts}
\end{parts}
\end{questions}
\end{document}
答案1
也许是这个?我注意到 MWE 中有几个印刷错误(缺失}
、缺失\end
等),需要更正。
但是,您请求的似乎是 的附加内容\topsep
。subparts
此外,我\itemsep
还提供了附加内容,以实现更好的垂直对称性。请注意,类似以下代码
\renewcommand{\partshook}{\setlength{\topsep}{0.2cm}}
\renewcommand{\partshook}{\setlength{\itemsep}{0.5cm}}
不是累积的。也就是说,第二个调用会使第一个调用无效。因此,如果您希望这两件事都发生,则必须将 合并为一个\renewcommand
。
妇女权利委员会:
\documentclass[a4paper,addpoints,12pt]{exam}
\qformat{\textbf{Question \thequestion}\quad (\totalpoints~\points) \hfill
\vrule depth 0.6cm width 0pt}
\renewcommand{\questionshook}{%
\setlength{\leftmargin}{0pt}%
\setlength{\labelwidth}{-\labelsep}%
\setlength{\itemsep}{0.9cm}}
\renewcommand{\partshook}{\setlength{\topsep}{0.2cm}\setlength{\itemsep}{0.5cm}}
\renewcommand{\subpartshook}{\setlength{\topsep}{0.5cm}\setlength{\itemsep}{0.5cm}}
\begin{document}
\begin{questions}
\question
\begin{parts}
\part Evaluate the following if \ $\alpha=37^\circ$ \ and
\ $\beta=53^\circ$. \ You may use a calculator.
\begin{subparts}
\subpart[2] $\cos 3\alpha$\droppoints
\fillwithlines{1cm}
\subpart[2] $\cos 3\alpha$\droppoints
\fillwithlines{1cm}
\end{subparts}
\part Evaluate the following if \ $\alpha=37^\circ$ \ and
\ $\beta=53^\circ$. \ You may use a calculator.
\begin{subparts}
\subpart[2] $\cos 3\alpha$\droppoints
\fillwithlines{1cm}
\end{subparts}
\end{parts}
\end{questions}
\end{document}