diff --git a/sections/german/13/13.md b/sections/german/13/13.md index 53de636..cfccaab 100644 --- a/sections/german/13/13.md +++ b/sections/german/13/13.md @@ -1,15 +1,52 @@
-

Referenzen und Fußnoten

+

📎
Referenzen und Fußnoten

--- -TODO: Label und Ref +
+
+

Referenzen

+ Manuell (oder: Wie man es nicht macht) +
Wie man in Abbildung 23 sieht, ...
+ Mit dem Paket cleveref: +
\begin{figure}[H]
+    \includegraphics[width=\textwidth]{fooboar.jpeg}
+    \caption{Unser Maskottchen Fooboar}
+    \label{img:fooboar}
+\end{figure}
+
+Wie man in \cref{img:fooboar} sieht, ...
+
+
+ +
+
--- +
+
+

Dinge, die zu beachten sind

+ +
+
+ +--- + +TODO: Auf viele Umgebungen übertragbar (einschließlich Abschnitte) +TODO: Label und Ref TODO: hyperref mit `\autoref` ODER cleveref mit `\cref` (nach hyperref einbinden) --- @@ -26,3 +63,4 @@ TODO: Fußnoten + diff --git a/sections/german/13/fooboar.jpeg b/sections/german/13/fooboar.jpeg new file mode 100644 index 0000000..95314d1 Binary files /dev/null and b/sections/german/13/fooboar.jpeg differ diff --git a/sections/german/13/reference-example-crop.svg b/sections/german/13/reference-example-crop.svg new file mode 100644 index 0000000..e124216 --- /dev/null +++ b/sections/german/13/reference-example-crop.svg @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sections/german/13/reference-example-orig.svg b/sections/german/13/reference-example-orig.svg new file mode 100644 index 0000000..403702a --- /dev/null +++ b/sections/german/13/reference-example-orig.svg @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sections/german/13/reference-example.tex b/sections/german/13/reference-example.tex new file mode 100644 index 0000000..b2cd16e --- /dev/null +++ b/sections/german/13/reference-example.tex @@ -0,0 +1,20 @@ +\documentclass[a4paper,ngerman]{article} +\usepackage{babel} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage{cleveref} +\usepackage{graphicx} +\usepackage{float} + +\begin{document} +\thispagestyle{empty} + +\begin{figure}[H] + \includegraphics[width=\textwidth]{fooboar.jpeg} + \caption{Unser Maskottchen Fooboar} + \label{img:fooboar} +\end{figure} + +Wie man in \cref{img:fooboar} sieht, ist Fooboar ein sehr engagierter Jungeber. + +\end{document}