Page Layout ⇒ Inline footnotes
-
- Posts: 4
- Joined: Mon Nov 02, 2009 4:03 pm
Inline footnotes
Hi, how do I get footnotes to appear as an inline list (items listed on the same line) ?
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Inline footnotes
Try the footmisc package with its para option.
For more information refer to the package manual.
Best regards and welcome to the board
Thorsten¹
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}
Best regards and welcome to the board
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 4
- Joined: Mon Nov 02, 2009 4:03 pm
Re: Inline footnotes
perfect. thanks so much!