将问题和考试类别的选择转换为 csv(使用 python?Perl?脚本)?

将问题和考试类别的选择转换为 csv(使用 python?Perl?脚本)?

问题

我如何处理文件提取.tex(如下所述)到平面 csv(具有下面的格式)?

语境

我使用 创建了所有 MCQ exam。但是,考试现在 100% 都是在线的……(叹气)

我的 LaTeX 文件具有以下基本格式

\documentclass[12pt]{exam}
\begin{document}

\begin{questions}
 \question What is the answer ? 
 \begin{oneparchoices}
 \choice 70
 \choice 75
 \choice $80 \times \Delta$
 \CorrectChoice 85
 \choice None of the above
 \end{oneparchoices}
\end{questions}
\end{document}

我现在需要提供一个 csv,其中显示上面的 MCQ 问题,如下所示(公司正确的,科尔直截了当,只是为了清楚

相关内容