LyX ⇒ Different Line Spacing for Footnotes
-
- Posts: 94
- Joined: Wed Sep 07, 2011 3:14 pm
Different Line Spacing for Footnotes
Is there a way to set that globally?
Cheers,
EE
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
Code: Select all
\usepackage[doublespacing]{setspace}
-
- Posts: 94
- Joined: Wed Sep 07, 2011 3:14 pm
Re: Different Line Spacing for Footnotes
EDIT: well, sorta. Captions are still double-spaced; is that intended behavior?
Cheers,
EE
-
- Posts: 94
- Joined: Wed Sep 07, 2011 3:14 pm
Re: Different Line Spacing for Footnotes
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
-
- Posts: 94
- Joined: Wed Sep 07, 2011 3:14 pm
Different Line Spacing for Footnotes
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}}
Thanks,
EE