Page Layoutdistance between bottom text and footnotes

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
mahavishnu
Posts: 1
Joined: Mon Aug 20, 2012 10:00 pm

distance between bottom text and footnotes

Post by mahavishnu »

I want to change the distance between the bottom of the text and footnotes (more precisely the line before the footnotes) . I have seen commands like footskip with setlength but it doesn't make what I want...

I'm sorry for my English which can maybe explain why I don't find a solution..

Thank you for your helping me!
Eric

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

distance between bottom text and footnotes

Post by cgnieder »

Hi mahavishnu,

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}
site moderator & package author
Post Reply