新手书目问题:当使用 时BibLaTeX-chicaco
,每当我想显示 InCollection 重印的文章的出版历史(使用crossref
和related
)时,作者的名字不会在 InCollection 中重复,这使得作者看起来像是该 Collection 的编辑。
以下是带有输出的 MWE:
\documentclass{article}
\usepackage[authordate,backend=biber,uniquename=false]{biblatex-chicago}
\addbibresource{jobname.bib}
\begin{filecontents}{jobname.bib}
@InBook{BarAsher2014a,
author = {Bar-Asher, Moshe},
title = {The Different Traditions of Mishnaic Hebrew},
pages = {293-327},
crossref = {BarAsher2014},
related = {BarAsher1987},
relatedtype = {reprintof},
}
@InCollection{BarAsher1987,
author = {Bar-Asher, Moshe},
title = {The Different Traditions of Mishnaic Hebrew},
pages = {1--38},
crossref = {Golomb1987},
}
@Book{BarAsher2014,
author = {Bar-Asher, Moshe},
date = {2014},
title = {Studies in Classical Hebrew},
editor = {Koller, Aaron},
location = {Berlin},
publisher = {De Gruyter},
}
@InCollection{Golomb1987,
publisher = {Eisenbrauns},
title = {``Working With No Data": Semitic and Egyptian Studies Presented to Thomas O. Lambdin},
editor = {Golomb, David M.},
date = {1987},
location = {Winona Lake},
}
\end{filecontents}
\begin{document}
Here's a sample citation of \cite{BarAsher2014a}.
\printbibliography
\end{document}
这就是结果。看起来 David Golomb 编辑了这篇文章;要么应该反转字段的顺序(Collection 的editor
在 InCollection 的后面title
),要么应该用某种“idem.”标签代替 InCollection 的author
。
有办法改变这种情况吗?我知道这个包没有也适合个人定制。虽然我并不完全迷恋BibLaTeX-chicago
,但到目前为止它还是很方便的。
提前致谢!
答案1
biblatex-chicago
有更多/不同的相关类型可用(您可能需要查看手册)。也许origpubas
比以下更接近你想要的reprintof
:
\documentclass{article}
\usepackage[authordate,backend=biber,uniquename=false]{biblatex-chicago}
\addbibresource{\jobname.bib}
\begin{filecontents}{\jobname.bib}
@InBook{BarAsher2014a,
author = {Bar-Asher, Moshe},
title = {The Different Traditions of Mishnaic Hebrew},
pages = {293-327},
crossref = {BarAsher2014},
related = {BarAsher1987},
relatedtype = {origpubas},
}
@InCollection{BarAsher1987,
author = {Bar-Asher, Moshe},
title = {The Different Traditions of Mishnaic Hebrew},
pages = {1--38},
crossref = {Golomb1987},
}
@Book{BarAsher2014,
author = {Bar-Asher, Moshe},
date = {2014},
title = {Studies in Classical Hebrew},
editor = {Koller, Aaron},
location = {Berlin},
publisher = {De Gruyter},
}
@Collection{Golomb1987,
publisher = {Eisenbrauns},
title = {``Working With No Data": Semitic and Egyptian Studies Presented to Thomas O. Lambdin},
editor = {Golomb, David M.},
date = {1987},
location = {Winona Lake},
}
\end{filecontents}
\begin{document}
Here's a sample citation of \cite{BarAsher2014a}.
\printbibliography
\end{document}