Created
March 25, 2015 22:54
-
-
Save tjarksaul/5f02ac110188cbfe2037 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\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