考试类别对齐

考试类别对齐

在考试课上,第一个问题的对齐方式非常完美。插入新页面后,对于后续问题,对齐方式不再是左侧对齐,而是居中对齐。我不知道下一步该怎么做才能纠正这个问题。

%Question 2%

\question \textbf{[10 marks]} \\  
The complex number $z$ has modulus $\sqrt{2}$ and argument $\frac{-\pi}{6}$, and the complex number $w$ has modulus $\sqrt{2}$ and argument $\frac{-\pi}{4}$.


\begin{parts}

在此处输入图片描述

更好的代码:

\documentclass{exam} 
\usepackage{amsmath} 
\usepackage{graphicx} 
\begin{document} 
\pointsdroppedatright 
\bracketedpoints 
\begin{questions} 
\question The diagram below shows part of the graph of $y=e^{-2x} \cos x +2$. \fillwithdottedlines{\stretch{1}} 
\newpage 
\question The complex number $z$ has modulus $\sqrt{2}$ and argument $\frac{-\pi}{6}$
\end{questions} 
\end{document}

答案1

我尝试重新创建您的 MWE,对我来说效果很好。

\documentclass{exam} 
\usepackage{amsmath} 
\usepackage{graphicx} 
\begin{document} 
\pointsdroppedatright 
\bracketedpoints 
\begin{questions} 
\question The diagram below shows part of the graph of $y=e^{-2x} \cos x +2$. 
\fillwithdottedlines{\stretch{1}} 
\newpage 
\question The complex number $z$ has modulus $\sqrt{2}$ and argument $\frac{-\pi}{6}$.
\end{questions}
\end{document}

相关内容