esami 软件包 MWE

esami 软件包 MWE

我正在尝试运行使用 esami 包给出的示例,因此我复制了“/usr/local/texlive/2017/texmf-dist/doc/latex/esami/doc”中给出的“示例”文件夹。

但有些不对劲,我得到了几个错误。文件名是“master.tex”

\documentclass[a4paper,italiano]{article}

\usepackage[shuffle,xyz,pointsonright,nosolutions,noquizsolutions,twocolumns]{esami}%%%%% TEMA

%%%% substitute "xyz" with your own config file

%%% some packages we use

\usepackage{fixltx2e}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern,textcomp}

% +=============================+
% |         DEFINITIONS         |
% +=============================+

\def\examname{The name of the exam}
\def\numcompiti{10}%%% The number of the versions
\date{2014/07/22}%%% THE DATE IN THE FORMAT YYYY/M/D or D/M/YYYY
\def\Data{\longdate}%%% or \shortdate: the date in the heading
%\def\cartella{d:/folder}%%% The folder where are the exercises: by default the current folder%
%\def\Acapo{\newpage}
\usepackage{babel}

\begin{document}

\testversioni
\pagestyle{esame}

\whiledo{\thevers<\numcompiti}{\stepvers
% +=============================+
% |       THE SEED              |
% +=============================+

\FPeval\seme{round((\thenomefile+(3*\thevers)):0)}
%%% OR SOME OTHER LIKE
%\FPeval\seme{round(\thenomefile*(\thevers)+1-trunc(\thenomefile*(\thevers)/(2^31-1):0)*(2^31-1):0)}
%\FPeval\seme{round(1+abs(\thenomefile/(\thevers)+sin(\thevers)*(\thevers)^(2)):0)}

\randomi=\seme

\permuta
% +=============================+
% |  STUFF DEFINED IN CFG FILE  |
% +=============================+

\testa%%% the heading
\istruzionii%%%  some instructions

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\section*{Part One}


\begin{test}[8]
\begin{questions}
%%% this is an example of "esdb"

\begin{esdb}{mydb} %% some exercises from 2 files
  \selectrandomlyn{3}{test2}
 \selectrandomlyn{2}{test3}
  \end{esdb}

%%%% this is an example of "esercizi"

\esercizi{
test14,
test1,
test4,
test9,
test5-fillin
}
%%% all the problems of a file
\selectallproblems[random]{test11}


\end{questions}

%%%% You can write other questions here using \begin{questions}... \end{question}

\end{test}

\section*{Part two}
\istruzioniii%%% Some other instructions

%%%% This is an example of open question problem

\esercizi{problem1}
\closevers
\newpage                                                                            %
                                                                %
\setcounter{page}{1} %%% dvi
}

\end{document}

我非常缺乏经验,我猜这个问题相当简单,但我无法解决它。有什么帮助吗?

答案1

您是否将文件名从 改为master.texsomething-else.tex如文档第 18 页所述,“在编译文件之前必须重命名文件,否则编译将停止并显示错误消息”。此外,esami您使用的是哪个版本的?版本 2.2 的代码中有一个小错误,因此我们最近更新了软件包(版本 2.3)。

答案2

首先,此文件引用了examples文件夹中的一些其他文件,没有这些文件,它将无法工作,因此它不是 MWE(您可以删除这些引用以获取 MWE,或者您必须将它们放在同一个文件夹中)。接下来,使用此包时,您需要一个单独的配置文件。此示例需要一个名为的配置文件,esami-xyz.cfg因为包选项xyz已设置:

\usepackage[shuffle,xyz,pointsonright,nosolutions,noquizsolutions,twocolumns]{esami}%%%%% TEMA

幸运的是,此配置文件也包含在软件包中;只需将其复制到您的tex文件所在的位置即可。

现在可能有一个我还没有完全理解的问题。如果你收到一个错误,提示命令\ifluatex未定义,你可以注释掉文件中的相应部分esami-xyz.cfg——但请注意,包将不会检查结果考试中的分数是否始终正确。除此之外,它应该可以正常工作。我怀疑这部分代码可能存在错误。

相关内容