将 R 代码纳入 probsoln 的问题表中

将 R 代码纳入 probsoln 的问题表中

在使用该probsoln包时,如何在问题表中包含 R 代码?

我的主要文件是

\documentclass{article}
\usepackage{probsoln, verbatim}
\PSNrandseed{200}
\begin{document}
\SweaveOpts{concordance=TRUE}
\begin{enumerate}
\selectrandomly{sum.tex}{1}
\end{enumerate}
\end{document}

工作表中的示例如下,

\newproblem{dfp:sum}{% <<echo=FALSE>>= n<-100:999 y<-sample(n,8) s<-y[1]+y[2] @ Add the numbers \Sexpr{y[1]} and \Sexpr{y[2]} }{% sum is \Sexpr{s} }

相关内容