WebQuiz 编译和 html 输出文件为空

WebQuiz 编译和 html 输出文件为空

我正在开发 WebQuiz 包。我从参考文档 webquiz.pdf 给出的第一个示例开始。在 pdflatex 编译我的第一个示例 (Quiz-1.tex) 后,我得到了 pdf 输出文档,并且一切正常(如 WebQuiz.pdf 参考中所述)。但是当我进行 webquiz 编译 (webquiz Quiz-1.tex) 时,我得到了 html 输出文档,但有点空(请参见 Safari 显示的图)。我检查了 Safari 首选项,发现 Javascript 处于活动状态。您能帮帮我吗?非常感谢。

在此处输入图片描述

 \documentclass[language=french]{webquiz}
 \title{Quiz Français}
 \title{An easy example}
  \begin{document}
    \begin{question} % a quiz question
      Sous forme inéquation, $x \in[1,2] $ s'écrit aussi
    \begin{choice}[columns=2]
      \correct $1\le x\le 2$
      \incorrect $1\ge x\ge 2$
      \feedback l'ordre croissant est-il respecté? 
      \incorrect $1<x<2$
      \feedback l' intervalle est-il ouvert ou ferme\'e? 
      \incorrect $1<x\le 2$
      \feedback Les bornes sont-elles incluses ou exclues?
     \end{choice}
    \end{question}
  \end{document}

相关内容