`질문` 환경에 사용되는 패키지

`질문` 환경에 사용되는 패키지

저는 문서 수업을 하고 있습니다 book. 각 장의 각 섹션에 연습문제를 추가하고 싶습니다. 내 다음 코드(오류가 발생하는 CDE의 일부만 공유하고 있음)가 컴파일되지 않습니다. 아마도 필수 패키지를 사용하고 있지 않은 것 같습니다. 어떤 패키지를 사용해야 합니까?

또한, 이 장 전체에 걸쳐 내 질문 1, 2, 3 등에 번호를 매기고 싶습니다. 즉, 번호 매기기가 섹션별로 진행되어서는 안 됩니다.

\documentclass{book}
\usepackage{amsmath, amsthm, amssymb, amsfonts}
\usepackage{chngcntr}
\theoremstyle{definition}
\newtheorem{definition}{Def{i}nition}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{proposition}[definition]{Proposition}
\counterwithout{equation}{chapter}
\counterwithout{section}{chapter}
\begin{document}
\mainmatter
\chapter{Quadratic Equation}
\section{Problems}
\begin{questions}
\question \quad Let \(\alpha,\ \beta \) be the roots of the equation \(x^2 - px + r = 0\) and \     (\dfrac{\alpha}{2},\ 2\beta\) be the roots of the equation \(x^2 - qx + r = 0\). Then the value of the \        (r\) is

    \begin{oneparchoices}
    \choice \(\dfrac{2}{9}(p-q)(2q - p)\) 
    \choice \(\dfrac{2}{9}(q - p)(2p - q)\) 
    \choice \(\dfrac{2}{9}(q - 2p)(2q - p)\) 
    \choice \(\dfrac{2}{9}(2p - q)(2q - p)\)
    \end{oneparchoices}
\end{questions}

\end{document}

답변1

enumitem다음은 and를 기반으로 한 가능성입니다 . 다음과 같이 열거된 목록을 tasks정의했습니다 .questions애드 혹매개변수. 장 전체에 걸쳐 두 번째 목록부터 장 끝까지 연속적인 번호 매기기를 보장하려면 키를 사용하여 환경을 로드하기만 하면 됩니다 [resume].

다음으로 패키지 에서 명령을 oneparchoices사용하여 환경을 정의했습니다 . 기본적으로 4열로 설정했지만 환경 호출 시 변경할 수 있습니다(마지막 인수, 괄호 사이).\NewTasktasks

\documentclass{book}}
\usepackage{amsmath, amsthm, amssymb}
\usepackage{chngcntr}
\theoremstyle{definition}
\newtheorem{definition}{Def{i}nition}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{proposition}[definition]{Proposition}
\counterwithout{equation}{chapter}
\counterwithout{section}{chapter}

\usepackage{nccmath}
\usepackage{enumitem}
\newlist{questions}{enumerate}{1}
\setlist[questions]{label=\arabic*., wide=0pt, font=\bfseries}
\let\question=\item
\usepackage{tasks}
\NewTasks[label=$\square$,after-item-skip=0ex plus 1ex]{oneparchoices}[\choice](4)
\let\choice=\task

\begin{document}

\mainmatter
\chapter{Quadratic Equation}

\section{Problems}
\begin{questions}
\question Let \(\alpha,\ \beta \) be the roots of the equation \(x^2 - px + r = 0\) and \(\mfrac{\alpha}{2},\ 2\beta\) be the roots of the equation \(x^2 - qx + r = 0\). Then the value of the \(r\) is

 \begin{oneparchoices}(3)
 \choice \(\mfrac{2}{9}(p-q)(2q - p)\)

 \choice \(\mfrac{2}{9}(q - p)(2p - q)\)

 \choice \(\mfrac{2}{9}(q - 2p)(2q - p)\)

 \choice \(\mfrac{2}{9}(2p - q)(2q - p)\)
 \end{oneparchoices}
\end{questions}

\end{document} 

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

관련 정보