Page Layout ⇒ Modifications to the Footer
Modifications to the Footer
i've been trying to find a way to get more space above and below the footer line as it looks too packed if i leave like it is...
does anyone know how to get more space in there?
thank you
- Attachments
-
- here you can see that everything is too packed
- problem_latex_footnotes.PNG (44.26 KiB) Viewed 4365 times
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
Modifications to the Footer
Have you tried something like:
Code: Select all
\setlength{\headheight}{XXpt}
Cheers
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Modifications to the Footer
- There is no length register to control the foot height.
- The footnotes belong to the text body and not to the footer.
Code: Select all
\documentclass[11pt,a4paper,english]{article}\usepackage[T1]{fontenc}\usepackage[uft8]{inputenc}\usepackage{babel}\usepackage[onehalfspacing]{setspace}\usepackage{blindtext}\skip\footins=2\bigskipamount % Determine the space above the rule\renewcommand*{\footnoterule}{%\kern-3pt%\hrule width 2in%\kern 2.6pt%\vspace{\smallskipamount} % The additional space below the rule}\begin{document}\blindtext\footnote{The quick brown fox jumps over the lazy dog.}\blindtext[3]\end{document}
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Modifications to the Footer

it worked!