minimal LaTeX source:
Code: Select all
\documentclass[a4paper,12pt]{article}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
Some text before table. \par
\begin{center}
\begin{tabular}{l|rrr}
\hline \textbf{\LaTeX-command} & \multicolumn{3}{c}{\textbf{size}} \\ \cline{2-4}
& \textbf{10\,pt} & \textbf{11\,pt} & \textbf{12\,pt} \\ \hline \hline
\texttt{tiny} & 5\,pt & 6\,pt & 6\,pt \\
\texttt{scriptsize} & 7\,pt & 8\,pt & 8\,pt \\
\texttt{footnotesize} & 8\,pt & 9\,pt & 10\,pt \\
\texttt{small} & 9\,pt & 10\,pt & 11\,pt \\
\hline
\texttt{normalsize} & 10\,pt & 11\,pt & 12\,pt \\
\hline
\texttt{large} & 12\,pt & 12\,pt & 14\,pt \\
\texttt{Large} & 14\,pt & 14\,pt & 17\,pt \\
\texttt{LARGE} & 17\,pt & 17\,pt & 20\,pt \\
\texttt{huge} & 20\,pt & 20\,pt & 25\,pt \\
\texttt{Huge} & 25\,pt & 25\,pt & 25\,pt \\
\hline
\end{tabular}
\end{center}
Some text after table
\end{document}
Thanks in advance!