Page LayoutInline footnotes

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
leafbranch
Posts: 4
Joined: Mon Nov 02, 2009 4:03 pm

Inline footnotes

Post by leafbranch »

Hi, how do I get footnotes to appear as an inline list (items listed on the same line) ?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

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

Inline footnotes

Post by localghost »

Try the footmisc package with its para option.

Code: Select all

\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[bottom,flushmargin,hang,multiple,para]{footmisc}
\usepackage{blindtext}

\begin{document}
  \blindtext\footnote{First footnote}\footnote{Second footnote}
\end{document}
For more information refer to the package manual.


Best regards and welcome to the board
Thorsten¹
leafbranch
Posts: 4
Joined: Mon Nov 02, 2009 4:03 pm

Re: Inline footnotes

Post by leafbranch »

perfect. thanks so much!
Post Reply