Page Layout ⇒ Latex Beamer, footnote, footmisc, hang option
Latex Beamer, footnote, footmisc, hang option
I have an issue with Latex BEAMER when it comes to footnotes. I want to use footnotes in a certain format which is easy to achieve using the "footmisc" package and the "hang" option in Latex. However, in Latex BEAMER this does not really work.
What I GET in Beamer is:
1 Text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text.
2 Text text text text text text text text text text text text text text text
text text text text text text.
But what I WANT to HAVE is:
1 Text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text.
2 Text text text text text text text text text text text text text text text
text text text text text text.
Below, please find my beamer example code. Does someone have any idea?
Thanks
Marcus
\documentclass{beamer}
\begin{document}
\section{The First Thing I Want to Talk About}
\subsection{Important Issues}
\begin{frame}[t]{The First Thing I Want to Talk About}
Bla\footnote{Text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text.} bla bla\footnote{Text text text text text text text text text text text text text text text text text text text text text.}.
\end{frame}
\end{document}
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
Latex Beamer, footnote, footmisc, hang option
Code: Select all
\documentclass{beamer}
\usepackage{hanging}
\setbeamertemplate{footnote}{\hangpara{2em}{1}\makebox[2em][l]{\insertfootnotemark}\footnotesize\insertfootnotetext\par}
\begin{document}
\section{The First Thing I Want to Talk About}
\subsection{Important Issues}
\begin{frame}[t]{The First Thing I Want to Talk About}
Bla\footnote{Text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text.} bla bla\footnote{Text text text text text text text text text text text text text text text text text text text text text.}.
\end{frame}
\end{document}
Re: Latex Beamer, footnote, footmisc, hang option
Thanks alot,
Marcus