Text FormattingBaselinestretch and footnote

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
jgaspard
Posts: 20
Joined: Tue Aug 19, 2008 4:16 pm

Baselinestretch and footnote

Post by jgaspard »

Hi all,

sorry if this already came up.

What if I wanted to stretch the baseline in the text but NOT in the footnotes nor in the tables?

Thanks a lot.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

Baselinestretch and footnote

Post by localghost »

jgaspard wrote:[…] sorry if this already came up. […]
This could be found out by using the search function of the forum.

The setspace package only stretches interline spacing in the normal text, not in footnotes.

Code: Select all

\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage{includeheadfoot,margin=2cm]{geometry}
\usepackage[bottom,flushmargin,hang,multiple]{footmisc}
\usepackage[onehalfspacing]{setspace}
\usepackage{lmodern}
\usepackage{blindtext}

\parindent0em

\begin{document}
  \blindtext\footnote{\blindtext}
\end{document}

Best regards
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Post Reply