Skip to content

Instantly share code, notes, and snippets.

@tjarksaul
Created March 25, 2015 22:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tjarksaul/5f02ac110188cbfe2037 to your computer and use it in GitHub Desktop.
Save tjarksaul/5f02ac110188cbfe2037 to your computer and use it in GitHub Desktop.
\documentclass[options]{scrreprt}
...
% Fußnoten in Tabellen
\usepackage{footnote}
...
\begin{document}
...
\begin{savenotes}
\begin{table}[htbp]
\centering
\begin{tabular}{lrr}
\toprule
Netz & Beschreibung & Anzahl IP--Adressen\footnote{Die angegebene Anzahl schließt nicht nutzbare Adressen ein}\\
\hline
10.0.0.0/8 & 1 Class--A--Netz & $2^{24}\approx 17\times 10^{6}$ \\
172.16.0.0/12 & 16 Class--B--Netze & $2^{20}\approx 1\times 10^6$ \\
192.168.0.0/16 & 256 Class--C--Netze & $2^{16} = 65\,536$\\
\bottomrule
\end{tabular}
\caption{Private IPv4--Adressen}
\label{tab:private-adressen}
\end{table}
\end{savenotes}
...
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment