考試教室提供了一個方便的環境,可以根據給定的課堂選項為學生排版解決問題的指定空間或該問題的解決方案。我的問題是,使用 thesolutionorgrid
總是與問題縮進,所以浪費了很多空間。
solutionorgrid
我查看了and的定義\fillwithgrid[<length>]
,它solutionorgrid
似乎正在使用,但我無法弄清楚排版環境的寬度是如何確定的。
有一個\fullwidth{}
命令,但它不適用於solutionorgrid
甚至僅適用於\fillwithgrid[<length>]
.
也那裡 是 問題 大約在這裡,回答了類似的問題,但沒有一個真正解決了我的問題。
微量元素:
\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}