From f9a04e311144c6dd15a93e4b84964126de9fd377 Mon Sep 17 00:00:00 2001 From: chhan11 Date: Tue, 6 Jun 2017 13:10:33 +0200 Subject: [PATCH] Changed font size of footnotes to scriptsize --- structure.tex | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/structure.tex b/structure.tex index 81cb6aa..8726aed 100644 --- a/structure.tex +++ b/structure.tex @@ -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}}