2

我正在尝试使用 R/exams 设置考试,使用函数exams2canvas(). 我的问题包含需要使用一些包(特别是tikztikz-qtree一些其他tikz库)的 LaTeX 代码,但我不知道如何导入它们。

为了创建一个 pdf,我手动修改了plain.texR 的考试包中的 tex 模板 ( ),添加了以下两行:

\usepackage{tikz}
\usepackage{tikz-qtree}

我可以以类似的方式修改画布文件吗?还有另一种方法可以在中使用 LaTeX 包exams2canvas()吗?


最小的例子:

\begin{question}
\Tree[.S [.NP [.D the ] [.N children ] ] [.VP [.V study ] ]  [.NP [.N books ] ]  ]
\begin{answerlist}
  \item 0.7
  \item 0.2
  \item 0.1
\end{answerlist}
\end{question}

\begin{solution}
\begin{answerlist}
  \item False
  \item False
  \item True
\end{answerlist}
\end{solution}

\exname{Trees}
\extype{schoice}
\exsolution{001}
4

1 回答 1

3

问题是对于 Canvas 输出,就像其他基于 HTML 的格式一样,需要将 LaTeX 代码转换为 HTML。我们使用的 HTML 转换器 (tthpandoc) 都只支持超出基本 LaTeX 发行版的有限数量的 LaTeX 命令。

因此,您需要tikz在 LaTeX 中编译图形,然后将它们转换为 HTML 支持的图形格式,例如 SVG 矢量图形或光栅图形,如 PNG 或 JPG。此功能由include_tikz()R/exams 中的函数提供。

我已经修改了您的练习,以便tikz代码仅作为 LaTeX 包含在exams2pdf()exams2nops()中 - 然后需要对其进行调整以加载tikztikz-qtree. 否则,tikz代码将呈现为使用magickplus的 SVG pdf2svg。或者,您也可以渲染为 PNG,例如。

所以你可以这样做:

exams2html("tikz_tree.Rnw")

或者

exams2nops("tikz_tree.Rnw", usepackage = c("tikz", "tikz-qtree"))

等等

exams2canvas()会像exams2html(). 修改后的tikz_tree.Rnw文件包含在帖子的末尾。在 R-Forge 上的 R/exams 论坛的讨论中提供了一些进一步的指示和详细信息(包括练习的 R/Markdown 版本):https://R-Forge.R-project.org/forum/forum。 php?thread_id=33909&forum_id=4377&group_id=1337

R/exams 网页上提供了一些类似但更精细的练习模板:
http://www.R-exams.org/templates/automaton/
http://www.R-exams.org/templates/logic/

tikz_tree.Rnw

<<echo=FALSE, results=hide>>=
## determine the output type depending on exams2xyz interface:
## - plain .tex for exams2pdf, exams2nops which then need to use packages tikz and tikz-qtree
## - .svg for other HTML-based interfaces
typ <- if(match_exams_call() %in% c("exams2pdf", "exams2nops")) "tex" else "svg"

## TikZ code (note that backslashes need to be escaped"
tikz_tree <- "\\Tree[.S [.NP [.D the ] [.N children ] ] [.VP [.V study ] ]  [.NP [.N books ] ]  ]"
@

\begin{question}

<<echo=FALSE, results=tex>>=
include_tikz(tikz_tree, name = "tik_tree", format = typ,
  packages = "tikz-qtree", width = "5cm")
@

\begin{answerlist}
  \item 0.4
  \item 0.2
  \item 0.9
\end{answerlist}
\end{question}

\begin{solution}
\begin{answerlist}
  \item False
  \item False
  \item True
\end{answerlist}
\end{solution}

\exname{Tree}
\extype{schoice}
\exsolution{001}
于 2020-04-08T19:08:40.200 回答