diff --git a/slides/chapter-13.de.md b/slides/chapter-13.de.md index bfaeb77..85c82f7 100644 --- a/slides/chapter-13.de.md +++ b/slides/chapter-13.de.md @@ -44,18 +44,18 @@ Das Paket `footmisc` stellt verschiedene weitere Optionen für die Darstellung v % Fußnoten inline anzeigen lassen: \usepackage[para]{footmisc} -% Symbole zur Nummerierung verwenden: +% Symbole statt Nummerierung verwenden: \usepackage[symbol]{footmisc} ``` @preview -![](svg/chapter-13/footmisc-crop.svg){.thin-padding} +![](svg/chapter-13/footmisc-de-crop.svg){.thin-padding} @slide(layout=content-and-preview) @title -Referenzen +Querverweise @content Manuell (Just don’t!) @@ -77,7 +77,7 @@ Wie man in Abbildung \ref{img:fooboar} … ``` @preview -![](svg/chapter-13/ref-example-crop.svg) +![](svg/chapter-13/ref-beispiel-crop.svg) @slide(layout=content-and-preview) @@ -86,7 +86,7 @@ Wie man in Abbildung \ref{img:fooboar} … Referenzen @content -Mit dem Paket `cleveref`: +Mit dem Paket `cleveref` (mit *einem* ›r‹!): ``` {.hljs .lang-tex} \begin{figure}[H] @@ -102,7 +102,7 @@ Jungeber (siehe \cref{img:fooboar}). Der Befehl `\cref` fügt selbstständig die passende Abkürzung ein. @preview -![](svg/chapter-13/cref-example-crop.svg) +![](svg/chapter-13/cref-beispiel-crop.svg) @slide(layout=content-only) @@ -117,7 +117,7 @@ Label müssen **eindeutig** sein. Zur Strukturierung ist das Voranstellen von K - + @@ -141,7 +141,7 @@ Label müssen **eindeutig** sein. Zur Strukturierung ist das Voranstellen von K Dinge, die zu beachten sind @content -* ++Durch \cref eingefügte Passagen tauchen in einigen Dokumentklassen erst dann auf Deutsch auf, wenn bereits in der Dokumentklasse die Sprache festgelegt wurde: +* ++Durch `\cref` eingefügte Passagen tauchen in einigen Dokumentklassen erst dann auf Deutsch auf, wenn bereits in der Dokumentklasse die Sprache festgelegt wurde: ``` {.hljs .lang-tex} \documentclass[ngerman]{article} @@ -175,7 +175,7 @@ Weiterführend ``` @preview -![](svg/chapter-13/cref-multiple-example-crop.svg) +![](svg/chapter-13/cref-multiple-beispiel-crop.svg) @slide(layout=task) diff --git a/slides/chapter-13.en.md b/slides/chapter-13.en.md index e69de29..34d58de 100644 --- a/slides/chapter-13.en.md +++ b/slides/chapter-13.en.md @@ -0,0 +1,201 @@ +@slide(layout=chapter-slide) + +@title +References and footnotes + + +@slide(layout=content-and-preview) + +@title +Footnotes 📎 + +@content +``` {.hljs .lang-tex} +\usepackage{hyperref} +``` + +The footnotes are automatically numbered consecutively, independent of sections. + +``` {.hljs .lang-tex} +The wild boar (Sus scrofa), also known as +the wild swine, Common wild pig, or +simply wild pig, is a suid native to much +of the Palearctic, as well as introduced +numbers in the Americas and Southeast +Asia. +\footnote{\url{https://en.wikipedia.org/ +wiki/Wild_boar}} +``` + +@preview +![](svg/chapter-13/footnote-example-crop.svg) + + +@slide(layout=content-and-preview) + +@title +Configuring footnotes + +@content +The `footmisc` package provides additional options for the presentation of footnotes that can be activated by adding parameters to the `\usepackage` command. + +``` {.hljs .lang-tex} +% Reset the counter on each page: +\usepackage[perpage]{footmisc} + +% Display footnotes in-line: +\usepackage[para]{footmisc} + +% Use symbols instead of numbers: +\usepackage[symbol]{footmisc} +``` + +@preview +![](svg/chapter-13/footmisc-en-crop.svg){.thin-padding} + + +@slide(layout=content-and-preview) + +@title +Cross-references + +@content +Manually (just don’t!) + +``` {.hljs .lang-tex} +As you can see in figure 23, … +``` + +Using the `\ref` command: + +``` {.hljs .lang-tex} +\begin{figure}[H] + \includegraphics % … + \caption{Our mascot Fooboar} + \label{img:fooboar} +\end{figure} + +As you can see in figure +\ref{img:fooboar}, … +``` + +@preview +![](svg/chapter-13/ref-example-crop.svg) + + +@slide(layout=content-and-preview) + +@title +Cross-references + +@content +Using the `cleveref` package (with *one* ‘r’!): + +``` {.hljs .lang-tex} +\begin{figure}[H] + \includegraphics % … + \caption{Our mascot Fooboar} + \label{img:fooboar} +\end{figure} + +Fooboar is a young and highly engaged +boar (see \cref{img:fooboar}). +``` + +The `\cref` command automatically inserts suitable prefixes. + +@preview +![](svg/chapter-13/cref-example-crop.svg) + + +@slide(layout=content-only) + +@title +Assigning labels + +@content +Both cross-reference commands work with **sections, figures, tables, listings and equations,** as long as you use correct labels. + +Labels have to be **unambiguous.** For clarity, certain prefixes are common, and some packages use them to derive information. + +
`fig:` Figures`fig:` Abbildungen `tbl:` Tabellen
+ + + + + + + + + + + + + + + + +
`fig:` Figures`tbl:` Tables
`sec:` Sections`subsec:` Subsections
`ch:` Chapters`itm:` Enumeration items
`eq:` Equations`lst:` Source code listings
+ + +@slide(layout=content-only) + +@title +Things to consider + +@content +* ++Passages inserted via `\cref` use the language specified at the document class: + + ``` {.hljs .lang-tex} + \documentclass[english]{article} + ``` + +* ++Apart from sections, referenced elements need captions (`\caption{…}`), and the **captions have to be placed before the label.** + +* ++For sections, the label is inserted directly after the section command. + + ``` {.hljs .lang-tex} + \section{Notes}\label{sec:notes} + ``` + + +@slide(layout=content-and-preview) + +@title +A few more things + +@content +* ++If the `hyperref` package is used before `cleveref`, cross-references appear as **clickable links** in the PDF document. +* ++`\cref` can take multiple references at once, separated by commas. + + ``` {.hljs .lang-tex} + \section{An introduction} + \label{sec:section1} + % … + Reference be made to + \cref{sec:section1,sec:section2, + sec:section3,sec:section5}. + ``` + +@preview +![](svg/chapter-13/cref-multiple-example-crop.svg) + + +@slide(layout=task) + +@task-number +12 + +@title +Inserting references + +@content +* Write a **footnote** for a word of your choice. +* ++On the second page of the document, insert a paragraph about the LaTeX weekend with `\cref` **references** to some of the sections you’ve been working on. You might have to assign labels first. +* ++Wrap a `figure` environment around the **listings from task 9** (section 2.4). +* ++Add a **label** and **caption** to each of them. +* ++Replace the reference numbers in the surrounding paragraphs by actual **references** to the listings. + + + + diff --git a/svg/chapter-13/cref-beispiel-crop.svg b/svg/chapter-13/cref-beispiel-crop.svg new file mode 100644 index 0000000..1b7c784 --- /dev/null +++ b/svg/chapter-13/cref-beispiel-crop.svg @@ -0,0 +1,221 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/svg/chapter-13/cref-beispiel-orig.svg b/svg/chapter-13/cref-beispiel-orig.svg new file mode 100644 index 0000000..578ee7b --- /dev/null +++ b/svg/chapter-13/cref-beispiel-orig.svg @@ -0,0 +1,221 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/svg/chapter-13/cref-beispiel.tex b/svg/chapter-13/cref-beispiel.tex new file mode 100644 index 0000000..09e5ceb --- /dev/null +++ b/svg/chapter-13/cref-beispiel.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} + +Fooboar ist ein sehr engagierter Jungeber (siehe \cref{img:fooboar}). + +\end{document} diff --git a/svg/chapter-13/cref-example-crop.svg b/svg/chapter-13/cref-example-crop.svg index 1b7c784..32ea7d4 100644 --- a/svg/chapter-13/cref-example-crop.svg +++ b/svg/chapter-13/cref-example-crop.svg @@ -6,81 +6,78 @@ - + - - - - - - - - - - - - - - - - + - + + + + + + + + + + - + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + - + @@ -89,133 +86,121 @@ - - - - - - - - - + + + + + + - - + + - - - - - + + + - - - - + + + + + + - - - - + - - - + - + + - + + + - - + - - - + - + + - + + + - - - - - - - - - - + - - - - + - - - - + - - - - - - - - - - - + + + + - - - - - - + + + - - + + + + + + - - - - - - + + + + + + + - - - - + - - - + + + + + + + + + + + + + + + + + + + diff --git a/svg/chapter-13/cref-example-orig.svg b/svg/chapter-13/cref-example-orig.svg index 578ee7b..c8065ea 100644 --- a/svg/chapter-13/cref-example-orig.svg +++ b/svg/chapter-13/cref-example-orig.svg @@ -6,81 +6,78 @@ - + - - - - - - - - - - - - - - - - + - + + + + + + + + + + - + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + - + @@ -89,133 +86,121 @@ - - - - - - - - - + + + + + + - - + + - - - - - + + + - - - - + + + + + + - - - - + - - - + - + + - + + + - - + - - - + - + + - + + + - - - - - - - - - - + - - - - + - - - - + - - - - - - - - - - - + + + + - - - - - - + + + - - + + + + + + - - - - - - + + + + + + + - - - - + - - - + + + + + + + + + + + + + + + + + + + diff --git a/svg/chapter-13/cref-example.tex b/svg/chapter-13/cref-example.tex index 09e5ceb..6db99aa 100644 --- a/svg/chapter-13/cref-example.tex +++ b/svg/chapter-13/cref-example.tex @@ -1,4 +1,4 @@ -\documentclass[a4paper,ngerman]{article} +\documentclass[a4paper,english]{article} \usepackage{babel} \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} @@ -11,10 +11,10 @@ \begin{figure}[H] \includegraphics[width=\textwidth]{fooboar.jpeg} - \caption{Unser Maskottchen Fooboar} + \caption{Our mascot Fooboar} \label{img:fooboar} \end{figure} -Fooboar ist ein sehr engagierter Jungeber (siehe \cref{img:fooboar}). +Fooboar is a young and highly engaged boar (see \cref{img:fooboar}). \end{document} diff --git a/svg/chapter-13/cref-multiple-beispiel-crop.svg b/svg/chapter-13/cref-multiple-beispiel-crop.svg new file mode 100644 index 0000000..799a436 --- /dev/null +++ b/svg/chapter-13/cref-multiple-beispiel-crop.svg @@ -0,0 +1,407 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/svg/chapter-13/cref-multiple-beispiel-orig.svg b/svg/chapter-13/cref-multiple-beispiel-orig.svg new file mode 100644 index 0000000..d8d1cb8 --- /dev/null +++ b/svg/chapter-13/cref-multiple-beispiel-orig.svg @@ -0,0 +1,407 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/svg/chapter-13/cref-multiple-beispiel.tex b/svg/chapter-13/cref-multiple-beispiel.tex new file mode 100644 index 0000000..1286de8 --- /dev/null +++ b/svg/chapter-13/cref-multiple-beispiel.tex @@ -0,0 +1,20 @@ +\documentclass[a4paper,ngerman]{article} +\usepackage{babel} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage{cleveref} + +\begin{document} +\thispagestyle{empty} + +\section{Ein Einstieg}\label{sec:section1} +\section{Bitte schnallen Sie sich an}\label{sec:section2} +\section{Flughöhe erreicht}\label{sec:section3} +\section{Jetzt geht es bergab}\label{sec:section4} +\section{Kurz vor Aufschlag}\label{sec:section5} +\section{Beruhigen Sie sich}\label{sec:section6} + +Hier sei verwiesen auf \cref{sec:section1,sec:section2,sec:section3,sec:section5}. + +\end{document} + diff --git a/svg/chapter-13/cref-multiple-example-crop.svg b/svg/chapter-13/cref-multiple-example-crop.svg index 799a436..36c3ebb 100644 --- a/svg/chapter-13/cref-multiple-example-crop.svg +++ b/svg/chapter-13/cref-multiple-example-crop.svg @@ -1,5 +1,5 @@ - + @@ -9,159 +9,156 @@ - + - - - - - + + - + + + + - + - + - + - - - + + + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + + + + + + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + @@ -172,236 +169,227 @@ - - + - - - - - - - - + + - + + + - - - - - + + + + + + + - - + - - - - - - - + - - - + + + + + - - - + - + + + - - + + + + + - + + + - - - - - - - - + - - - - - - + + - + + + + + + + - + + + + + + + + - + + + + - - - - - + + + - - - + - + + + + - - + + + + + - + + - - - - - + + + + + + - + - - - - + + + + - + - - + + + + + - - - - - + + - - - - + - + + + - - - - - - - - - + - - - + + + + - - - + + - + + - - - + + + + + + + + - - - + - + - - - - - - - - + + + + - - - + + - - - - + + + + + + + + - - - - - - + - + + - - - + - + + + - - - - - - - + + diff --git a/svg/chapter-13/cref-multiple-example-orig.svg b/svg/chapter-13/cref-multiple-example-orig.svg index d8d1cb8..7a32ab4 100644 --- a/svg/chapter-13/cref-multiple-example-orig.svg +++ b/svg/chapter-13/cref-multiple-example-orig.svg @@ -9,159 +9,156 @@ - + - - - - - + + - + + + + - + - + - + - - - + + + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + + + + + + + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + @@ -172,236 +169,227 @@ - - + - - - - - - - - + + - + + + - - - - - + + + + + + + - - + - - - - - - - + - - - + + + + + - - - + - + + + - - + + + + + - + + + - - - - - - - - + - - - - - - + + - + + + + + + + - + + + + + + + + - + + + + - - - - - + + + - - - + - + + + + - - + + + + + - + + - - - - - + + + + + + - + - - - - + + + + - + - - + + + + + - - - - - + + - - - - + - + + + - - - - - - - - - + - - - + + + + - - - + + - + + - - - + + + + + + + + - - - + - + - - - - - - - - + + + + - - - + + - - - - + + + + + + + + - - - - - - + - + + - - - + - + + + - - - - - - - + + diff --git a/svg/chapter-13/cref-multiple-example.tex b/svg/chapter-13/cref-multiple-example.tex index 1286de8..3429e61 100644 --- a/svg/chapter-13/cref-multiple-example.tex +++ b/svg/chapter-13/cref-multiple-example.tex @@ -1,4 +1,4 @@ -\documentclass[a4paper,ngerman]{article} +\documentclass[a4paper,english]{article} \usepackage{babel} \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} @@ -7,14 +7,14 @@ \begin{document} \thispagestyle{empty} -\section{Ein Einstieg}\label{sec:section1} -\section{Bitte schnallen Sie sich an}\label{sec:section2} -\section{Flughöhe erreicht}\label{sec:section3} -\section{Jetzt geht es bergab}\label{sec:section4} -\section{Kurz vor Aufschlag}\label{sec:section5} -\section{Beruhigen Sie sich}\label{sec:section6} +\section{An introduction}\label{sec:section1} +\section{Fasten your seatbelt}\label{sec:section2} +\section{Operating altitude reached}\label{sec:section3} +\section{It’s going downhill}\label{sec:section4} +\section{Just before impact}\label{sec:section5} +\section{Calm down}\label{sec:section6} -Hier sei verwiesen auf \cref{sec:section1,sec:section2,sec:section3,sec:section5}. +Reference be made to \cref{sec:section1,sec:section2,sec:section3,sec:section5}. \end{document} diff --git a/svg/chapter-13/footmisc-crop.svg b/svg/chapter-13/footmisc-de-crop.svg similarity index 100% rename from svg/chapter-13/footmisc-crop.svg rename to svg/chapter-13/footmisc-de-crop.svg diff --git a/svg/chapter-13/footmisc-orig.svg b/svg/chapter-13/footmisc-de-orig.svg similarity index 100% rename from svg/chapter-13/footmisc-orig.svg rename to svg/chapter-13/footmisc-de-orig.svg diff --git a/svg/chapter-13/footmisc.tex b/svg/chapter-13/footmisc-de.tex similarity index 100% rename from svg/chapter-13/footmisc.tex rename to svg/chapter-13/footmisc-de.tex diff --git a/svg/chapter-13/footmisc-en-crop.svg b/svg/chapter-13/footmisc-en-crop.svg new file mode 100644 index 0000000..bd8837a --- /dev/null +++ b/svg/chapter-13/footmisc-en-crop.svg @@ -0,0 +1,621 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/svg/chapter-13/footmisc-en-orig.svg b/svg/chapter-13/footmisc-en-orig.svg new file mode 100644 index 0000000..ed2b12b --- /dev/null +++ b/svg/chapter-13/footmisc-en-orig.svg @@ -0,0 +1,621 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/svg/chapter-13/footmisc-en.tex b/svg/chapter-13/footmisc-en.tex new file mode 100644 index 0000000..e062440 --- /dev/null +++ b/svg/chapter-13/footmisc-en.tex @@ -0,0 +1,16 @@ +\documentclass[a4paper,ngerman]{article} +\usepackage{babel} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage{cleveref} +\usepackage{graphicx} +\usepackage{float} +\usepackage[para]{footmisc} + +\begin{document} +\thispagestyle{empty} + +\vspace*{18.5cm} +Fooboar\footnote{You should know him by now.} has been responsible for Fluff in the Fachschaft since summer term 2018. He learned very fast to handle TeXstudio.\footnote{He has also visited the \LaTeX weekend.} According to rumours, with \LaTeX, he writes not only letters and novels, but also history. + +\end{document} diff --git a/svg/chapter-13/footnote-example-crop.svg b/svg/chapter-13/footnote-example-crop.svg index 62f5652..692c4c0 100644 --- a/svg/chapter-13/footnote-example-crop.svg +++ b/svg/chapter-13/footnote-example-crop.svg @@ -1,86 +1,101 @@ - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + + + + + + + + + + + + + + + + @@ -117,10 +132,10 @@ - + - + @@ -135,260 +150,355 @@ - + - + - + - + - + + + + + + + + + + - - + + + - - - + + + + - + - - - + + + - - - - - - + + + + - + + + + + + + + - + + + + - - - + + + - - - - + + - - - - - - - - + + - - + + + - - - - - - - - + + - + + - - - - - - - + + + + + + - + + + + + + - - - + - - - - - - + + + - + + + + - + + - - - + + + + + + - - - - - - - + + + + - + + + + - - - - - + + - + - - - + + + + - - - + + + + + - - - - - - - + - - + + - - - - + - - - - + + - + - + + - - - + + + - - + - + + + + + + + + + + - + + - - - - - + - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/svg/chapter-13/footnote-example-orig.svg b/svg/chapter-13/footnote-example-orig.svg index 0228981..fcf0ccf 100644 --- a/svg/chapter-13/footnote-example-orig.svg +++ b/svg/chapter-13/footnote-example-orig.svg @@ -6,81 +6,96 @@ - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + + + + + + + + + + + + + + + + @@ -117,10 +132,10 @@ - + - + @@ -135,260 +150,355 @@ - + - + - + - + - + + + + + + + + + + - - + + + - - - + + + + - + - - - + + + - - - - - - + + + + - + + + + + + + + - + + + + - - - + + + - - - - + + - - - - - - - - + + - - + + + - - - - - - - - + + - + + - - - - - - - + + + + + + - + + + + + + - - - + - - - - - - + + + - + + + + - + + - - - + + + + + + - - - - - - - + + + + - + + + + - - - - - + + - + - - - + + + + - - - + + + + + - - - - - - - + - - + + - - - - + - - - - + + - + - + + - - - + + + - - + - + + + + + + + + + + - + + - - - - - + - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + diff --git a/svg/chapter-13/footnote-example.tex b/svg/chapter-13/footnote-example.tex new file mode 100644 index 0000000..3acdf3a --- /dev/null +++ b/svg/chapter-13/footnote-example.tex @@ -0,0 +1,12 @@ +\documentclass[a4paper,ngerman]{article} +\usepackage{babel} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage{hyperref} +\begin{document} +\thispagestyle{empty} + +\vspace*{18.5cm} +The wild boar (Sus scrofa), also known as the wild swine, Common wild pig, or simply wild pig, is a suid native to much of the Palearctic, as well as introduced numbers in the Americas and Southeast Asia.\footnote{\url{https://en.wikipedia.org/wiki/Wild_boar}} + +\end{document} diff --git a/svg/chapter-13/ref-beispiel-crop.svg b/svg/chapter-13/ref-beispiel-crop.svg new file mode 100644 index 0000000..837f88e --- /dev/null +++ b/svg/chapter-13/ref-beispiel-crop.svg @@ -0,0 +1,250 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/svg/chapter-13/ref-beispiel-orig.svg b/svg/chapter-13/ref-beispiel-orig.svg new file mode 100644 index 0000000..b4ca1ca --- /dev/null +++ b/svg/chapter-13/ref-beispiel-orig.svg @@ -0,0 +1,250 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/svg/chapter-13/ref-beispiel.tex b/svg/chapter-13/ref-beispiel.tex new file mode 100644 index 0000000..e714588 --- /dev/null +++ b/svg/chapter-13/ref-beispiel.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 Abbildung \ref{img:fooboar} sieht, ist Fooboar ein sehr engagierter Jungeber. + +\end{document} diff --git a/svg/chapter-13/ref-example-crop.svg b/svg/chapter-13/ref-example-crop.svg index 837f88e..1caf0d9 100644 --- a/svg/chapter-13/ref-example-crop.svg +++ b/svg/chapter-13/ref-example-crop.svg @@ -6,84 +6,78 @@ - + - - - - - - - - - - - - - - - - + - + + + + + + + + + + - + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + - + + + + + + + @@ -92,159 +86,140 @@ - - - - - - - - - + + + + + + - - + + - - - - - + + + - - - - + + + + + + - - - - + - - - + - + + - + + + - - + + - - - + - - - + + - - - + + + - - + + + - - - - - - - - - + + - + + + + + - - - - + + - - + + - - - + + - + + + - + + - - + - - - + - - - + + + + - - - - + + + - + - - - - + + + - - + + + + + + + - - - - + - - - - - - - - - - - + + + + diff --git a/svg/chapter-13/ref-example-orig.svg b/svg/chapter-13/ref-example-orig.svg index b4ca1ca..eb7a519 100644 --- a/svg/chapter-13/ref-example-orig.svg +++ b/svg/chapter-13/ref-example-orig.svg @@ -6,84 +6,78 @@ - + - - - - - - - - - - - - - - - - + - + + + + + + + + + + - + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + - + + + + + + + @@ -92,159 +86,140 @@ - - - - - - - - - + + + + + + - - + + - - - - - + + + - - - - + + + + + + - - - - + - - - + - + + - + + + - - + + - - - + - - - + + - - - + + + - - + + + - - - - - - - - - + + - + + + + + - - - - + + - - + + - - - + + - + + + - + + - - + - - - + - - - + + + + - - - - + + + - + - - - - + + + - - + + + + + + + - - - - + - - - - - - - - - - - + + + + diff --git a/svg/chapter-13/ref-example.tex b/svg/chapter-13/ref-example.tex index e714588..13fef92 100644 --- a/svg/chapter-13/ref-example.tex +++ b/svg/chapter-13/ref-example.tex @@ -1,4 +1,4 @@ -\documentclass[a4paper,ngerman]{article} +\documentclass[a4paper,english]{article} \usepackage{babel} \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} @@ -11,10 +11,10 @@ \begin{figure}[H] \includegraphics[width=\textwidth]{fooboar.jpeg} - \caption{Unser Maskottchen Fooboar} + \caption{Our mascot Fooboar} \label{img:fooboar} \end{figure} -Wie man in Abbildung \ref{img:fooboar} sieht, ist Fooboar ein sehr engagierter Jungeber. +As you can see in figure \ref{img:fooboar}, fooboar is a young and very engaged boar. \end{document}