I heard that it's possible to do this with natbib but I am using biblatex with biber backend but I already have my bib file ready. Is there any way to do this with biblatex?
Pic related red underline is how I want it to work.
I heard that it's possible to do this with natbib but I am using biblatex with biber backend but I already have my bib file ready. Is there any way to do this with biblatex?
Pic related red underline is how I want it to work.
You could achieve something similar with a verbose biblatex style. In your preamble, add
\usepackage[style=verbose]{biblatex}
or, if you want your bibliography to stay the way it looks now (however that is), use
\usepackage[%
citestyle=verbose,
bibstyle=examplestyle
]{biblatex}
where examplestyle is replaced by the style of your choice.
Thanks to moewe for the corrections in the comments.
citestyle=verbose without the dash. citestyle=verbose, style=authoryear would just be style=authoryear since style sets both citestyle and bibstyle. Since verbose uses an authoryear layout of the bibliography, (bib)style=authoryear makes little sense combined with verbose.
– moewe
Jan 28 '18 at 16:49
\fullcite? If this does not help, please make a minimal working example with bibliography (MWEB) – samcarter_is_at_topanswers.xyz Jan 27 '18 at 15:45\fullcitereally what you want? – moewe Feb 05 '18 at 11:02