[Tex/LaTex] Normal footnote in epigraph command

epigraphsfootnotes

I would like to create a "normal" footnote inside epigraph command.

This command cites the reference in a footnote just below the epigraph and not at the end of the page :

\epigraph{text}{source\footcite{key}}

For example :

\epigraph{Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit, vestibulum ut}{Author\footcite{author00:_title}}

creates :
enter image description here
How can I create a normal footnote?

MWE :

\begin{filecontents}{bib.bib}
@Book{author00:_title,
  author =   {Author},
  title =    {Title},
  publisher =    {Publisher},
  year =     2000}
\end{filecontents}

\documentclass[12pt,twoside,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english,french]{babel}
\frenchbsetup{StandardLists=true}

\usepackage{setspace}
\usepackage{graphicx} 
\usepackage{lmodern}
\usepackage{xspace}
\usepackage{epigraph}
\usepackage{lipsum}
\usepackage{filecontents}

\usepackage[autostyle=true]{csquotes}
\usepackage[style=authoryear-comp,
     hyperref,
     backend=biber,
     isbn=false,
     doi=false,
     url=false,
     date=year]{biblatex}
\AtEveryBibitem{\clearlist{language}}
\renewcommand*{\newunitpunct}{\addcomma\space}
\bibliography{bib}
\usepackage[colorlinks]{hyperref}

\begin{document}

\epigraph{Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit, vestibulum ut}{Author\footcite{author00:_title}}
test
\end{document}

Best Answer

Just use \footcitetext:

\epigraph{Lorem ipsum dolor sit amet, consectetuer adipiscing elit. 
  Ut purus elit, vestibulum ut}{Author\footnotemark}
\footcitetext{author00:_title}
Related Question