Entrada de colección con años separados para libro y capítulo

Entrada de colección con años separados para libro y capítulo

Quiero citar un capítulo de un libro, por eso creo que debería utilizar incollection. Sin embargo, necesitaría especificar dos años:

  • uno para el año en que se publicó el libro
  • uno para el año en que se escribió el capítulo

La entrada debería verse algo así:

Esping-Andersen, Gøsta (1990). "Tres mundos del capitalismo del bienestar". En:El lector del estado de bienestar. Hrsg. por Christopher Pierson, Francis G. Castles e Ingela K. Naumann. 2. Aufl. Cambridge: Polity Press 2006, págs. 160-174.

¿Hay alguna manera de hacer esto con BibLaTex?

MWE:

\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}

Respuesta1

Aquí hay una solución:

\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} 

ingrese la descripción de la imagen aquí

Respuesta2

Si es posible, con algunas excepciones, debe utilizar la publicación original como fuente y citarla en consecuencia. Si, por alguna razón, eso no es posible, usaría las instalaciones biblatexde related. En este caso, sus citas mostrarán que está utilizando la versión de 2006, lo cual es cierto, pero su bibliografía también mostrará que se trata de una reimpresión y de qué es una reimpresión.

Por ejemplo:

entradas relacionadas

[Tenga en cuenta que supongo que el alemán dice algo apropiado, aunque no puedo decirlo.]

\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}

información relacionada