Verwalten Sie Ihre erstellten Lern-Apps
Übersicht über alle Ihre erstellten Lern-Apps
Erstellen Sie Ihre erste App, um loszulegen.
📦 ZIP-Datei: Importiert Quiz inkl. aller Bilder automatisch
📄 JSON-Datei: Importiert Quiz ohne Bilder (wie bisher)
📋 Wenn die Datei bereits title und description enthält, werden diese automatisch verwendet und überschreiben die manuellen Eingaben.
Dies ist praktisch für vollständige Quiz-Exports.
{
"questions": [
{
"question": "Was ist 2+2?",
"answers": ["3", "4", "5", "6"],
"correct": [1],
"difficulty": "leicht"
}
]
}
{
"title": "Mathematik Quiz",
"description": "Grundlagen für Klasse 3",
"questions": [
{
"question": "Was ist 2+2?",
"answers": ["3", "4", "5", "6"],
"correct": [1],
"difficulty": "leicht",
"explanation": "2+2=4 ist Grundrechenart",
"timeLimit": 30,
"points": 1
}
]
}
questionHtml und answersHtml Felder<span class='math-formula'>...</span>\\(LaTeX-Code\\)\\[LaTeX-Code\\]\\\\( statt \\({
"title": "Physik - Elektrizität",
"questions": [
{
"question": "Reihenschaltung Widerstand",
"questionHtml": "<p>Wie berechnet man R<sub>ges</sub>?</p>",
"answers": ["R1·R2", "1/R1+1/R2", "R1+R2", "konstant"],
"answersHtml": [
"<p><span class='math-formula'>\\\\(R_{ges}=R_1\\\\cdot R_2\\\\)</span></p>",
"<p><span class='math-formula'>\\\\(\\\\frac{1}{R_{ges}}=\\\\frac{1}{R_1}+\\\\frac{1}{R_2}\\\\)</span></p>",
"<p><span class='math-formula'>\\\\(R_{ges}=R_1+R_2\\\\)</span></p>",
"<p>konstant</p>"
],
"correct": [2],
"points": 2
}
]
}
| Was Sie schreiben: | Was im JSON steht: |
\(x^2\) |
"\\\\(x^2\\\\)" |
<p>Text</p> |
"<p>Text</p>" |
\frac{1}{2} |
"\\\\frac{1}{2}" |
"<span class='math-formula'>\\\\(IHR_LATEX_HIER\\\\)</span>"