我最近开始使用 biblatex,并创建了一个以 bibtex 为核心的详尽书目文件。我整理了我的参考书目,发现InBook
书名不见了。如下图所示,在:在应该显示书名的位置打印出来。
这是我用来创建它的 MWE。
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{pifont}
\usepackage[backend=biber,bibstyle=authoryear,citestyle=authoryear-comp,sorting=nyt,mincitenames=1,maxcitenames=2,url=false]{biblatex}
\addbibresource{test.bib}
\author{Minime}
\begin{document}
\parencite{Verwijst2013}
\printbibliography
\end{document}
这是 bib 文件中条目的格式:
@InBook{Verwijst2013,
Title = {Development of Sustainable Willow Short Rotation Forestry in Northern Europe},
Author = {Theo Verwijst and Anneli Lundkvist and Stina Edelfeldt and Johannes Albertsson},
Chapter = {19},
Editor = {Dr. Miodrag Darko Matovic},
Pages = {479--502},
Publisher = {INTECH open},
Year = {2013},
Note = {Published: April 30, 2013 under CC BY 3.0 license.},
book = {Biomass Now - Sustainable Growth and Use},
Doi = {10.5772/55072 },
File = {Verwijst2013.pdf:Blandat material/Verwijst2013.pdf:PDF}
}
biblatex 对 InBook 是否有一些特殊处理或我遗漏的格式?
答案1
字段名称不是booktitle
。book
查看 biblatex 文档以了解可用的字段名称。它包含一个很长且有用的列表。