blob: 6f1023849575d218a1ca15507844dbf7025c4e0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
\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}
|