I would need to change the font of all footnotes in a document; the brute force way would be to change the font in each and everyone of them, except that they are a few dozen.
I thought I could use \renewcommand in the preamble, but I do not seem to have it work. How can I have that each time I have a footnote it is in italics, without having to write
\footnote{\textit{blahblah}}
I know the question is trivial for most of you, but I seem to get something wrong Thanks! francesco
Here is my MWE
\documentclass[12pt,a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{lipsum}
\renewcommand{\footnote}{\footnote{\italics}}

\footnotecommand. Please post a minimal working example (MWE) of your document for us to check. – Phelype Oleinik Jul 04 '18 at 15:25amssymbalready loadsamsfonts, so it is enough to loadamssymb. Furthermore this is not an MWE, it might be enough to understand you question in this instance, but in general it might not be enough and it is good practice to post fully working examples. – moewe Jul 04 '18 at 15:43\usepackage{footmisc} \renewcommand*{\footnotelayout}{\itshape}as suggested in the linked answer work for you?\addtokomafontis a command of the KOMA script bundle, so it is not available in the standard classes. – moewe Jul 04 '18 at 15:45scrextendand let it take over the footnotes:\usepackage{scrextend} \deffootnote[1em]{1.5em}{1em}{\textsuperscript{\thefootnotemark}} \addtokomafont{footnote}{\itshape}. – moewe Jul 04 '18 at 15:50