neuerlehrplan:klasse10:markdownrefernz
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen RevisionVorhergehende ÜberarbeitungNächste Überarbeitung | Vorhergehende Überarbeitung | ||
| neuerlehrplan:klasse10:markdownrefernz [2025/10/26 18:13] – [1. Überschriften] lutz | neuerlehrplan:klasse10:markdownrefernz [2025/10/26 19:19] (aktuell) – [15. Zitate, Blockreferenzen, Tags] lutz | ||
|---|---|---|---|
| Zeile 6: | Zeile 6: | ||
| - | ---- | ||
| ==== 1. Überschriften ==== | ==== 1. Überschriften ==== | ||
| - | < | + | <code md> |
| # H1 | # H1 | ||
| ## H2 | ## H2 | ||
| Zeile 19: | Zeile 18: | ||
| </ | </ | ||
| + | |||
| + | |||
| + | |||
| + | ==== 2. Textformatierung ==== | ||
| + | |||
| + | <code md> | ||
| + | **Fett** → **Text** | ||
| + | *Kursiv* → *Text* | ||
| + | ***Fett + Kursiv*** → ***Text*** | ||
| + | ~~Durchgestrichen~~ → ~~Text~~ | ||
| + | ==Hervorgehoben== → ==Text== (Obsidian-spezifisch) | ||
| + | ^Hochgestellt^ → Text^hoch^ | ||
| + | ~Tiefgestellt~ → Text~tief~ | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | ==== 3. Zitate ==== | ||
| + | |||
| + | <code md> | ||
| + | > Einfaches Zitat | ||
| + | >> Verschachteltes Zitat | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 4. Listen ==== | ||
| + | |||
| + | === Ungeordnete Liste === | ||
| + | |||
| + | <code language-md> | ||
| + | - Punkt | ||
| + | * Punkt | ||
| + | + Punkt | ||
| + | </ | ||
| + | |||
| + | === Geordnete Liste === | ||
| + | |||
| + | <code md> | ||
| + | 1. Erster Punkt | ||
| + | 2. Zweiter Punkt | ||
| + | 3. Dritter Punkt | ||
| + | </ | ||
| + | |||
| + | === Aufgabenliste === | ||
| + | |||
| + | <code md> | ||
| + | - [ ] Offen | ||
| + | - [x] Erledigt | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 5. Code ==== | ||
| + | |||
| + | === Inline-Code === | ||
| + | |||
| + | <code md> | ||
| + | `Code` | ||
| + | </ | ||
| + | |||
| + | === Codeblock === | ||
| + | |||
| + | <code md> | ||
| + | ```sprache | ||
| + | mehrzeiliger Code | ||
| + | ``` | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 6. Links ==== | ||
| + | |||
| + | <code md> | ||
| + | [Linktext](https:// | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | === Interne Links === | ||
| + | |||
| + | <code md> | ||
| + | [[Notizname]] | ||
| + | [[Notizname# | ||
| + | [[Notizname# | ||
| + | </ | ||
| + | |||
| + | === Aliase === | ||
| + | |||
| + | <code md> | ||
| + | [[Notizname|Angezeigter Text]] | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 7. Bilder ==== | ||
| + | |||
| + | <code md> | ||
| + | ![[bild.png]] | ||
| + |  | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 8. Tabellen ==== | ||
| + | |||
| + | <code md> | ||
| + | | Spalte 1 | Spalte 2 | | ||
| + | |-----------|-----------| | ||
| + | | Wert 1 | Wert 2 | | ||
| + | | Wert 3 | Wert 4 | | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 9. Horizontale Linie ==== | ||
| + | |||
| + | <code md> | ||
| + | --- | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 10. Fußnoten ==== | ||
| + | |||
| + | <code md> | ||
| + | Text mit Fußnote[^1] | ||
| + | |||
| + | [^1]: Fußnotentext | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 11. Blockzitate & Callouts (Obsidian) ==== | ||
| + | |||
| + | <code md> | ||
| + | > [!note] Hinweis | ||
| + | > Dies ist ein Callout-Block. | ||
| + | |||
| + | > [!tip] Tipp | ||
| + | > [!warning] Warnung | ||
| + | > [!quote] Zitat | ||
| + | > [!example] Beispiel | ||
| + | > [!info] Info | ||
| + | > [!bug] Fehler | ||
| + | > [!summary] Zusammenfassung | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 12. Einrückung / Blockelemente ==== | ||
| + | |||
| + | <code md> | ||
| + | > Text eingerückt | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 13. Trennzeichen & Absätze ==== | ||
| + | |||
| + | Leere Zeile zwischen Absätzen: | ||
| + | |||
| + | <code md> | ||
| + | Absatz 1 | ||
| + | |||
| + | Absatz 2 | ||
| + | </ | ||
| + | |||
| + | Zeilenumbruch (mit zwei Leerzeichen am Ende): | ||
| + | |||
| + | <code md> | ||
| + | Zeile 1␣␣ | ||
| + | Zeile 2 | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 14. Diagramme (nur mit Core-Feature " | ||
| + | |||
| + | <code md> | ||
| + | ```mermaid | ||
| + | graph TD | ||
| + | A --> B | ||
| + | B --> C | ||
| + | ``` | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 15. Zitate, Blockreferenzen, | ||
| + | |||
| + | <code md> | ||
| + | #tag | ||
| + | [[Notiz]] | ||
| + | ^block-id | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 16. Inline-Kommentare (nicht gerendert) ==== | ||
| + | |||
| + | <code md> | ||
| + | %% Dies ist ein Kommentar %% | ||
| + | </ | ||
| + | |||
| + | |||
| + | ===== HTML-Befehle in Obsidian ===== | ||
| + | |||
| + | Diese Übersicht zeigt alle HTML-Tags und Attribute, die **Obsidian** in Markdown-Dateien **nativ erkennt und rendert**.\\ | ||
| + | (Ohne zusätzliche Plugins oder benutzerdefiniertes CSS.) | ||
| + | |||
| + | |||
| + | ==== 1. Grundstruktur ==== | ||
| + | |||
| + | > HTML kann direkt in Markdown eingefügt werden – ohne Codeblöcke. | ||
| + | |||
| + | <code html> | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 2. Textformatierung ==== | ||
| + | |||
| + | <code html> | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 3. Absätze, Zeilen und Abstände ==== | ||
| + | |||
| + | <code html> | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 4. Listen ==== | ||
| + | |||
| + | <code html> | ||
| + | <ul> | ||
| + | < | ||
| + | < | ||
| + | </ul> | ||
| + | |||
| + | <ol> | ||
| + | < | ||
| + | < | ||
| + | </ol> | ||
| + | |||
| + | <dl> | ||
| + | < | ||
| + | < | ||
| + | </dl> | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== 5. Links und Anker ==== | ||
| + | |||
| + | <code html> | ||
| + | <a href=" | ||
| + | <a href="# | ||
| + | </ | ||
| + | |||
| + | ==== 6. Bilder ==== | ||
| + | |||
| + | <code html> | ||
| + | <img src=" | ||
| + | </ | ||
| + | |||
| + | > Tipp: Für interne Bilder in Obsidian ist '' | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 7. Tabellen ==== | ||
| + | |||
| + | <code html> | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | </ | ||
| + | < | ||
| + | < | ||
| + | </ | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 8. Zitate und Blöcke ==== | ||
| + | |||
| + | <code html> | ||
| + | < | ||
| + | Dies ist ein HTML-Zitatblock. | ||
| + | </ | ||
| + | |||
| + | < | ||
| + | |||
| + | < | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 9. Inline-Styling (eingeschränkt) ==== | ||
| + | |||
| + | > Obsidian erlaubt **kein globales oder eingebettetes CSS**, aber Inline-Styles funktionieren **teilweise**, | ||
| + | |||
| + | <code html> | ||
| + | <span style=" | ||
| + | <div style=" | ||
| + | </ | ||
| + | |||
| + | > Nicht alle CSS-Eigenschaften werden gerendert – abhängig vom Obsidian-Thema. | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 10. Details & Zusammenklappen ==== | ||
| + | |||
| + | <code html> | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 11. Audio & Video (eingeschränkt) ==== | ||
| + | |||
| + | <code html> | ||
| + | <audio controls src=" | ||
| + | <video controls width=" | ||
| + | </ | ||
| + | |||
| + | > Funktioniert nur, wenn die Medien lokal vorhanden sind.\\ | ||
| + | > YouTube-Embeds ('' | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 12. Nicht unterstützte / blockierte Elemente ==== | ||
| + | |||
| + | Diese werden **nicht gerendert**: | ||
| + | |||
| + | <code html> | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 13. Kommentare ==== | ||
| + | |||
| + | <code html> | ||
| + | <!-- Dies ist ein HTML-Kommentar --> | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ===== LaTeX-Kurzreferenz für Obsidian (MathJax) ===== | ||
| + | |||
| + | Diese Übersicht zeigt alle **mathematischen LaTeX-Befehle**, | ||
| + | '' | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 1. Grundlegende Syntax ==== | ||
| + | |||
| + | <code md> | ||
| + | Inline: $E = mc^2$ | ||
| + | Block: | ||
| + | $$ | ||
| + | E = mc^2 | ||
| + | $$ | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 2. Griechische Buchstaben ==== | ||
| + | |||
| + | ^Kleinbuchstaben | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |'' | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 3. Operatoren und Symbole ==== | ||
| + | |||
| + | === Grundrechenarten === | ||
| + | |||
| + | <code language-latex> | ||
| + | + - \times \div \pm \mp | ||
| + | </ | ||
| + | |||
| + | === Vergleichssymbole === | ||
| + | |||
| + | <code language-latex> | ||
| + | = \ne \approx \sim \propto < > \le \ge | ||
| + | </ | ||
| + | |||
| + | === Mengen & Logik === | ||
| + | |||
| + | <code language-latex> | ||
| + | \in \notin \subset \subseteq \supset \supseteq \cap \cup \emptyset | ||
| + | \forall \exists \nexists \neg \land \lor | ||
| + | </ | ||
| + | |||
| + | === Sonstige Symbole === | ||
| + | |||
| + | <code language-latex> | ||
| + | \infty \nabla \partial \therefore \because \angle \perp \parallel | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 4. Brüche, Wurzeln, Potenzen ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | \frac{a}{b} | ||
| + | \sqrt{x} | ||
| + | \sqrt[n]{x} | ||
| + | a^b → a hoch b | ||
| + | a_b → Index (unten) | ||
| + | </ | ||
| + | |||
| + | Beispiel: | ||
| + | |||
| + | <code language-latex> | ||
| + | $$ | ||
| + | x_i = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} | ||
| + | $$ | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 5. Summen, Produkte, Integrale ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | \sum_{i=1}^{n} i | ||
| + | \prod_{i=1}^{n} x_i | ||
| + | \int_0^\infty e^{-x} dx | ||
| + | \oint_C f(z) \, dz | ||
| + | \lim_{x \to 0} f(x) | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 6. Pfeile und Vektoren ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | \rightarrow \leftarrow \leftrightarrow | ||
| + | \Rightarrow \Leftarrow \Leftrightarrow | ||
| + | \mapsto \longrightarrow \uparrow \downarrow | ||
| + | \vec{v} \overrightarrow{AB} \hat{n} | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 7. Klammern und Gruppierung ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | (a), [a], \{a\}, |a|, \langle a \rangle | ||
| + | \left( \frac{a}{b} \right) | ||
| + | </ | ||
| + | |||
| + | > Tipp: '' | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 8. Matrizen und Arrays ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | \begin{matrix} a & b \\ c & d \end{matrix} | ||
| + | \begin{pmatrix} a & b \\ c & d \end{pmatrix} | ||
| + | \begin{bmatrix} a & b \\ c & d \end{bmatrix} | ||
| + | \begin{Bmatrix} a & b \\ c & d \end{Bmatrix} | ||
| + | \begin{vmatrix} a & b \\ c & d \end{vmatrix} | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 9. Text in Formeln ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | \text{Text innerhalb der Formel} | ||
| + | </ | ||
| + | |||
| + | Beispiel: | ||
| + | |||
| + | <code language-latex> | ||
| + | f(x) = | ||
| + | \begin{cases} | ||
| + | 1 & \text{wenn } x > 0 \\ | ||
| + | 0 & \text{sonst} | ||
| + | \end{cases} | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 10. Akzente ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | \hat{x} \bar{x} \tilde{x} \dot{x} \ddot{x} \vec{x} | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 11. Ausrichtung und Mehrzeilige Gleichungen ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | \begin{align} | ||
| + | a &= b + c \\ | ||
| + | d &= e + f | ||
| + | \end{align} | ||
| + | </ | ||
| + | |||
| + | > In Obsidian funktionieren '' | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 12. Textstil und Formatierung ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | \mathbf{A} \mathit{A} \mathrm{A} \mathbb{A} \mathcal{A} | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 13. Funktionen und Konstanten ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | \sin \cos \tan \log \ln \exp \max \min | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 14. Spezialfunktionen und Symbole ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | \Re \Im \arg \det \dim \gcd | ||
| + | \nabla \partial \infty | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 15. Leerzeichen und Operatorabstände ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | \, \; \quad \qquad | ||
| + | \! | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ==== 16. Beispiel – Komplexe Formel ==== | ||
| + | |||
| + | <code language-latex> | ||
| + | $$ | ||
| + | f(x) = \int_0^{\infty} e^{-x^2} dx = \frac{\sqrt{\pi}}{2} | ||
| + | $$ | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | **Hinweis: | ||
| + | Obsidian nutzt **MathJax v3**, d. h. fast alle Standard-LaTeX-Mathematikbefehle funktionieren –\\ | ||
| + | ausgenommen sind TikZ, PSTricks und Makrodefinitionen ('' | ||
neuerlehrplan/klasse10/markdownrefernz.1761498795.txt.gz · Zuletzt geändert: von lutz
