시험시간을 제외한 다른 수업의 문제 환경

시험시간을 제외한 다른 수업의 문제 환경

\begin{question}질문을 무엇으로 분류하는 것과 같은 환경이 필요합니다 \begin{enumerate}. 내 말은 다음과 같습니다.

문제:

1) 증명하십시오 ....
2) 보여주십시오 ....
3) ...
...

시험 수업에서는 이 환경이 작동하는 것으로 알고 있는데, 다른 수업에서는 어떻게 할 수 있나요? 내 문서 클래스는 이며 book이 클래스를 변경할 수 없습니다.

당신의 도움을 주셔서 감사합니다.

답변1

xsim

\documentclass{article}
\usepackage{amssymb}
\usepackage{xsim}

\begin{document}
\begin{exercise}
  \begin{enumerate}
    \item State the Mean Value Theorem.
    \item Consider the function $g:\mathbb{R} \rightarrow \mathbb{R}$
  \end{enumerate}
\end{exercise}
\end{document}

exsheets

2017년 5월 현재 exsheets공식적으로는 로 대체되었습니다 xsim. 2019년 6월 현재,exsheets더 이상 현재 expl3과 호환되지 않습니다.. 아래 구현은 후손을 위해 유지됩니다.

\documentclass{article}
\usepackage{amssymb}
\usepackage{exsheets}

\begin{document}
\begin{question}
  \begin{enumerate}
    \item State the Mean Value Theorem.
    \item Consider the function $g:\mathbb{R} \rightarrow \mathbb{R}$
  \end{enumerate}
\end{question}

\SetupExSheets{headings=runin,question/name=Problem}
\begin{question}
  blah
\end{question}
\end{document}

산출

지금은 두 번째 예(명령 다음에)를 포함할 수는 없지만 기본적으로 수행되는 \SetupExSheets작업에 더 가까워집니다 .exam

참고로 패키지 exsheets고도로LaTeX3 아이디어 덕분에 구성 가능 :)

관련 정보