書籍和章節的收藏條目具有單獨的年份

書籍和章節的收藏條目具有單獨的年份

我想引用一本書中的一章,因此我認為我應該使用incollection.但是我需要指定兩年:

  • 本書出版年份的一個
  • 一個代表該章的撰寫年份

該條目應該看起來像這樣:

埃斯平-安德森,戈斯塔 (1990)。 「福利資本主義的三個世界」。在:福利國家讀本。赫斯格。馮·克里斯多福·皮爾森、法蘭西斯·G·卡斯爾斯和英吉拉·K·瑙曼。 2. 好吧。劍橋:政治出版社 2006 年,S. 160–174。

有沒有辦法用 BibLaTex 做到這一點?

微量元素:

\begin{filecontents*}{test.bib} 
@incollection{esping-andersen_three_2006,
    location = {Cambridge},
    edition = {2},
    title = {Three Worlds of Welfare Capitalism},
    pages = {160--174},
    booktitle = {The Welfare State Reader},
    publisher = {Polity Press},
    author = {Esping-Andersen, Gøsta},
    editor = {Pierson, Christopher and Castles, Francis G. and Naumann, Ingela K.},
    year = {2006}
}
\end{filecontents*}

\documentclass[a4paper, german, oneside]{scrartcl}
\usepackage[ngerman]{babel} 
\usepackage[utf8]{inputenc} 
\usepackage[T1]{fontenc} 
\usepackage[babel,german=quotes]{csquotes}

\usepackage[style=authoryear, backend=biber, firstinits=false]{biblatex} 
\addbibresource{test.bib}


\begin{document}

\nocite{*}

\printbibliography
\end{document}

答案1

這是一個解決方案:

\begin{filecontents*}{origdate.bib}
@incollection{esping-andersen_three_2006,
location = {Cambridge},
edition = {2},
title = {Three Worlds of Welfare Capitalism},
pages = {160--174},
booktitle = {The Welfare State Reader},
publisher = {Polity Press},
author = {Esping-Andersen, Gøsta},
editor = {Pierson, Christopher and Castles, Francis G. and Naumann, Ingela K.},
year = {2006},
origdate = {1990}
}
%
@inbook{esping-andersen_2008,
location = {Oxford},
title = {Three Worlds of Welfare Capitalism},
pages = {160--174},
booktitle = {The Welfare State Reader},
publisher = {Polity Press},
author = {Esping-Andersen, Gøsta},
editor = {Pierson, Christopher and Castles, Francis G. and Naumann, Ingela K.},
year = {2008}
}
\end{filecontents*}

\documentclass[a4paper, german, oneside]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[babel,german=quotes]{csquotes}

\usepackage[style=authoryear, backend=biber, firstinits=false, labeldate]{biblatex}
\addbibresource{origdate.bib}

\DeclareLabeldate{%
\field{origdate}
\field{date}
\field{eventdate}
\field{urldate}
\literal{nodate}
}

\renewbibmacro*{publisher+location+date}{%
\printlist{location}%
\iflistundef{publisher}
{\setunit*{\addcomma\space}}
{\setunit*{\addcolon\space}}%
\printlist{publisher}%
\setunit*{\addspace}%
\iffieldsequal{labelyear}{year}{%
\usebibmacro{date}}{\printdate}
\newunit}

\begin{document}

\nocite{*}

\printbibliography

\end{document} 

在此輸入影像描述

答案2

如果可能的話,除了一些例外,您應該使用原始出版物作為來源並進行相應的引用。如果由於某種原因這是不可能的,我會使用biblatexrelated設施。在這種情況下,你的引文將顯示你使用的是 2006 年版本,這是事實,但你的參考書目也會顯示這是重印以及它是重印的內容。

例如:

相關條目

[請注意,我假設德國人說了一些適當的話,儘管我無法判斷。 ]

\begin{filecontents*}{\jobname.bib}
@incollection{esping-andersen_three_2006,
    location = {Cambridge},
    edition = {2},
    title = {Three Worlds of Welfare Capitalism},
    pages = {160--174},
    booktitle = {The Welfare State Reader},
    publisher = {Polity Press},
    author = {Esping-Andersen, Gøsta},
    editor = {Pierson, Christopher and Castles, Francis G. and Naumann, Ingela K.},
    year = {2006},
    related = {esping-andersen_three_1990},
    relatedtype = {reprintof}
}
@article{esping-andersen_three_1990,
    title = {Three Worlds of Welfare Capitalism},
    pages = {213--265},
    journal = {Some Journal},
    author = {Esping-Andersen, Gøsta},
    year = 1990,
    volume = 63,
    number = 2
}
\end{filecontents*}

\documentclass[a4paper, german, oneside]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[babel,german=quotes]{csquotes}

\usepackage[style=authoryear, backend=biber, firstinits=false]{biblatex}
\addbibresource{\jobname.bib}


\begin{document}

\nocite{*}

\printbibliography
\end{document}

相關內容