Changed font size of footnotes to scriptsize

This commit is contained in:
chhan11 2017-06-06 13:10:33 +02:00
parent 883c609cff
commit f9a04e3111
1 changed files with 10 additions and 0 deletions

View File

@ -253,3 +253,13 @@
% "\counterwithout{footnote}{chapter}" for the
% changes to be able to take effect.
\renewcommand{\thefootnote}{\arabic{footnote}}
\addtolength{\skip\footins}{2pt} % vertical space between rule and main text
% https://tex.stackexchange.com/a/141975
\let\origfootnote\footnote % font size of footnotes; changes \footnotesize command only inside footnotes!
\renewcommand{\footnote}[1]{%
\renewcommand\footnotesize\scriptsize % here there is scriptsize in footnotes (example)
\origfootnote{#1}}