0

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?enter image description here

Pic related red underline is how I want it to work.

Xyd
  • 407

1 Answers1

0

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.

thymaro
  • 1,507
  • 1
    It should be 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
  • Right. The authoryear was just an example, albeit a bad one, since it doesn't change anything in this case. I will do the necessary corrections. Thx for the input. – thymaro Jan 28 '18 at 17:01