I'm beginning with LaTeX, so this question is may be obvious. When using moderncv package, if I add footnotes to my document, the footnotes take too much space.
How can I decrease the footnotes margin?
Here is a miminal example (MWE) to reproduce the problem:
\documentclass[11pt,a4paper,sans]{moderncv}
\moderncvstyle{classic}
\usepackage[bottom,norule]{footmisc}
\usepackage[utf8]{inputenc}
\usepackage[scale=0.75]{geometry}
\firstname{John}
\familyname{Doe}
\address{street and number}{postcode city}
\mobile{+1~(234)~567~890}
\phone{+2~(345)~678~901}
\email{john@doe.org}
\homepage{www.johndoe.com}
\begin{document}
\makecvtitle
\section{Computer skills}
\cvdoubleitem{category 1}{XXX\footnotemark[1], YYY\footnotemark[2], ZZZ}{category 4}{XXX, YYY, ZZZ}
\cvdoubleitem{category 2}{XXX\footnotemark[1], YYY, ZZZ}{category 5}{XXX, YYY, ZZZ}
\footnotetext[1]{First note}
\footnotetext[2]{Second note}
\end{document}