![Natbib: 本文中に著者年が記載されているが、参考文献に番号が付けられている](https://rvso.com/image/305886/Natbib%3A%20%E6%9C%AC%E6%96%87%E4%B8%AD%E3%81%AB%E8%91%97%E8%80%85%E5%B9%B4%E3%81%8C%E8%A8%98%E8%BC%89%E3%81%95%E3%82%8C%E3%81%A6%E3%81%84%E3%82%8B%E3%81%8C%E3%80%81%E5%8F%82%E8%80%83%E6%96%87%E7%8C%AE%E3%81%AB%E7%95%AA%E5%8F%B7%E3%81%8C%E4%BB%98%E3%81%91%E3%82%89%E3%82%8C%E3%81%A6%E3%81%84%E3%82%8B.png)
本文中では標準的なnatbib著者年引用を維持したいのですが、例えば(Allan et al. 2009)ですが、参考文献リストにも番号を付けたいです。例えば
- Allan, BF, Langerhans および RB, Ryberg (2009)。米国におけるウエストナイルウイルスのリスクと発生率の生態学的相関。Oncologia、158、699-708。
これは可能ですか?最適ではないかもしれないことは分かっていますしかし、それは私の選択ではありません。
答え1
単純に実用的な例を構築するとバーナードのコメント上記 (@Bernard、私の回答を自由に引用して再投稿してください)。
\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}