Documentclass 시험에 대한 법적 서류 옵션이 작동하지 않습니다. -- 도와주세요

Documentclass 시험에 대한 법적 서류 옵션이 작동하지 않습니다. -- 도와주세요

미국법률논문에 객관식 시험을 만들려고 합니다. MacOS 14.4.1을 실행하는 MacBook Air M2에서 TeXShop을 사용하고 있습니다. 방금 TeXLive 2024를 설치했습니다. 다음은 콘솔 로그의 일부입니다.

LaTeX2e <2023-11-01> patch level 1
L3 programming layer <2024-02-20>
(/usr/local/texlive/2024/texmf-dist/tex/latex/exam/exam.cls
Document Class: exam 2023/07/09 Version 2.704 by Philip Hirschhorn
(/usr/local/texlive/2024/texmf-dist/tex/latex/base/ifthen.sty)
(/usr/local/texlive/2024/texmf-dist/tex/latex/base/article.cls
Document Class: article 2023/05/17 v1.4n Standard LaTeX document class

시험 문서 클래스는 기본 Letter 용지 크기에서 예상대로 작동합니다(문서 클래스에는 옵션이 없지만 옵션을 추가하면 legalpaper더 이상 안정적으로 작동하지 않습니다.

내 소스 파일은 다음과 같습니다(설명서에서 가져옴).https://math.mit.edu/~psh/exam/examdoc.pdf):

\documentclass[answers,12pt]{exam}
\pagestyle{headandfoot}
\firstpageheadrule
\firstpagefootrule 
\firstpageheader{Math 115}{Final Exam}{July 4, 1776}
\runningheader{Math 115}
{Page \thepage\ of \numpages}
{July 4, 1776}
\firstpagefooter{Math 115}{Final Exam}{Page \thepage\ of \numpages}
\runningfooter{Math 115}{Final Exam}{Page \thepage\ of \numpages}
\runningheadrule 
\runningfootrule 
\usepackage{times}

\begin{document}

EXAM

\begin{questions}

\question My question with multiple choices.

\begin{choices}
   \choice The first choice.
   \choice The second choice.
   \choice The third choice.
   \choice The fourth choice.
   \CorrectChoice The fifth choice.
\end{choices}

\end{questions}

\end{document}

이는 다음과 같은 출력을 생성합니다.여기에 이미지 설명을 입력하세요

내 소스 파일에 옵션 만 추가하는 경우 legalpaper(exum.cls 문서 102페이지 참조):

\documentclass[legalpaper,answers,12pt]{exam}
\pagestyle{headandfoot}
\firstpageheadrule
\firstpagefootrule 
\firstpageheader{Math 115}{Final Exam}{July 4, 1776}
\runningheader{Math 115}
{Page \thepage\ of \numpages}
{July 4, 1776}
\firstpagefooter{Math 115}{Final Exam}{Page \thepage\ of \numpages}
\runningfooter{Math 115}{Final Exam}{Page \thepage\ of \numpages}
\runningheadrule 
\runningfootrule 
\usepackage{times}

\begin{document}

EXAM

\begin{questions}

\question My question with multiple choices.

\begin{choices}
   \choice The first choice.
   \choice The second choice.
   \choice The third choice.
   \choice The fourth choice.
   \CorrectChoice The fifth choice.
\end{choices}

\end{questions}

\end{document}

다음과 같은 출력이 표시됩니다(머리글 위에 추가 공간이 있고 바닥글은 없음).

여기에 이미지 설명을 입력하세요

답변1

클래스는 PDF 크기를 설정하지 않으므로 사이트 기본값이 A4인 경우 페이지 크기 옵션이 실제로 작동하지 않으며 사이트 기본값이 us letter인 경우에도 작동하는지 확실하지 않습니다(설정을 추적하지 않았습니다).

이를 패키지 관리자에게 보고할 수 있지만 가장 쉬운 해결 방법은 로드하여 geometry문제를 해결하는 것입니다.

지오메트리 옵션을 사용하여 다른 사항을 조정하려면 예를 들어 \textheight원하는 경우 약간 늘리면 됩니다.

유틸리티 pdfinfo보고서

Page size:      612 x 792 pts (letter)

여기에 이미지 설명을 입력하세요

\documentclass[
letterpaper
,answers,12pt]{exam}
\usepackage{geometry}

\pagestyle{headandfoot}
\firstpageheadrule
\firstpagefootrule 
\firstpageheader{Math 115}{Final Exam}{July 4, 1776}
\runningheader{Math 115}
{Page \thepage\ of \numpages}
{July 4, 1776}
\firstpagefooter{Math 115}{Final Exam}{Page \thepage\ of \numpages}
\runningfooter{Math 115}{Final Exam}{Page \thepage\ of \numpages}
\runningheadrule 
\runningfootrule 
\usepackage{times}

\begin{document}

EXAM

\begin{questions}

\question My question with multiple choices.

\begin{choices}
   \choice The first choice.
   \choice The second choice.
   \choice The third choice.
   \choice The fourth choice.
   \CorrectChoice The fifth choice.
\end{choices}

\end{questions}

\end{document}

관련 정보