7

I want the citation in the footnote of the page it is being cited. How can I do it?

lockstep
  • 250,273

1 Answers1

7

You may want to have a look at the biblatex package as follows:

\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{csquotes}
\usepackage[style=verbose]{biblatex}      
\bibliography{mem}            
\defbibheading{bibempty}{}     
\begin{document}
my text my text \autocite{ref}
\printbibliography[heading=bibempty] % if you want a bibiography at the end as well
\end{document}

Have a look at the guide for other options/behaviors.

pluton
  • 16,421