1
0
Fork 0
mirror of https://gitlab.com/netravnen/NetworkLabNotes.git synced 2024-11-23 19:17:54 +00:00

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

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}}