问题是对于 Canvas 输出,就像其他基于 HTML 的格式一样,需要将 LaTeX 代码转换为 HTML。我们使用的 HTML 转换器 (tth
和pandoc
) 都只支持超出基本 LaTeX 发行版的有限数量的 LaTeX 命令。
因此,您需要tikz
在 LaTeX 中编译图形,然后将它们转换为 HTML 支持的图形格式,例如 SVG 矢量图形或光栅图形,如 PNG 或 JPG。此功能由include_tikz()
R/exams 中的函数提供。
我已经修改了您的练习,以便tikz
代码仅作为 LaTeX 包含在exams2pdf()
和exams2nops()
中 - 然后需要对其进行调整以加载tikz
和tikz-qtree
. 否则,tikz
代码将呈现为使用magick
plus的 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}