Schulbuch/Tourismustal: interner Pfad raus + oesterreichische Rechenzeichen

- Schulbuch-Quellenverzeichnis: interner Dateipfad (QUELLEN.md) entfernt -
  gehoert nicht in ein Schuelerdokument.
- Tagesbericht: Malpunkt (Mittelpunkt) statt x als Multiplikationszeichen -
  oesterreichische Schulschreibweise (neue Dauerregel: +, -, Malpunkt,
  : fuer Division in allen schueler-sichtbaren Rechnungen).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-12 17:40:28 +02:00
parent 31f1744730
commit dbfb5be5a0
2 changed files with 3 additions and 4 deletions
+2 -2
View File
@@ -453,8 +453,8 @@ export class UI {
html += row(`Grund-Nachfrage (${d.season})`, d.demandBase);
for (const f of d.demandFactors) {
const bad = f.mult < 0.9;
html += `<tr><td class="rp-factor ${bad ? 'bad' : ''}">× ${f.name}</td>`
+ `<td class="rp-factor ${bad ? 'bad' : ''}">×${f.mult.toFixed(2)}</td></tr>`;
html += `<tr><td class="rp-factor ${bad ? 'bad' : ''}">· ${f.name}</td>`
+ `<td class="rp-factor ${bad ? 'bad' : ''}">· ${f.mult.toFixed(2)}</td></tr>`;
}
html += row('= wollten kommen', `${d.demandResult}`, 'sum');
html += `</table>`;