LyXDifferent Line Spacing for Footnotes

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
ExecutorElassus
Posts: 94
Joined: Wed Sep 07, 2011 3:14 pm

Different Line Spacing for Footnotes

Post by ExecutorElassus »

This is probably a fairly simple issue, but is there a way to specify line-spacing rules specifically for footnote text? I'm required to double-space the main body text, but double-spacing the footnotes is neither required nor practical.

Is there a way to set that globally?

Cheers,

EE

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

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Different Line Spacing for Footnotes

Post by Stefan Kottwitz »

You could use the setspace package. It adjusts the line spacing of the body text, but keeps the normal tight line spacing for footnotes, also for figure and table captions.

Code: Select all

\usepackage[doublespacing]{setspace}
Stefan
LaTeX.org admin
ExecutorElassus
Posts: 94
Joined: Wed Sep 07, 2011 3:14 pm

Re: Different Line Spacing for Footnotes

Post by ExecutorElassus »

That did the trick. Thanks!

EDIT: well, sorta. Captions are still double-spaced; is that intended behavior?

Cheers,

EE
ExecutorElassus
Posts: 94
Joined: Wed Sep 07, 2011 3:14 pm

Re: Different Line Spacing for Footnotes

Post by ExecutorElassus »

Update: there's one problem with using 'setspace' though: I can only set the default spacing at single. If I try to set it to one-half, XeTeX chokes on a conflicting instruction.

So: is there a way to set:

caption spacing and quotation blocks to single,
footnotes to one-half, and
all the rest to double?

Cheers,

EE
ExecutorElassus
Posts: 94
Joined: Wed Sep 07, 2011 3:14 pm

Different Line Spacing for Footnotes

Post by ExecutorElassus »

Hi again,

I've been working with a document for a while now, and I find that my footnotes are spaced badly. The space between footnotes is single, but the space within them is 1.5: this creates an uneven text that I don't want. My main text is 1.5 spaced, and I have the following relevant lines in my preamble:

Code: Select all

\defaultfontfeatures{Mapping=tex-text}
\usepackage[ruled]{bigfoot}
\DeclareNewFootnote{default}
\DeclareNewFootnote{B}[fnsymbol]
\MakeSortedPerPage{footnoteB}
\usepackage[onehalfspacing]{setspace}
\usepackage{chngcntr}
\counterwithout{footnote}{chapter}
\definecolor{magenta}{RGB}{102,0,204}
\deffootnote[0.75em]{0.5em}{1em}{\textsuperscript{\thefootnotemark}}
Have I set something up here incorrectly?

Thanks,

EE
Post Reply