Paquete que se utilizará en el entorno "pregunta"

Paquete que se utilizará en el entorno "pregunta"

Estoy trabajando en la clase de documentos book. Quiero agregar ejercicios en cada sección de cada capítulo. Mi siguiente código (estoy compartiendo solo una parte del cde debido a que recibo un error) no se compila. Quizás no estoy usando el paquete requerido, ¿qué paquete debo usar?

Además, quiero numerar mis preguntas 1, 2, 3, etc. a lo largo del capítulo. Es decir, la numeración no debe realizarse por secciones.

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

Respuesta1

Aquí hay una posibilidad, basada en enumitemy tasks: definí una questionslista enumerada, conad hocparámetros. Para asegurar una numeración continua a lo largo del capítulo, desde la segunda lista en adelante, hasta el final del capítulo, sólo hay que cargar el entorno con la tecla [resume].

A continuación, definí un oneparchoicesentorno con el \NewTaskcomando del taskspaquete. De forma predeterminada, lo configuro en 4 columnas, pero se puede cambiar al llamar al entorno (último argumento, entre paréntesis).

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

ingrese la descripción de la imagen aquí

información relacionada