
これまであまり経験がなかったので、テキスト内の引用には数値スタイルを使用することにしました。ただし、参考文献には authoryear スタイルの方がはるかに優れています。実際、 citestyle とbibstylebiblatex
を組み合わせることはできないのはわかっています。numeric
authoryear
そこで、次の疑問が生じます。参考文献で数値の引用スタイルと著者年の書式設定を使用するにはどうすればよいでしょうか。
答え1
ここからルートを下ることができますbiblatex-biber: 参考文献の順序をカスタマイズするにはどうすればいいですか?。
(または現在使用している家族citestyle=numeric
のメンバー)を呼び出して し、インポートして適切な環境を再度取得します。numeric
bibstyle=authoryear
numeric.bbx
bibliography
(デフォルトではソートは になりますがsorting=nyt
、必要に応じてsorting=none
明示的に順序を指定する必要があります。)
\documentclass{article}
\usepackage[
backend=biber,
%sorting=none,
citestyle=numeric,
bibstyle=authoryear,
]{biblatex}
\makeatletter
\input{numeric.bbx}
\makeatother
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{wilde,geer,worman}
\printbibliography
\end{document}
答え2
これらを組み合わせることができます:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[citestyle=numeric,bibstyle=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\AtEveryBibitem{[\printfield{labelnumber}]\addspace}%Numbers in the bib
\begin{document}
\cite{herrmann}, \cite{doody},
\printbibliography
\end{document}