用于“问题”环境的包

用于“问题”环境的包

我正在处理文档类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以下是基于和的可能性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} 

在此处输入图片描述

相关内容