[Tex/LaTex] Change font size in tables document-wide

fontsizetables

Using scrartcl as my document class, tables are set in a slightly larger font size than my normal text (12pt vs. 11pt I suppose). How can I change the font size for tables document wide? At the moment I just add a \small to all my tables.

Best Answer

\makeatletter
\renewenvironment{table}{%
  \if@tablecaptionabove\let\caption\captionabove
  \else\let\caption\captionbelow\fi
  \small\@float{table}%
}{%
  \end@float
}
\makeatother