
Git Spickzettel
Uebersicht wichtiger Git-Befehle.
Meistern Sie die Markdown-Syntax von Jupyter Notebook mit diesem vollstaendigen Leitfaden. Lernen Sie LaTeX-Mathematikformeln, Code-Bloecke, Tabellen, MyST-Erweiterungen und erweiterte Formatierungstechniken fuer Data-Science-Dokumentation. Perfekt fuer Python-Entwickler, Data Scientists und Forscher.
# Heading Level 1
## Heading Level 2
### Heading Level 3
#### Heading Level 4
##### Heading Level 5
###### Heading Level 6*italic text* or _italic text_
**bold text** or __bold text__
***bold italic*** or ___bold italic___
~~strikethrough~~
`inline code`texte italique ou texte italique
texte gras ou texte gras
gras italique ou gras italique
durchgestrichener Text
code en ligne
# Unordered list
- Item 1
- Item 2
- Sub-item 2.1
- Sub-item 2.2
# Ordered list
1. First item
2. Second item
1. Sub-item 2.1
2. Sub-item 2.2Ungeordnete Liste:
Geordnete Liste:
# Links
[Link text](http://example.com)
[Link with title](http://example.com "Link title")
# Images


# Reference-style links
[Link text][1]
[1]: http://example.com# Inline math formula
$E = mc^2$
# Block math formula
$$
\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}
$$
# Complex math expression
$$
f(x) = \begin{cases}
x^2 & \text{if } x \geq 0 \\
-x^2 & \text{if } x < 0
\end{cases}
$$Inline-Mathematikformel:
Einsteins beruehmte Gleichung : E = mc²
Block-Mathematikformel:
Gausssches Integral
Komplexer mathematischer Ausdruck:
Stueckweise Funktion
Gaengige mathematische Symbole:
Lettres grecques
Operatoren
Relations
# Python code block
```python
def hello_world():
print("Hello, World!")
return True
```
# Code block with line numbers
```python {.line-numbers}
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 2*np.pi, 100)
y = np.sin(x)
plt.plot(x, y)
```Bloc de code Python :
def hello_world():
print("Bonjour le monde !")
return TrueCode-Block mit Syntax-Hervorhebung:
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 2*np.pi, 100)
y = np.sin(x)
plt.plot(x, y)```{note}
This is a note box
```
```{warning}
This is a warning box
```
```{tip}
This is a tip box
```
```{important}
This is an important box
```# Label definition
(my-label)=
## My Section
# Reference labels
{ref}`my-label`
{ref}`Custom text <my-label>`
# Reference figures
{numref}`figure-{number}`
{ref}`Figure caption <my-figure>`# Figure
```{figure} ./images/example.png
:name: my-figure
:width: 300px
Figure caption text
```
# Table
```{list-table} Table title
:header-rows: 1
:name: my-table
* - Column 1
- Column 2
* - Row 1 Col 1
- Row 1 Col 2
* - Row 2 Col 1
- Row 2 Col 2
```Figure:
Table title:
| Column 1 | Column 2 |
|---|---|
| Row 1 Col 1 | Row 1 Col 2 |
| Row 2 Col 1 | Row 2 Col 2 |
# Colored alert boxes
Tip: Use blue boxes for tips and information
Warning: Use yellow boxes for warnings
Success: Use green boxes for success messages
Danger: Use red boxes for danger warnings
# Link to section
[Section Title](#section-title)
# Section link with ID
[Section Title](#section_ID)
# Link to other page
[Other Page](other-page.md)Section links:
External page link:
Other Page# Geometric shapes
→ (→)
← (←)
↑ (↑)
↓ (↓)
★ (★)
☆ (☆)
♠ (♠)
♣ (♣)
♥ (♥)
♦ (♦)
# Mathematical symbols
≤ (≤)
≥ (≥)
≠ (≠)
∞ (∞)
∑ (∑)
∏ (∏)
√ (√)Geometric shapes:
Mathematical symbols:
# Force line break
This is the first line
This is the second line
# Horizontal rules
***
---
___Force line break:
Horizontal rules:
| Header1 | Header2 | Header3 |
|---------|---------|---------|
| Row1Col1 | Row1Col2 | Row1Col3 |
| Row2Col1 | Row2Col2 | Row2Col3 || Header1 | Header2 | Header3 |
|---|---|---|
| Row1Col1 | Row1Col2 | Row1Col3 |
| Row2Col1 | Row2Col2 | Row2Col3 |
| Left Align | Center Align | Right Align |
|:-----------|:------------:|------------:|
| Left | Center | Right |
| Content | Content | Content || Left Align | Center Align | Right Align |
|---|---|---|
| Left | Center | Right |
| Content | Content | Content |

Jupyter Notebook Markdown syntax overview
Verwenden Sie die LaTeX-Syntax mit Inline-Formeln in $...$ und Block-Formeln in $$...$$. Jupyter rendert mathematische Formeln automatisch mit MathJax.
Stellen Sie sicher, dass das Tabellenformat korrekt ist: Jede Zeile muss die gleiche Anzahl an Spalten haben, und es muss eine Trennzeile (|---|---|---) zwischen Kopfzeilen und Datenzeilen geben.
Verwenden Sie drei Backticks ``` zum Umschliessen des Codes. Sie koennen eine Sprache fuer die Syntaxhervorhebung angeben, z. B. ```python.
MyST Markdown ist eine Erweiterung von Markdown, die zusaetzliche Funktionen wie Querverweise, Warnhinweise, Direktiven usw. unterstuetzt und hauptsaechlich fuer technische Dokumentation und wissenschaftliche Publikationen verwendet wird.

Uebersicht wichtiger Git-Befehle.

Markdown zu HTML konvertieren. Dokumentation, Blog-Artikel.

Profil junger Zielgruppen (Frankreich): Werte, Apps, Konsum – mit INSEE-/IPSOS-Bezug.

Basic-Authentication-Daten fuer HTTP-Anfragen erzeugen.