使用 LaTeX 类为问题、解决方案和提示生成单独的练习表

使用 LaTeX 类为问题、解决方案和提示生成单独的练习表

我目前依靠考试类来制作单独的练习表,用于问题和解决方案。有没有办法使用该类来制作带有提示而不是完整解决方案的第三张练习表,或者有更好的替代方案?

唯一的 tex 文件的结构如下:

\documentclass{exam} % or any other suggestion
\begin{document}

\begin{questions}

\question Prove that $A\implies B$.

\begin{hint}
Use contradiction.
\end{hint}

\begin{solution}
The details...
\end{solution}

\end{questions}

\end{document}

然后,按照本网站其他地方的指示,通过将正确的选项传递给选定的类别,适当的Makefilewith将生成 sheet-questions.pdf、sheet-hints.pdf 和 sheet-solutions.pdf。latexmk

答案1

我已经有很多使用该类的文件exam,所以我最终使用该optional包来定义一个简单的环境,如果showhints不使用选项,则不会显示任何内容。这是一个基本示例:

\documentclass{exam}
\qformat{\textbf{Question \thequestion\hfill}}

% The "optional" package allows the definition of an environment 
% hints that will only be printed if the showhints option is passed
\usepackage[dummy]{optional} % document fails to compile if optional has no options ...

\makeatletter
\@ifpackagewith{optional}{showhints}{
    % environment definition for the case where hints must be shown
    \newenvironment{hints}[1][]{\textbf{Hints:} #1}{}
}{
    % environment definition for the case where hints must be hidden
    \newenvironment{hints}[1][]{\setbox\z@\vbox\bgroup}{\egroup}
}
\makeatother

\begin{document}

\begin{questions}
\question How do you include a package in \LaTeX?

\begin{hints}
Ask around at tex.stackexchange.com if you dare.
\end{hints}

\begin{solution}
 Use the \texttt{\textbackslash usepackage} command.
\end{solution}

\end{questions}

\end{document}

假设以上内容保存到名为的文件中mwe.tex,则以下Makefile会产生三种不同的输出:

  1. mwe-base.pdf,这是预期的练习表;
  2. mwe-answers.pdf,提供解决方案但没有提示;
  3. mwe-hints.pdf,其中有提示但没有解决方案。
SOURCES = $(wildcard *.tex)
TARGETS = $(patsubst %.tex, %, $(SOURCES))

all: $(TARGETS)


%: %.tex
    latexmk -jobname=$(basename $<)-base -pdf -pdflatex='pdflatex -shell-escape -interaction=nonstopmode' $<
    latexmk -jobname=$(basename $<)-answers -pdf -pdflatex='pdflatex -jobname=$(basename $<)-answers -shell-escape -interaction=nonstopmode "\PassOptionsToClass{answers}{exam}\input{$(basename $<)}"' $<
    latexmk -jobname=$(basename $<)-hints -pdf -pdflatex='pdflatex -jobname=$(basename $<)-hints -shell-escape -interaction=nonstopmode "\PassOptionsToPackage{showhints}{optional}\input{$(basename $<)}"' $<

clean:
    rm -f *.out *aux *bbl *blg *log *toc *.ptb *.tod *.fls *.fdb_latexmk *.lof

很可能还有改进的空间。

相关内容