
파일이 2개 있는데,
- 턱받이.bib
- 심판 턱받이
\cite{} 명령을 사용하여 ref.bib의 기사를 인용하고 이러한 인용(및 \cite{} 명령에서 호출된 인용만) "인용된 작품" 또는 "참조" 섹션에 인쇄하고 싶습니다. .
bib.bib에는 제가 텍스트를 작성할 때 다양한 지점에서 참고한 작품이 있으며 이 파일의 전체 내용을 "참고문헌" 섹션에 인쇄하고 싶습니다.
저는 비블라텍스를 사용하고 있어요
조언해주세요
답변1
의 내용을 인용할 계획이 없다면 라벨을 로 bib.bib
정의하는 것으로 충분합니다 .refsection
\nocite{*}
refsection
s는 서로 완전히 분리되어 유지되고 s 라벨이 지정된 파일 은 해당 라벨의 파일 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}