I want the citation in the footnote of the page it is being cited. How can I do it?
Asked
Active
Viewed 3,230 times
7
-
Maybe the footbib package will be useful. – Ulrich Schwarz Nov 18 '10 at 20:21
1 Answers
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