Natbib: Autor-ano no texto, mas bibliografia numerada

Natbib: Autor-ano no texto, mas bibliografia numerada

Eu gostaria de manter as citações padrão do ano do autor do natbib em meu texto principal, por exemplo (Allan et al. 2009), mas também ter numeração em minha lista de bibliografia/referência, por exemplo

  1. Allan, BF, Langerhans e RB, Ryberg (2009). Correlatos ecológicos de risco e incidência do vírus do Nilo Ocidental nos Estados Unidos. Oncologia, 158, 699–708.

Isso é possível?Eu sei que pode não ser o idealmas essa não é minha escolha.

Responder1

Simplesmente construindo um exemplo prático a partir deBernardodeComenteacima (@Bernard, fique à vontade para pegar minha resposta e publicá-la novamente).

Tudo graças a

\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}

informação relacionada