用於“question”環境的包

用於“question”環境的包

我在文件課上工作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枚舉列表,其中特別指定參數。為了確保整個章節的連續編號,從第二個清單開始,直到章節結束,您只需使用 key 載入環境即可[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} 

在此輸入影像描述

相關內容