「考試」類別中替代解決方案的編號

「考試」類別中替代解決方案的編號

我目前正在為去年的考試編寫答案,發現如果有必要的話,無法對同一問題的答案進行編號。 (有些問題最終會產生多種解決方案。)

\usepackage[margin=2.54cm, a4paper]{geometry}
\usepackage{amsmath}
\usepackage{amssymb}
\pagestyle{headandfoot}
\runningheader{}{Solution of Advance Mathematics II}{Year 201X}
\runningheadrule
\runningfooter{}{Page \thepage \,of Page \numpages}{}
\newcounter{solution}
\unframedsolutions
\renewcommand{\solutiontitle}{\noindent\textbf{Solution \thequestion: }}
\begin{document}
\begin{titlepage}
    \centering
    \hspace{10cm}\\[5pt]
    \vfill
    {\scshape\Huge School \par}
    \vspace{1cm}
    {\scshape\Large Advanced Mathematics II\par}
    \vspace{1cm}
    {\huge\bfseries Solution Manual\par}
    \vspace{1cm}
    {\Large Trial Exam\par}
    \vspace{1cm}
    {\Large October 201X\par}
    \vspace{1cm}
    {\large \emph{Written by} Someone}
    \vfill
\end{titlepage}
\newpage
\Large \section*{Preface}
blablabla
\newpage
\begin{questions}
\question Suppose $\cos 2\theta=k$, express $\sin^6 \theta-\cos^6 \theta$ in terms of $k$.
\printanswers
\begin{solution}
Notice that 
\begin{align*}
k & =\cos 2\theta\\
& =2\cos^2 \theta-1\\
& =1-2\sin^2 \theta
\end{align*}
Hence, both $\sin^2 \theta$ and $\cos^2 \theta$ can be expressed in terms of $k$ as follow:\\
\begin{equation}
\label{eq:eq1}
    \sin^2 \theta=\dfrac{1-k}{2} \quad \text{and} \quad
\cos^2 \theta=\dfrac{k+1}{2}\\
\end{equation}
Substituting Equation \eqref{eq:eq1} yields
\begin{align*}
    \sin^6 \theta-\cos^6 \theta &= \left(\dfrac{1-k}{3}\right)^3-\left(\dfrac{k+1}{3}\right)^3\\
    &=-\dfrac{k^3+3k}{4}
\end{align*}
\end{solution}
\begin{solution}
aaa
\end{solution}
\end{questions}
\end{document}

在此輸入影像描述

我想進行編號“解決方案2:“,如果可能的話,如果問題只有一個解決方案,我想看看”解決方案:「相反。我該怎麼辦呢?

答案1

簡單的方法是在解決方案環境中新增枚舉環境。

\documentclass{exam}
\usepackage[margin=2.54cm, a4paper]{geometry}
\usepackage{amsmath}
\usepackage{amssymb}
\pagestyle{headandfoot}
\runningheader{}{Solution of Advance Mathematics II}{Year 201X}
\runningheadrule
\runningfooter{}{Page \thepage \,of Page \numpages}{}
%\newcounter{solution}
\unframedsolutions
%\renewcommand{\solutiontitle}{\noindent\textbf{Solution \thequestion: }}
\begin{document}
\begin{titlepage}
    \centering
    \hspace{10cm}\\[5pt]
    \vfill
    {\scshape\Huge School \par}
    \vspace{1cm}
    {\scshape\Large Advanced Mathematics II\par}
    \vspace{1cm}
    {\huge\bfseries Solution Manual\par}
    \vspace{1cm}
    {\Large Trial Exam\par}
    \vspace{1cm}
    {\Large October 201X\par}
    \vspace{1cm}
    {\large \emph{Written by} Someone}
    \vfill
\end{titlepage}
\newpage
\Large \section*{Preface}
blablabla
\newpage
\begin{questions}
\question Suppose $\cos 2\theta=k$, express $\sin^6 \theta-\cos^6 \theta$ in terms of $k$.
\printanswers
\begin{solution}
\begin{enumerate}
\item
Notice that 
\begin{align*}
k & =\cos 2\theta\\
& =2\cos^2 \theta-1\\
& =1-2\sin^2 \theta
\end{align*}
Hence, both $\sin^2 \theta$ and $\cos^2 \theta$ can be expressed in terms of $k$ as follow:\\
\begin{equation}
\label{eq:eq1}
    \sin^2 \theta=\dfrac{1-k}{2} \quad \text{and} \quad
\cos^2 \theta=\dfrac{k+1}{2}\\
\end{equation}
Substituting Equation \eqref{eq:eq1} yields
\begin{align*}
    \sin^6 \theta-\cos^6 \theta &= \left(\dfrac{1-k}{3}\right)^3-\left(\dfrac{k+1}{3}\right)^3\\
    &=-\dfrac{k^3+3k}{4}
\end{align*}
\item
aaa
\end{enumerate}
\end{solution}
\end{questions}
\end{document}

此版本使用multisolution環境來啟動編號解決方案。

\documentclass{exam}
\usepackage[margin=2.54cm, a4paper]{geometry}
\usepackage{amsmath}
\usepackage{amssymb}
\pagestyle{headandfoot}
\runningheader{}{Solution of Advance Mathematics II}{Year 201X}
\runningheadrule
\runningfooter{}{Page \thepage \,of Page \numpages}{}
\newcounter{solution}
\unframedsolutions
\newenvironment{multisolution}{%
  \setcounter{solution}{0}%
  \def\solutiontitle{\stepcounter{solution}\noindent\textbf{Solution \thesolution: }}% local definition
  \ignorespaces}%
  {\ignorespaces}
\begin{document}
\begin{titlepage}
    \centering
    \hspace{10cm}\\[5pt]
    \vfill
    {\scshape\Huge School \par}
    \vspace{1cm}
    {\scshape\Large Advanced Mathematics II\par}
    \vspace{1cm}
    {\huge\bfseries Solution Manual\par}
    \vspace{1cm}
    {\Large Trial Exam\par}
    \vspace{1cm}
    {\Large October 201X\par}
    \vspace{1cm}
    {\large \emph{Written by} Someone}
    \vfill
\end{titlepage}
\newpage
\Large \section*{Preface}
blablabla
\newpage
\begin{questions}
\question Suppose $\cos 2\theta=k$, express $\sin^6 \theta-\cos^6 \theta$ in terms of $k$.
\printanswers
\begin{multisolution}
\begin{solution}
Notice that 
\begin{align*}
k & =\cos 2\theta\\
& =2\cos^2 \theta-1\\
& =1-2\sin^2 \theta
\end{align*}
Hence, both $\sin^2 \theta$ and $\cos^2 \theta$ can be expressed in terms of $k$ as follow:\\
\begin{equation}
\label{eq:eq1}
    \sin^2 \theta=\dfrac{1-k}{2} \quad \text{and} \quad
\cos^2 \theta=\dfrac{k+1}{2}\\
\end{equation}
Substituting Equation \eqref{eq:eq1} yields
\begin{align*}
    \sin^6 \theta-\cos^6 \theta &= \left(\dfrac{1-k}{3}\right)^3-\left(\dfrac{k+1}{3}\right)^3\\
    &=-\dfrac{k^3+3k}{4}
\end{align*}
\end{solution}
\begin{solution}
aaa
\end{solution}
\end{multisolution}
\end{questions}
\end{document}

相關內容