Biblatex 引用文献 + 参考文献

Biblatex 引用文献 + 参考文献

2つのファイルがあります。

  1. よだれかけ
  2. 参考文献

私は \cite{} コマンドを使用して ref.bib から記事を引用しており、これらの引用 (および \cite{} コマンドから呼び出されたこれらの引用のみ) を「引用文献」または「参考文献」セクションに印刷したいと考えています。

bib.bib には、テキストの執筆中にさまざまな時点で参照した作品が含まれており、このファイルの内容全体を「参考文献」セクションに印刷したいと考えています。

私はbiblatexを使用しています

お知らせ下さい

答え1

から何かを引用する予定がない場合は、でbib.bibラベル付けされた を定義するだけで十分です。refsection\nocite{*}

refsectionは互いに完全に分離されており、ラベルの付いた はラベルからファイルrefsectionのみを取得するため、は のエントリにのみ適用されます。.bib\nocite{*}bib.bib

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[style=authoryear, backend=biber]{biblatex}

\begin{filecontents}{ref.bib}
@article{sigfridsson,
  author       = {Sigfridsson, Emma and Ryde, Ulf},
  title        = {Comparison of methods for deriving atomic charges from the
                  electrostatic potential and moments},
  journaltitle = {Journal of Computational Chemistry},
  date         = 1998,
  volume       = 19,
  number       = 4,
  pages        = {377-395},
  doi          = {10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P},
}
@article{herrmann,
  author       = {Herrmann, Wolfgang A. and {\"O}fele, Karl and Schneider,
                  Sabine K.  and Herdtweck, Eberhardt and Hoffmann, Stephan D.},
  title        = {A carbocyclic carbene as an efficient catalyst ligand for {C--C}
                  coupling reactions},
  journaltitle = {Angew.~Chem. Int.~Ed.},
  date         = 2006,
  volume       = 45,
  number       = 23,
  pages        = {3859-3862},
}
\end{filecontents}
\begin{filecontents}{bib.bib}
@book{worman,
  author       = {Worman, Nancy},
  title        = {The Cast of Character},
  date         = 2002,
  publisher    = {University of Texas Press},
  location     = {Austin},
}
@book{nussbaum,
  author       = {Nussbaum, Martha},
  title        = {Aristotle's \mkbibquote{De Motu Animalium}},
  date         = 1978,
  publisher    = {Princeton University Press},
  location     = {Princeton},
  keywords     = {secondary},
}
\end{filecontents}
\addbibresource{bib.bib}
\addbibresource{ref.bib}


\begin{document}
Lorem \cite{sigfridsson}
\printbibliography

\begin{refsection}[bib.bib]
\nocite{*}
\printbibliography[title=Bibliography]
\end{refsection}
\end{document}

1 つのエントリ (sigfridsson) を含む参考文献と 2 つのエントリ (nussbaum、worman) を含む参考文献。

関連情報