시험 수준의 전체 폭 솔루션 그리드

시험 수준의 전체 폭 솔루션 그리드

시험 수업은 주어진 수업 옵션에 따라 학생들이 문제를 풀 수 있는 특정 공간이나 해당 문제에 대한 해결책을 조판하기 위한 편리한 환경을 제공합니다. 내 문제는 the를 사용하면 solutionorgrid항상 질문이 들여쓰기되어 공간이 많이 낭비된다는 것입니다.

사용하고 있는 것으로 보이는 solutionorgridand 의 정의를 살펴보았는데 , typset 환경의 너비가 어떻게 결정되는지 알 수 없었습니다.\fillwithgrid[<length>]solutionorgrid

\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}

관련 정보