Page Layout ⇒ distance between bottom text and footnotes
-
- Posts: 1
- Joined: Mon Aug 20, 2012 10:00 pm
distance between bottom text and footnotes
I'm sorry for my English which can maybe explain why I don't find a solution..
Thank you for your helping me!
Eric
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
distance between bottom text and footnotes
Welcome to the LaTeX-Community!
The space between textbody and footnoterule is controlled by the skip
\footins
:Code: Select all
\documentclass{article}
\usepackage{lipsum}% dummy text
\addtolength{\skip\footins}{20pt}
\begin{document}
\lipsum[1]
A text with a footnote\footnote{Some footnote} \lipsum
\end{document}