Presently, I am using per-page footnotes for my citations using:
\documentclass[a4paper,12pt]{article}
\usepackage[style=verbose-trad3,autocite=footnote]{biblatex}
\bibliography{refs}
\begin{document}
This is some text \autocite{johnson}.
\end{document}
And refs.bib:
@article{johnson,
author = {Johnson, Rebecca},
journal = {Nature},
title = {{An effective method for something-or-other.}},
year = {2011}
}
Here's what I have now:
This was later shown to be an effective method¹. Following this effort, later models have more accurately described the data but have thus far not generated testable hypotheses.
Then in the footnotes for that page:
¹Johnson, Rebecca. "An effective method for something-or-other." Nature (2011).
Here's what I want
This was later shown to be an effective method [Johnson 2011]. Following this effort, later models have more accurately described the data but have thus far not generated testable hypotheses.
Then in the footnotes for that page:
Johnson, Rebecca. "An effective method for something-or-other." Nature (2011).
In other words, I can either get only either:
- The footnote style I show above, with footnotes but with superscript numbers for the inline citation
- An author-year inline citation, but with a bibliography section at the end instead of per-page footnotes.
However, I want [last-name year] to appear as a per-page footnote (without superscript numbering).
