試験クラスは、指定されたクラス オプションに基づいて、学生が問題を解くための特定の種類のスペースまたはその問題の解決策のいずれかをタイプセットするための便利な環境を提供します。私の問題は、を使用すると、solutionorgrid
常に質問でインデントされるため、多くのスペースが無駄になることです。
solutionorgrid
との定義を調べたところ\fillwithgrid[<length>]
、solutionorgrid
を使用しているようですが、 typset 環境の幅がどのように決定されるのかわかりませんでした。
コマンドはありますが、や だけに\fullwidth{}
は機能しません。solutionorgrid
\fillwithgrid[<length>]
またそこには は 質問 その周りここでは同様の問題に対する回答がありますが、どれも私の問題を実際に解決しません。
MWE:
\documentclass[a4paper, 12pt]{exam}
% \documentclass[a4paper, 12pt, answers]{exam}
\usepackage{showframe}
\begin{document}
\begin{questions}
\question
Why ist there air?
% \fullwidth{ % <== works as expected
% \begin{solution}
% Because we couldn't breath without air.
% \end{solution}
% }
% \fullwidth{\fillwithgrid[\stretch{1}]} % <== throws error
\fullwidth{ % <== works for solutions but doesn't print grid
\begin{solutionorgrid}[\stretch{1}]
Because we couldn't breath without air.
\end{solutionorgrid}
}
\end{questions}
\end{document}