Natbib: Autor-Jahr im Text, aber nummerierte Bibliographie

Natbib: Autor-Jahr im Text, aber nummerierte Bibliographie

Ich möchte die standardmäßigen NatBib-Autor-Jahr-Zitate in meinem Haupttext beibehalten, z. B. (Allan et al. 2009), aber auch eine Nummerierung in meiner Bibliografie/Referenzliste haben, z. B.

  1. Allan, BF, Langerhans und RB, Ryberg (2009). Ökologische Korrelate des Risikos und der Häufigkeit des West-Nil-Virus in den Vereinigten Staaten. Oncologia, 158, 699–708.

Ist das möglich?Ich weiß, dass es vielleicht nicht optimal istaber das ist nicht meine Entscheidung.

Antwort1

Einfach ein funktionierendes Beispiel konstruieren ausBernhard'SKommentaroben (@Bernard, nehmen Sie meine Antwort gerne und posten Sie sie erneut).

Alles dank

\begin{filecontents}{\jobname.bib}
@book{veblen1919place,
  title={The Place of Science in Modern Civilisation: and other essays},
  author={Veblen, Thorstein},
  year={1919},
  publisher={BW Huebsch}
}
@book{veblen2007theory,
  title={The theory of the leisure class},
  author={Veblen, Thorstein},
  year={2007},
  publisher={Oxford University Press},
 url = {http://www.test.org}
}
@book{knuth1989texbook,
  title={The TEXbook},
  author={Knuth, D.E.},
  series={Computers \& and typesetting},
  url={https://books.google.com/books?id=kURPnQEACAAJ},
  year={1989},
  publisher={Addison Wesley}
}
\end{filecontents}

\documentclass{article}
\usepackage[citestyle=authoryear,bibstyle=numeric, natbib=true, backend=bibtex]{biblatex}
\addbibresource{\jobname.bib}

\begin{document}

\noindent 
As \citeauthor*{veblen2007theory} has argued \citep[12--19]{veblen1919place} it is clear that $y$. Second,  \citet[12]{veblen1919place} also show $m$ and $x$ \citet[37]{veblen1919place}. All thanks to \citeauthor*{ knuth1989texbook}.

\printbibliography
\end{document}

verwandte Informationen