excel2moodle 0.3.7__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. {excel2moodle-0.3.7/excel2moodle.egg-info → excel2moodle-0.4.0}/PKG-INFO +1 -1
  2. excel2moodle-0.4.0/docs/_build/html/exampleQuestions.html +502 -0
  3. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/docs/_build/html/excel2moodle.core.html +321 -71
  4. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/docs/_build/html/excel2moodle.extra.html +3 -3
  5. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/docs/_build/html/excel2moodle.html +71 -48
  6. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/docs/_build/html/excel2moodle.ui.html +67 -242
  7. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/docs/_build/html/genindex.html +88 -79
  8. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/docs/_build/html/howto.html +46 -28
  9. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/docs/_build/html/index.html +19 -7
  10. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/docs/_build/html/py-modindex.html +9 -9
  11. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/docs/_build/html/search.html +3 -3
  12. excel2moodle-0.4.0/docs/_build/html/userReference.html +361 -0
  13. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/__init__.py +6 -11
  14. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/__main__.py +13 -1
  15. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/core/dataStructure.py +23 -19
  16. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/core/globals.py +1 -1
  17. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/core/parser.py +20 -34
  18. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/core/question.py +82 -48
  19. {excel2moodle-0.3.7/excel2moodle/ui → excel2moodle-0.4.0/excel2moodle/core}/settings.py +28 -13
  20. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/core/stringHelpers.py +4 -3
  21. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/core/validator.py +7 -4
  22. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/logger.py +1 -1
  23. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/question_types/mc.py +44 -10
  24. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/question_types/nf.py +1 -2
  25. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/question_types/nfm.py +1 -2
  26. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/ui/appUi.py +30 -15
  27. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/ui/dialogs.py +41 -33
  28. excel2moodle-0.4.0/excel2moodle/ui/exportSettingsDialog.py +79 -0
  29. excel2moodle-0.4.0/excel2moodle/ui/windowDoc.py +27 -0
  30. excel2moodle-0.4.0/excel2moodle/ui/windowMain.py +370 -0
  31. {excel2moodle-0.3.7 → excel2moodle-0.4.0/excel2moodle.egg-info}/PKG-INFO +1 -1
  32. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle.egg-info/SOURCES.txt +6 -3
  33. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle.egg-info/entry_points.txt +3 -0
  34. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/pyproject.toml +4 -1
  35. excel2moodle-0.4.0/test/test_picture.py +67 -0
  36. excel2moodle-0.3.7/excel2moodle/core/questionWriter.py +0 -267
  37. excel2moodle-0.3.7/excel2moodle/ui/windowDoc.py +0 -35
  38. excel2moodle-0.3.7/excel2moodle/ui/windowMain.py +0 -375
  39. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/LICENSE +0 -0
  40. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/MANIFEST.in +0 -0
  41. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/README.md +0 -0
  42. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/core/__init__.py +0 -0
  43. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/core/category.py +0 -0
  44. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/core/etHelpers.py +0 -0
  45. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/core/exceptions.py +0 -0
  46. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/core/numericMultiQ.py +0 -0
  47. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/extra/__init__.py +0 -0
  48. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/extra/equationVerification.py +0 -0
  49. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/question_types/__init__.py +0 -0
  50. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/ui/__init__.py +0 -0
  51. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/ui/questionPreviewDialog.py +0 -0
  52. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/ui/treewidget.py +0 -0
  53. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/ui/variantDialog.py +0 -0
  54. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle/ui/windowEquationChecker.py +0 -0
  55. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle.egg-info/dependency_links.txt +0 -0
  56. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle.egg-info/requires.txt +0 -0
  57. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/excel2moodle.egg-info/top_level.txt +0 -0
  58. {excel2moodle-0.3.7 → excel2moodle-0.4.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: excel2moodle
3
- Version: 0.3.7
3
+ Version: 0.4.0
4
4
  Summary: A package for converting questions from a spreadsheet, to valid moodle-xml
5
5
  Author: Jakob Bosse
6
6
  License-Expression: GPL-3.0-or-later
@@ -0,0 +1,502 @@
1
+ <!DOCTYPE html>
2
+ <html class="writer-html5" lang="en" data-content_root="./">
3
+ <head>
4
+ <meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
5
+
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Fragenbeispiele &mdash; excel2moodle 0.4.0 documentation</title>
8
+ <link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b86133f3" />
9
+ <link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
10
+
11
+
12
+ <!--[if lt IE 9]>
13
+ <script src="_static/js/html5shiv.min.js"></script>
14
+ <![endif]-->
15
+
16
+ <script src="_static/jquery.js?v=5d32c60e"></script>
17
+ <script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
18
+ <script src="_static/documentation_options.js?v=6c02275b"></script>
19
+ <script src="_static/doctools.js?v=9bcbadda"></script>
20
+ <script src="_static/sphinx_highlight.js?v=dc90522c"></script>
21
+ <script async="async" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
22
+ <script src="_static/js/theme.js"></script>
23
+ <link rel="index" title="Index" href="genindex.html" />
24
+ <link rel="search" title="Search" href="search.html" />
25
+ <link rel="next" title="excel2moodle package" href="excel2moodle.html" />
26
+ <link rel="prev" title="User Reference" href="userReference.html" />
27
+ </head>
28
+
29
+ <body class="wy-body-for-nav">
30
+ <div class="wy-grid-for-nav">
31
+ <nav data-toggle="wy-nav-shift" class="wy-nav-side">
32
+ <div class="wy-side-scroll">
33
+ <div class="wy-side-nav-search" >
34
+
35
+
36
+
37
+ <a href="index.html" class="icon icon-home">
38
+ excel2moodle
39
+ </a>
40
+ <div class="version">
41
+ 0.4.0
42
+ </div>
43
+ <div role="search">
44
+ <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
45
+ <input type="text" name="q" placeholder="Search docs" aria-label="Search docs" />
46
+ <input type="hidden" name="check_keywords" value="yes" />
47
+ <input type="hidden" name="area" value="default" />
48
+ </form>
49
+ </div>
50
+ </div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
51
+ <ul class="current">
52
+ <li class="toctree-l1"><a class="reference internal" href="howto.html">How To - Schritt für Schritt Anleitung</a></li>
53
+ <li class="toctree-l1"><a class="reference internal" href="userReference.html">User Reference</a></li>
54
+ <li class="toctree-l1 current"><a class="current reference internal" href="#">Fragenbeispiele</a><ul>
55
+ <li class="toctree-l2"><a class="reference internal" href="#vergleich-der-fragen-in-moodle-und-tabelle">Vergleich der Fragen in Moodle und Tabelle</a><ul>
56
+ <li class="toctree-l3"><a class="reference internal" href="#multiple-choice-fragen">Multiple Choice Fragen</a></li>
57
+ <li class="toctree-l3"><a class="reference internal" href="#numerische-fragen">Numerische Fragen</a></li>
58
+ </ul>
59
+ </li>
60
+ <li class="toctree-l2"><a class="reference internal" href="#example-for-a-mc-question">Example for a <code class="docutils literal notranslate"><span class="pre">`MC`</span></code> Question</a></li>
61
+ <li class="toctree-l2"><a class="reference internal" href="#example-for-a-nf-question">Example for a <code class="docutils literal notranslate"><span class="pre">`NF`</span></code> Question</a></li>
62
+ <li class="toctree-l2"><a class="reference internal" href="#example-for-a-nfm-question">Example for a <code class="docutils literal notranslate"><span class="pre">`NFM`</span></code> Question</a></li>
63
+ </ul>
64
+ </li>
65
+ </ul>
66
+ <ul>
67
+ <li class="toctree-l1"><a class="reference internal" href="excel2moodle.html">excel2moodle package</a></li>
68
+ <li class="toctree-l1"><a class="reference internal" href="excel2moodle.extra.html">excel2moodle.extra package</a></li>
69
+ <li class="toctree-l1"><a class="reference internal" href="excel2moodle.core.html">excel2moodle.core package</a></li>
70
+ <li class="toctree-l1"><a class="reference internal" href="excel2moodle.ui.html">excel2moodle.ui package</a></li>
71
+ </ul>
72
+
73
+ </div>
74
+ </div>
75
+ </nav>
76
+
77
+ <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"><nav class="wy-nav-top" aria-label="Mobile navigation menu" >
78
+ <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
79
+ <a href="index.html">excel2moodle</a>
80
+ </nav>
81
+
82
+ <div class="wy-nav-content">
83
+ <div class="rst-content">
84
+ <div role="navigation" aria-label="Page navigation">
85
+ <ul class="wy-breadcrumbs">
86
+ <li><a href="index.html" class="icon icon-home" aria-label="Home"></a></li>
87
+ <li class="breadcrumb-item active">Fragenbeispiele</li>
88
+ <li class="wy-breadcrumbs-aside">
89
+ <a href="_sources/exampleQuestions.rst.txt" rel="nofollow"> View page source</a>
90
+ </li>
91
+ </ul>
92
+ <hr/>
93
+ </div>
94
+ <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
95
+ <div itemprop="articleBody">
96
+
97
+ <section id="fragenbeispiele">
98
+ <span id="examplequestions"></span><h1>Fragenbeispiele<a class="headerlink" href="#fragenbeispiele" title="Link to this heading"></a></h1>
99
+ <section id="vergleich-der-fragen-in-moodle-und-tabelle">
100
+ <span id="vergleichmoodleexcelfragen"></span><h2>Vergleich der Fragen in Moodle und Tabelle<a class="headerlink" href="#vergleich-der-fragen-in-moodle-und-tabelle" title="Link to this heading"></a></h2>
101
+ <p>Im Folgenden werden Die Fragen, wie sie in der Tabelle erstellt werden, mit dem Ergebnis in Moodle gegenüber gestellt.
102
+ Dadurch erhält man einen guten Eindruck, wie die Fragen am Ende aussehen.</p>
103
+ <section id="multiple-choice-fragen">
104
+ <h3>Multiple Choice Fragen<a class="headerlink" href="#multiple-choice-fragen" title="Link to this heading"></a></h3>
105
+ <span id="tablekategorie2"></span><table class="docutils align-default" id="id1">
106
+ <caption><span class="caption-text">Example Kategorie 01 Multiple Choice Fragen</span><a class="headerlink" href="#id1" title="Link to this table"></a></caption>
107
+ <tbody>
108
+ <tr class="row-odd"><td><p>number</p></td>
109
+ <td><p>1</p></td>
110
+ <td><p>2</p></td>
111
+ <td><p>3</p></td>
112
+ </tr>
113
+ <tr class="row-even"><td><p>type</p></td>
114
+ <td><p>MC</p></td>
115
+ <td><p>MC</p></td>
116
+ <td><p>MC</p></td>
117
+ </tr>
118
+ <tr class="row-odd"><td><p>name</p></td>
119
+ <td><p>Farbe des Himmels</p></td>
120
+ <td><p>Kleines Ein Mal Eins</p></td>
121
+ <td><p>Längen Einheit</p></td>
122
+ </tr>
123
+ <tr class="row-even"><td><p>text</p></td>
124
+ <td><p>Welche Farbe hat der Himmel</p></td>
125
+ <td><p>Was steht im kleinen Ein Mal Eins</p></td>
126
+ <td><p>In welcher Einheit kann eine Länge angegeben werden.</p></td>
127
+ </tr>
128
+ <tr class="row-odd"><td><p>text</p></td>
129
+ <td><p>Gehen sie von einem sonnigen unbewölkten Tag aus</p></td>
130
+ <td><p>Wählen Sie alle richtigen Ausdrücke aus</p></td>
131
+ <td></td>
132
+ </tr>
133
+ <tr class="row-even"><td><p>text</p></td>
134
+ <td><p>Beachten sie alle Tageszeiten</p></td>
135
+ <td></td>
136
+ <td></td>
137
+ </tr>
138
+ <tr class="row-odd"><td><p>answerType</p></td>
139
+ <td><p>text</p></td>
140
+ <td><p>math</p></td>
141
+ <td><p>unit</p></td>
142
+ </tr>
143
+ <tr class="row-even"><td><p>true</p></td>
144
+ <td><p>blau</p></td>
145
+ <td><p>7*7=49</p></td>
146
+ <td><p>m</p></td>
147
+ </tr>
148
+ <tr class="row-odd"><td><p>true</p></td>
149
+ <td><p>hellblau</p></td>
150
+ <td><p>3*5=15</p></td>
151
+ <td><p>cm</p></td>
152
+ </tr>
153
+ <tr class="row-even"><td><p>true</p></td>
154
+ <td><p>orange</p></td>
155
+ <td><p>7*8=56</p></td>
156
+ <td><p>inch</p></td>
157
+ </tr>
158
+ <tr class="row-odd"><td><p>true</p></td>
159
+ <td><p>rot</p></td>
160
+ <td></td>
161
+ <td><p>dm</p></td>
162
+ </tr>
163
+ <tr class="row-even"><td></td>
164
+ <td></td>
165
+ <td></td>
166
+ <td></td>
167
+ </tr>
168
+ <tr class="row-odd"><td><p>false</p></td>
169
+ <td><p>grün</p></td>
170
+ <td><p>7*7=48</p></td>
171
+ <td><p>psi</p></td>
172
+ </tr>
173
+ <tr class="row-even"><td><p>false</p></td>
174
+ <td><p>pink</p></td>
175
+ <td><p>3*5=20</p></td>
176
+ <td><p>bar</p></td>
177
+ </tr>
178
+ <tr class="row-odd"><td><p>false</p></td>
179
+ <td><p>magenta</p></td>
180
+ <td><p>7*8=54</p></td>
181
+ <td><p>Mpa</p></td>
182
+ </tr>
183
+ <tr class="row-even"><td><p>false</p></td>
184
+ <td></td>
185
+ <td><p>3*9=36</p></td>
186
+ <td><p>kNm</p></td>
187
+ </tr>
188
+ <tr class="row-odd"><td><p>false</p></td>
189
+ <td></td>
190
+ <td><p>a²+b²=c²</p></td>
191
+ <td><p>J</p></td>
192
+ </tr>
193
+ </tbody>
194
+ </table>
195
+ <figure class="align-default" id="id2" style="width: 90%">
196
+ <a class="reference internal image-reference" href="_images/moodleDok_frage10202imMoodle.png"><img alt="Die obige Frage wie sie in Moodle erscheint" src="_images/moodleDok_frage10202imMoodle.png" style="width: 100%;" />
197
+ </a>
198
+ <figcaption>
199
+ <p><span class="caption-text">Zu sehen ist die Frage <em>2</em> wie sie in Moodle importiert ist.</span><a class="headerlink" href="#id2" title="Link to this image"></a></p>
200
+ <div class="legend">
201
+ <p>Die normalen Nutzer sehen nur die beiden blauen Bereiche, nicht den Namen der Frage
202
+ Es ist zu erkennen, wie die Antworten texte mit LaTex formatiert werden.</p>
203
+ </div>
204
+ </figcaption>
205
+ </figure>
206
+ </section>
207
+ <section id="numerische-fragen">
208
+ <span id="numericexample"></span><h3>Numerische Fragen<a class="headerlink" href="#numerische-fragen" title="Link to this heading"></a></h3>
209
+ <div class="admonition note">
210
+ <p class="admonition-title">Note</p>
211
+ <p>Die Fragentypen <code class="docutils literal notranslate"><span class="pre">NF</span></code> (numerisches Format) und <code class="docutils literal notranslate"><span class="pre">NFM</span></code> (multi numerisches Format)
212
+ werden als <code class="docutils literal notranslate"><span class="pre">numerical</span></code> in moodle exportiert. Sie unterscheiden sich daher nicht.
213
+ Daher ist Die Tabelle oben identisch mit der unten, wenn die Fragenversion 1 gewählt ist.
214
+ Ansonsten unterscheiden sich die Zahlenwerte.</p>
215
+ </div>
216
+ <p>Die Tabelle <a class="reference internal" href="#tablekategorie1"><span class="std std-ref">Example Kategorie 02 Fragen NF und NFM Flächenberechnung</span></a> zeigt gegenübergestellt eine NF und eine NFM Frage, die beide in Moodle identisch dargestellt werden.
217
+ Das Ergebnis in Moodle zeigt das Bild unten <a class="reference internal" href="#imgfrage10101"><span class="std std-ref">Frage 1, bzw 2: Version 1 wie sie in Moodle importiert ist.</span></a></p>
218
+ <span id="tablekategorie1"></span><table class="docutils align-default" id="id3">
219
+ <caption><span class="caption-text">Example Kategorie 02 Fragen NF und NFM Flächenberechnung</span><a class="headerlink" href="#id3" title="Link to this table"></a></caption>
220
+ <tbody>
221
+ <tr class="row-odd"><td><p>number</p></td>
222
+ <td><p>1</p></td>
223
+ <td><p>2</p></td>
224
+ </tr>
225
+ <tr class="row-even"><td><p>type</p></td>
226
+ <td><p>NF</p></td>
227
+ <td><p>NFM</p></td>
228
+ </tr>
229
+ <tr class="row-odd"><td><p>name</p></td>
230
+ <td><p>Berechnung Rechteck Flächeninhalt</p></td>
231
+ <td><p>Berechnung Rechteck Flächeninhalt</p></td>
232
+ </tr>
233
+ <tr class="row-even"><td><p>text</p></td>
234
+ <td><p>Berechnen Sie die den Flächeninhalt ( A ) des Rechtecks.</p></td>
235
+ <td><p>Berechnen Sie die den Flächeninhalt ( A ) des Rechtecks.</p></td>
236
+ </tr>
237
+ <tr class="row-odd"><td><p>text</p></td>
238
+ <td><p>Gehen Sie dabei von folgenden Abmessungen des Rechtecks aus:</p></td>
239
+ <td><p>Gehen Sie dabei von folgenden Abmessungen des Rechtecks aus:</p></td>
240
+ </tr>
241
+ <tr class="row-even"><td><p>text</p></td>
242
+ <td><p>Das Ergebnis ist in (mathrm{[m²]}) anzugeben</p></td>
243
+ <td><p>Das Ergebnis ist in (mathrm{[m²]}) anzugeben</p></td>
244
+ </tr>
245
+ <tr class="row-odd"><td><p>bulletPoint</p></td>
246
+ <td><p>Breite b = 2,1 m</p></td>
247
+ <td><p>Breite b = {breite} m</p></td>
248
+ </tr>
249
+ <tr class="row-even"><td><p>bulletPoint</p></td>
250
+ <td><p>Länge l = 3,4 m</p></td>
251
+ <td><p>Länge l = {lange} m</p></td>
252
+ </tr>
253
+ <tr class="row-odd"><td><p>result</p></td>
254
+ <td><p>7,14</p></td>
255
+ <td><p>breite*lange</p></td>
256
+ </tr>
257
+ <tr class="row-even"><td><p>picture</p></td>
258
+ <td><p>0</p></td>
259
+ <td><p>0</p></td>
260
+ </tr>
261
+ <tr class="row-odd"><td><p>tolerance</p></td>
262
+ <td></td>
263
+ <td><p>1,50</p></td>
264
+ </tr>
265
+ <tr class="row-even"><td><p>breite</p></td>
266
+ <td></td>
267
+ <td><p>2,1; 2,5; 3,4</p></td>
268
+ </tr>
269
+ <tr class="row-odd"><td><p>lange</p></td>
270
+ <td></td>
271
+ <td><p>3,4; 3,8; 3,6</p></td>
272
+ </tr>
273
+ <tr class="row-even"><td><p>firstResult</p></td>
274
+ <td></td>
275
+ <td><p>7,14</p></td>
276
+ </tr>
277
+ </tbody>
278
+ </table>
279
+ <figure class="align-default" id="id4" style="width: 90%">
280
+ <span id="imgfrage10101"></span><a class="reference internal image-reference" href="_images/moodleDok_frage10101imMoodle.png"><img alt="Die obige Frage wie sie in Moodle erscheint" src="_images/moodleDok_frage10101imMoodle.png" style="width: 100%;" />
281
+ </a>
282
+ <figcaption>
283
+ <p><span class="caption-text">Frage <em>1, bzw 2: Version 1</em> wie sie in Moodle importiert ist.</span><a class="headerlink" href="#id4" title="Link to this image"></a></p>
284
+ <div class="legend">
285
+ <p>Es handelt sich um die Version 1, zu erkennen, an dem ersten Satz an Variablen (b = 2,1; l = 3,4)
286
+ Die normalen Nutzer sehen nur die beiden blauen Bereiche, nicht den Namen der Frage</p>
287
+ </div>
288
+ </figcaption>
289
+ </figure>
290
+ <div class="admonition note">
291
+ <p class="admonition-title">Note</p>
292
+ <p>Werwendung von LaTe</p>
293
+ <p>Die Vewendung von LaTex code ist durch die Syntax <code class="docutils literal notranslate"><span class="pre">\(</span> <span class="pre">a</span> <span class="pre">\cdot</span> <span class="pre">10^{-2}</span> <span class="pre">\)</span></code> gekennzeichnet. Dies sieht wie folgt aus <span class="math notranslate nohighlight">\(a \cdot 10^{-2}\)</span>.
294
+ Hierbei wird alles innerhalb <code class="docutils literal notranslate"><span class="pre">\(</span></code> und <code class="docutils literal notranslate"><span class="pre">\)</span></code> als LaTex Formel dargestellt.
295
+ Da Einheiten normalerweise <em>nicht kursiv</em> geschrieben werden, kann das LaTex Makro <code class="docutils literal notranslate"><span class="pre">\mathrm{</span> <span class="pre">}</span></code> verwendet werden.
296
+ Beispiel: <code class="docutils literal notranslate"><span class="pre">\(</span> <span class="pre">\mathrm{</span> <span class="pre">[mm^2]</span> <span class="pre">}</span> <span class="pre">\)</span></code> wird zu: <span class="math notranslate nohighlight">\(\mathrm{[mm^2]}\)</span></p>
297
+ </div>
298
+ </section>
299
+ </section>
300
+ <section id="example-for-a-mc-question">
301
+ <h2>Example for a <code class="docutils literal notranslate"><span class="pre">`MC`</span></code> Question<a class="headerlink" href="#example-for-a-mc-question" title="Link to this heading"></a></h2>
302
+ <table class="docutils align-default">
303
+ <thead>
304
+ <tr class="row-odd"><th class="head"><p>A</p></th>
305
+ <th class="head"><p>B</p></th>
306
+ <th class="head"><p>C</p></th>
307
+ </tr>
308
+ </thead>
309
+ <tbody>
310
+ <tr class="row-even"><td><p>number</p></td>
311
+ <td><p>1</p></td>
312
+ <td><p>2</p></td>
313
+ </tr>
314
+ <tr class="row-odd"><td><p>type</p></td>
315
+ <td><p>MC</p></td>
316
+ <td><p>MC</p></td>
317
+ </tr>
318
+ <tr class="row-even"><td><p>name</p></td>
319
+ <td><p>Multiple Choice</p></td>
320
+ <td><p>second multiple Choice</p></td>
321
+ </tr>
322
+ <tr class="row-odd"><td><p>text</p></td>
323
+ <td><p>Select the right Options</p></td>
324
+ <td><p>Click on the correct answers</p></td>
325
+ </tr>
326
+ <tr class="row-even"><td><p>text</p></td>
327
+ <td><p>The rectangle has those dimensions:</p></td>
328
+ <td><p>The rectangle has those dimensions:</p></td>
329
+ </tr>
330
+ <tr class="row-odd"><td><p>answerType</p></td>
331
+ <td><p>text</p></td>
332
+ <td><p>text</p></td>
333
+ </tr>
334
+ <tr class="row-even"><td><p>true</p></td>
335
+ <td><p>right Answer</p></td>
336
+ <td><p>correct</p></td>
337
+ </tr>
338
+ <tr class="row-odd"><td><p>true</p></td>
339
+ <td><p>another correct One</p></td>
340
+ <td><p>right</p></td>
341
+ </tr>
342
+ <tr class="row-even"><td><p>true</p></td>
343
+ <td></td>
344
+ <td><p>right again</p></td>
345
+ </tr>
346
+ <tr class="row-odd"><td><p>false</p></td>
347
+ <td><p>bullshit</p></td>
348
+ <td><p>incorrect</p></td>
349
+ </tr>
350
+ <tr class="row-even"><td><p>false</p></td>
351
+ <td><p>wrong</p></td>
352
+ <td><p>not right</p></td>
353
+ </tr>
354
+ <tr class="row-odd"><td><p>false</p></td>
355
+ <td><p>wrong again</p></td>
356
+ <td><p>wrong</p></td>
357
+ </tr>
358
+ </tbody>
359
+ </table>
360
+ </section>
361
+ <section id="example-for-a-nf-question">
362
+ <h2>Example for a <code class="docutils literal notranslate"><span class="pre">`NF`</span></code> Question<a class="headerlink" href="#example-for-a-nf-question" title="Link to this heading"></a></h2>
363
+ <table class="docutils align-default">
364
+ <thead>
365
+ <tr class="row-odd"><th class="head"><p>A</p></th>
366
+ <th class="head"><p>B</p></th>
367
+ <th class="head"><p>C</p></th>
368
+ </tr>
369
+ </thead>
370
+ <tbody>
371
+ <tr class="row-even"><td><p>number</p></td>
372
+ <td><p>1</p></td>
373
+ <td><p>2</p></td>
374
+ </tr>
375
+ <tr class="row-odd"><td><p>type</p></td>
376
+ <td><p>NF</p></td>
377
+ <td><p>NF</p></td>
378
+ </tr>
379
+ <tr class="row-even"><td><p>name</p></td>
380
+ <td><p>Area Calculation</p></td>
381
+ <td><p>Circumference Calculation</p></td>
382
+ </tr>
383
+ <tr class="row-odd"><td><p>text</p></td>
384
+ <td><p>calculate the area of the rectangle</p></td>
385
+ <td><p>Calculate the circumference of the rectangle</p></td>
386
+ </tr>
387
+ <tr class="row-even"><td><p>text</p></td>
388
+ <td><p>the result should be in meters [m]</p></td>
389
+ <td><p>the result should be in meters [m]</p></td>
390
+ </tr>
391
+ <tr class="row-odd"><td><p>text</p></td>
392
+ <td><p>The rectangle has those dimensions:</p></td>
393
+ <td><p>The rectangle has those dimensions:</p></td>
394
+ </tr>
395
+ <tr class="row-even"><td><p>bulletPoint</p></td>
396
+ <td><p>length a = 5 m</p></td>
397
+ <td><p>length a = 5 m</p></td>
398
+ </tr>
399
+ <tr class="row-odd"><td><p>bulletPoint</p></td>
400
+ <td><p>with b = 2 m</p></td>
401
+ <td><p>width b = 2 m</p></td>
402
+ </tr>
403
+ <tr class="row-even"><td><p>result</p></td>
404
+ <td><p>10</p></td>
405
+ <td><p>14</p></td>
406
+ </tr>
407
+ </tbody>
408
+ </table>
409
+ </section>
410
+ <section id="example-for-a-nfm-question">
411
+ <h2>Example for a <code class="docutils literal notranslate"><span class="pre">`NFM`</span></code> Question<a class="headerlink" href="#example-for-a-nfm-question" title="Link to this heading"></a></h2>
412
+ <table class="docutils align-default">
413
+ <tbody>
414
+ <tr class="row-odd"><td><p>A</p></td>
415
+ <td><p>B</p></td>
416
+ <td><p>C</p></td>
417
+ </tr>
418
+ <tr class="row-even"><td><p>number</p></td>
419
+ <td><p>1</p></td>
420
+ <td><p>2</p></td>
421
+ </tr>
422
+ <tr class="row-odd"><td><p>type</p></td>
423
+ <td><p>NFM</p></td>
424
+ <td><p>NFM</p></td>
425
+ </tr>
426
+ <tr class="row-even"><td><p>name</p></td>
427
+ <td><p>Area Calculation</p></td>
428
+ <td><p>Circumference Calculation</p></td>
429
+ </tr>
430
+ <tr class="row-odd"><td><p>text</p></td>
431
+ <td><p>calculate the area of the rectangle</p></td>
432
+ <td><p>Calculate the circumference of the rectangle</p></td>
433
+ </tr>
434
+ <tr class="row-even"><td><p>text</p></td>
435
+ <td><p>the result should be in meters [m]</p></td>
436
+ <td><p>the result should be in meters [m]</p></td>
437
+ </tr>
438
+ <tr class="row-odd"><td><p>text</p></td>
439
+ <td><p>The rectangle has those dimensions:</p></td>
440
+ <td><p>The rectangle has those dimensions:</p></td>
441
+ </tr>
442
+ <tr class="row-even"><td><p>bulletPoint</p></td>
443
+ <td><p>length a = {a} m</p></td>
444
+ <td><p>length a = {a} m</p></td>
445
+ </tr>
446
+ <tr class="row-odd"><td><p>bulletPoint</p></td>
447
+ <td><p>width b = {b} m</p></td>
448
+ <td><p>width b = {b} m</p></td>
449
+ </tr>
450
+ <tr class="row-even"><td><p>result</p></td>
451
+ <td><p>a * b</p></td>
452
+ <td><p>2*a + 2*b</p></td>
453
+ </tr>
454
+ <tr class="row-odd"><td><p>a</p></td>
455
+ <td><p>5;3;7</p></td>
456
+ <td><p>5;3;7</p></td>
457
+ </tr>
458
+ <tr class="row-even"><td><p>b</p></td>
459
+ <td><p>2;2;1</p></td>
460
+ <td><p>2;2;1</p></td>
461
+ </tr>
462
+ <tr class="row-odd"><td><p>firstResult</p></td>
463
+ <td><p>10</p></td>
464
+ <td><p>14</p></td>
465
+ </tr>
466
+ </tbody>
467
+ </table>
468
+ </section>
469
+ </section>
470
+
471
+
472
+ </div>
473
+ </div>
474
+ <footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
475
+ <a href="userReference.html" class="btn btn-neutral float-left" title="User Reference" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
476
+ <a href="excel2moodle.html" class="btn btn-neutral float-right" title="excel2moodle package" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
477
+ </div>
478
+
479
+ <hr/>
480
+
481
+ <div role="contentinfo">
482
+ <p>&#169; Copyright 2024, Jakob Bosse.</p>
483
+ </div>
484
+
485
+ Built with <a href="https://www.sphinx-doc.org/">Sphinx</a> using a
486
+ <a href="https://github.com/readthedocs/sphinx_rtd_theme">theme</a>
487
+ provided by <a href="https://readthedocs.org">Read the Docs</a>.
488
+
489
+
490
+ </footer>
491
+ </div>
492
+ </div>
493
+ </section>
494
+ </div>
495
+ <script>
496
+ jQuery(function () {
497
+ SphinxRtdTheme.Navigation.enable(true);
498
+ });
499
+ </script>
500
+
501
+ </body>
502
+ </html>