46페이지http://pdg.lbl.gov/2012/reviews/rpp2012-rev-standard-model.pdf참조당 항목이 두 개 이상인 참조 스타일의 예를 보여줍니다. 이것을 biblatex로 어떻게 모방할 수 있습니까?
편집: defbibentryset이 작업을 수행하지만 \nocite{*}와 호환되지 않는 것 같습니다.
답변1
biblatex-examples.bib
바로 이 예는 biblatex 문서에서 찾을 수 있습니다 :
@set{stdmodel,
entryset = {glashow,weinberg,salam},
annotation = {A \texttt{set} with three members discussing the standard
model of particle physics},
}
여기서 하위 항목 glashow
, weinberg
및 는 salam
나중에 다음과 같이 정의됩니다.
@article{glashow,
author = {Glashow, Sheldon},
title = {Partial Symmetries of Weak Interactions},
journaltitle = {Nucl.~Phys.},
date = 1961,
volume = 22,
pages = {579-588},
}
@article{weinberg,
author = {Weinberg, Steven},
title = {A Model of Leptons},
journaltitle = {Phys.~Rev.~Lett.},
date = 1967,
volume = 19,
pages = {1264-1266},
}
@inproceedings{salam,
author = {Salam, Abdus},
editor = {Svartholm, Nils},
title = {Weak and Electromagnetic Interactions},
date = 1968,
booktitle = {Elementary particle theory},
booksubtitle = {Relativistic groups and analyticity},
booktitleaddon= {Proceedings of the Eighth Nobel Symposium},
eventdate = {1968-05-19/1968-05-25},
venue = {Aspen{\"a}sgarden, Lerum},
publisher = {Almquist \& Wiksell},
location = {Stockholm},
pages = {367-377},
}
항목 유형은 @set
항목 세트라고 하는 참조 그룹을 정의합니다. 항목 세트에는 백엔드로 Biber가 필요합니다. 항목은 stdmodel
다른 항목과 마찬가지로 인용될 수 있습니다. 하위 항목을 직접 인용할 수도 있지만 명확성을 위해 subentry
라벨 번호를 활성화할 수도 있습니다. 동적 항목 세트는 다음을 사용하여 문서 서문 또는 본문에 정의할 수 있습니다.
\defbibentryset{stdmodel:dynamic}{glashow,weinberg,salam}
이는 항목 세트를 정의 stdmodel:dynamic
하고 호출 해야 합니다 \nocite{stdmodel:dynamic}
. biblatex 1.7 이후에 biblatex/biber가 암시적 \nocite
. 이는 biblatex 2.6 및 biber 1.6의 다른 항목 설정 버그와 함께 수정되어야 합니다.
\documentclass{article}
\usepackage[backend=biber,style=numeric,subentry,firstinits]{biblatex}
\renewcommand{\entrysetpunct}{\par\nobreak}
\addbibresource{biblatex-examples.bib}
\defbibentryset{latex}{companion,knuth:ct,ctan}
\begin{document}
Filler text \parencite{stdmodel,latex}. \Textcite{weinberg} showed that...
\printbibliography
\end{document}
항목 세트는 숫자 스타일에만 적합합니다. 다른 스타일의 경우 biblatex 및 biber는 보다 유연한 관련 항목 기능을 제공합니다. 관련 항목의 예는 에서도 찾을 수 있습니다 biblatex-examples.bib
. 이 기능에 대한 자세한 내용은 biblatex 매뉴얼과 일반 스타일 파일에서 확인할 수 있습니다 biblatex.def
.