@slide(layout=chapter-slide) @title References and footnotes @slide(layout=content-and-preview) @title Footnotes 📎 @content ``` {.hljs .lang-tex} \usepackage{hyperref} ``` Footnotes are automatically numbered consecutively, independent of sections. (Here, `hyperref` is used for the `\url` command, it is not necessary for footnotes per se.) ``` {.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  @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 {.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  @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 | `tbl:` Tables |
| `sec:` Sections | `subsec:` Subsections |
| `ch:` Chapters | `itm:` Enumeration items |
| `eq:` Equations | `lst:` Source code listings |