我使用Ramnath Vaidyanathan编写的Slidify包。我正在使用小部件[quiz]创建我的第一个测验。
--- &multitext
1. Create a vector x of the length three, which must consist of the following values 2 , 3, and 7.
*** .hint
Use the command c()
*** .explanation
1. <span class="answer">x<-c(2,3,7)</span>
这一切都很好,但在文本输入区域,如果您输入x<-c(2,3,7)作为答案,则会得到不正确的图标。它只适用于数字类吗?有可能在测验中实现角色类吗?
目前,这个小部件只设置为只接受数字答案。启用字符输入很容易,但我认为这是不可靠的。例如,用户可以根据字符输入不同的答案,并且它们都是正确的。
x <- c(2, 3, 7)
x<-c(2,3,7)
x<-c(2,3, 7)