私はドキュメント クラスで作業しています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
このためにパラメータ。2 番目のリストから章の最後まで、章全体で連続した番号付けを確実に行うには、キーを使用して環境をロードするだけです[resume]
。
次に、パッケージのコマンドoneparchoices
を使用して環境を定義しました。デフォルトでは 4 列に設定されていますが、環境を呼び出すときに変更できます (最後の引数、括弧内)。\NewTask
tasks
\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}