모든 문제가 동일한 점수를 갖도록 시험 수업의 성적표를 수정합니다.

모든 문제가 동일한 점수를 갖도록 시험 수업의 성적표를 수정합니다.

모든 문제가 동일한 점수를 갖도록 개별 문제 점수를 수동으로 변경할 수 있습니까?

.? 에서 특정 지점을 할당하고 싶지 않습니다 \question[].

총점을 강제로 계산하는 방법을 알고 있지만 모든 문제의 모든 점수를 동일한 점수로 수동으로 변경하는 방법에 대한 정보를 찾을 수 없습니다.

내 MWE

\documentclass[addpoints]{exam}
\begin{document}
    
\begin{questions}
\question This is Q1 with no marks.
\question This is Q2 with no marks.
\question This is Q3 with no marks.
\end{questions}

\settabletotalpoints{3}\gradetable % I know how to change the total points in a grade table.
\end{document}

현재 출력: 모두 0으로 출력

원하는 출력: 1을 모두 수동으로 추가한 출력

답변1

에 따르면패키지 매뉴얼각 질문에 대한 점수 표시 형식을 지정할 수 있습니다. Q1에 표시된 포인트가 없으므로 달성하려는 목표인 것 같지만 한 포인트를 할당하고 싶습니다. 따라서 빈 을 사용하여 간단히 제거해 보겠습니다 \pointformat{}. 이렇게 하면 총점 표를 수동으로 업데이트하는 과정을 없앨 수 있도록 각 질문에 1점을 할당했습니다.

또한 포인트 카운터를 다시 얻는 방법을 보여주기 위해 네 번째 질문을 추가했습니다. 다음을 살펴보세요.패키지 설명서, 페이지. 26ff.원하는 대로 포인트 표시 형식을 지정하는 방법을 알아보세요.

코드는 다음과 같습니다.

\documentclass[addpoints]{exam}
\begin{document}
    
\begin{questions}
\pointformat{}
\question[1] This is Q1 with no marks.
\question[1] This is Q2 with no marks.
\question[1] This is Q3 with no marks.
\pointformat{\fbox{\thepoints}}
\question[4] This is Q4 with  marks.
\end{questions}

\gradetable % I know how to change the total points in a grade table.
\end{document}

그리고 이것은 다음과 같습니다:

질문 - 시험 수업을 사용하여 점수가 없음

결정을 내리지 못한 경우 다음 질문에 1점을 준다면표시 없음변수를 자리 표시자로 사용할 수 있습니다.

\documentclass[addpoints]{exam}
\begin{document}
\newcommand{\nopoints}{1}
\begin{questions}
\pointformat{}
\question[\nopoints] This is Q1 with no marks.
\question[\nopoints] This is Q2 with no marks.
\question[\nopoints]
\pointformat{\fbox{\thepoints}}
\question[4] This is Q4 with  marks.
\end{questions}
\gradetable
\end{document}

관련 정보