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
+1 -2
View File
@@ -465,8 +465,7 @@ function g(string $slug, string $label): string {
[6] GeoSphere Austria: Klimaportal Schnee —
<a href="https://klimaportal.geosphere.at/informationsportal-klimawandel/schnee.html" target="_blank" rel="noopener">klimaportal.geosphere.at</a><br>
[7] Fallstudie Serfaus-Fiss-Ladis —
<a href="https://www.brand-logic.com/en/spectrum/gekommen-um-zu-bleiben/" target="_blank" rel="noopener">brand-logic.com</a><br>
Vollständige Datenherkunft: <code>sims/tourismustal/QUELLEN.md</code>
<a href="https://www.brand-logic.com/en/spectrum/gekommen-um-zu-bleiben/" target="_blank" rel="noopener">brand-logic.com</a>
</p>
</section>
+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>`;