Page LayoutFormatting for Footnotes

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
amath
Posts: 1
Joined: Tue Jun 12, 2012 7:51 pm

Formatting for Footnotes

Post by amath »

Hi,

I am writing a report in 12pt font size and I need to satisfy the following two requirements regarding footnotes:
  1. The line separating the footnote from the main part of the text should begin two spaces beneath the last line of my text.
  2. Double-space between each entry.
I am using \setlength{\footnotesep}{0.55cm} to achieve (2) but, as I do not know what the default space between two Footnotes is, I am not sure whether my 0.55cm is correct. Secondly, I do not know how to achieve (1).

Can anyone please advise?
Thank you.

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Formatting for Footnotes

Post by localghost »

Both lengths can be set by the common \setlength command.
  1. I assume that with "two spaces" you mean the space that would be occupied by two lines. The corresponding length is \baselineskip. The length that determines the distance between text body and footnotes is \skip\footins. Hence the command for the appropriate assignment is this.

    Code: Select all

    \setlength{\skip\footins}{2\baselineskip}
    The default value for this length in a document with 12pt font size is 10.8pt plus 4pt minus 2pt, which means that this length is stretchable and compressible. The new value is fixed.
  2. The default value for the length \footnotesep in a document with 12pt font size is 8.4pt. Since LaTeX uses 1.2 as default inter-line spacing, you have to multiply this value with 2/1.2=1.67 to get double-spaced lines. Since 8.4·1.67 is approximately 14, the corresponding assignment is this.

    Code: Select all

    \setlength{\footnotesep}{14pt}
Please check if these values match because I didn't test them.


Best regards and welcome to the board
Thorsten
Post Reply