I need to change the fontsize to 11pt inside a table environment. The default setting of the document is 12pt using scrartcl, but I need to change this to exact 11pt in the float (the reason is that there are dozens of tables that have been created to fit exactly 11pt before).
I use KOMA's \changefontsizes{11pt} to do this, but this generates dozens of warnings:
Using fallback calculation to setup font sizes for basic size '11pt' on input line...
This is a bit confusing, because if I change the whole document to 11pt these warnings go away, hence 11pt should exist. I thought the changefontsizes command was created for exactly this purpose. So if anyone could tell me how to do this properly I would be grateful.
\documentclass{scrartcl}[12pt]
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\begin{table}\centering
\changefontsizes{11pt}\footnotesize
\begin{tabular}{|c|c|c|}
\hline
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9 \\
\hline
\end{tabular}
\end{table}
\end{document}