Graphics, Figures & TablesHow could I put a footnote in a framed environment?

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
clodilsognatore
Posts: 2
Joined: Sat Aug 02, 2014 1:03 pm

How could I put a footnote in a framed environment?

Post by clodilsognatore »

Hi everybody, I would like to insert a footnote into a framed text, how could I do?

this is the code:

Code: Select all

\begin{framed}
\paragraph{title}

bla bla bla\footnote{\textit{Understanding N(d1)and N(d2): Risk-Adjusted Probabilities in the Black-Scholes Model, Lars Tyge Nielsen, 1992}}.

\end{framed}
In this way it doesn't work, should I implement some package?

Thankyou

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

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

How could I put a footnote in a framed environment?

Post by Johannes_B »

Use mdframed:

Code: Select all

\documentclass{article}
\usepackage{mdframed}
\begin{document}
\begin{mdframed}
	\paragraph{title}

	bla bla bla%
	\footnote{\textit{Understanding N(d1)and N(d2): Risk-Adjusted
		Probabilities in the Black-Scholes Model, Lars Tyge Nielsen,
	1992}}.

\end{mdframed}
\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
clodilsognatore
Posts: 2
Joined: Sat Aug 02, 2014 1:03 pm

Re: How could I put a footnote in a framed environment?

Post by clodilsognatore »

so useful! thankyou so much!! ;)
Post Reply