Estou trabalhando na classe de documentos book
. Quero adicionar exercícios em cada seção de cada capítulo. Meu código a seguir (estou compartilhando apenas parte do cde devido ao qual estou recebendo um erro) não está sendo compilado. Talvez eu não esteja usando o pacote necessário. Qual pacote devo usar?
Além disso, quero numerar minhas perguntas 1, 2, 3 e assim por diante ao longo do capítulo. Significa que a numeração não deve ser por seção.
\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}
Responder1
Aqui está uma possibilidade, baseada em enumitem
e tasks
: defini uma questions
lista enumerada, comAd hocparâmetros. Para garantir uma numeração contínua ao longo do capítulo, a partir da segunda lista, até o final do capítulo, basta carregar o ambiente com a tecla [resume]
.
A seguir, defini um oneparchoices
ambiente com o \NewTask
comando, do tasks
pacote. Por padrão, configuro para 4 colunas, mas pode ser alterado ao chamar o ambiente (último argumento, entre parênteses).
\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}