Generalfootnote in epigraph (memoir class)

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
alexv
Posts: 4
Joined: Wed Apr 27, 2011 4:33 am

footnote in epigraph (memoir class)

Post by alexv »

I need to have a footnote in \epigraph like this

Code: Select all

\documentclass[oneside,final,12pt]{memoir}

\usepackage[T1]{fontenc}

\begin{document}

\chapter*{Fist Chapter}
\epigraph{This is epigraph}{Somebody famous\footnote{locally}}

Test Test Test
\end{document}
Unfortunately it places the footnote's text inside epigraph environment instead of the bottom of the page - like all other footnotes - which looks unusual. Is it possible to fix the footnote's placement?

Thanks
Last edited by alexv on Wed Apr 27, 2011 5:55 pm, edited 1 time in total.

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

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

footnote in epigraph (memoir class)

Post by localghost »

Probably the epigraph is a minipage. You can try \footnotemark and \footnotetext. But I think the chances for success are low.


Best regards and welcome to the board
Thorsten
alexv
Posts: 4
Joined: Wed Apr 27, 2011 4:33 am

footnote in epigraph (memoir class)

Post by alexv »

localghost wrote:Probably the epigraph is a minipage. You can try \footnotemark and \footnotetext.
Thanks for the advice. I finally found the solution. The \footnotemark/\footnotetext was indeed my first approach but then I found footnote package (part of mdwtools). The package provides the savenotes environment which takes care of collecting the footnotes in (in my case) epigraph and placing them together with regular footnotes at the bottom of the page.


Alex
itemState
Posts: 2
Joined: Mon May 16, 2011 3:31 pm

footnote in epigraph (memoir class)

Post by itemState »

hi,

can you please paste your result with the `footnote` package and `epigraph`.

my try is this

Code: Select all

\begin{savenotes}
\epigraph{«But...»\footnote{Test}}
\end{savenotes}
but this doesn't compile :cry:

if i do this in an isolated document, it works, but not in my paper. The error goes like "Extra }, or forgotten \endgroup. <argument> ...@finalstrut \strutbox }\fn@endnote }" -- no matter where in my text i try to place it.

the packages i use apart from `footnote` are `[utf8]{inputenc}`, `aeguill`, `times`, `ifpdf`, `caption`, `subfigure`, `[english]{babel}`, `epigraph`, `fancyvrb` and a custom conference .sty which is based on IEEE or AMS (don't know -- but doesn't look exotic). Document class is `article`.


thx
itemState
Posts: 2
Joined: Mon May 16, 2011 3:31 pm

Re: footnote in epigraph (memoir class)

Post by itemState »

I use `\footnotemark` and `\footnotetext` now which do work as intended.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10334
Joined: Mon Mar 10, 2008 9:44 pm

footnote in epigraph (memoir class)

Post by Stefan Kottwitz »

Hi itemState,

welcome to the board!

It's great that you posted your solution. Btw. I could not test your code lines because the savenotes environment is unknown in article and epigraph, perhaps it comes from your custom .sty file.

Stefan
LaTeX.org admin
Post Reply