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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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