Biblatex Incollection 条目无作者

Biblatex Incollection 条目无作者

使用 biblatex authortitle 我从一本没有作者的字典中找到了条目。在引用中,首先使用标题来表示完整引用(这是我的风格指南所要求的),然后使用编辑的名字来表示缩写引用(这是不正确的):

第一次引用:“情商”。出自:《心理学百科词典》。Graham Davey 编。牛津:劳特利奇出版社,2005 年,第 306-307 页。

后续引用:戴维,“情商”。

在参考书目中,它与第一个引用一样出现,但按编辑者姓名排序。因此:

“情商”。《心理学百科词典》。Graham Davey 编。牛津:劳特利奇出版社,2005 年,第 306-307 页。

Davis, K. 等。“多元智能理论”。《剑桥智力手册》。RJ Sternberg 和 SB Kaufman 编。纽约:剑桥大学出版社,2011 年,第 485-503 页。

所需样式根据条目标题列出的第一个(完整)引文。例如,参见http://utas.libguides.com/content.php?pid=27520&sid=202467

我可以在 bibtex 条目中指定排序,以便文章出现在 E 条目中,但缩写的引用将毫无帮助(读者会在 D 中寻找它)。

如果指定按“e”排序,解决方案是每次手动对该标题使用 \fullcite。这会导致操作员出现错误的可能性很大。有没有办法让此条目每次出现时都需要完整的引用?

我能想到的唯一其他解决方案是重新设计馆藏条目,以便编辑位于第一位,如果没有作者,那么第一个列表和参考书目将适合缩写条目。(这不是真正需要的风格,但比仅列出百科全书而不是文章更接近它。)

还有其他符合所需风格的解决方案吗?

短暂性脑缺血发作

平均能量损失

\documentclass[a4paper]{article}

\usepackage[english]{babel}
\usepackage[style=authortitle,natbib=true,citestyle=verbose,backend=biber]{biblatex}
\addbibresource{\jobname.bib}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Incollection{Davis2011TToMI,
  Title                    = {The Theory of Multiple Intelligences},
  Address                  = {New York},
  Author                   = {K. Davis and Christodoulou, J. A. and S. Seider and Gardner, H.},
  Booktitle                = {Cambridge Handbook of Intelligence},
  Pages                    = {485--503},
  Publisher                = {Cambridge University Press},
  Year                     = {2011},
  Editor                   = {R. J. Sternberg and S. B. Kaufman},
}

@Incollection{Davey2005EI,
  Title                    = {Emotional Intelligence},
  Address                  = {Oxford},
  Booktitle                = {Encyclopaedic Dictionary of Psychology},
  Pages                    = {306--307},
  Publisher                = {Routledge},
  Year                     = {2005},
  Editor                   = {Davey, Graham},
}

\end{filecontents}

\begin{document}

First cite\autocite{Davey2005EI}

Other cite\autocite{Davis2011TToMI}

Second cite\autocite{Davey2005EI}

\printbibliography

\end{document}

答案1

biblatex参考文献的正确格式是reference,参考文献中的条目是inreference。但最好参考书目格式的标准,例如芝加哥格式手册,因为这是一个惯例问题,而不是逻辑问题。

芝加哥建议在正文或脚注中引用词典条目,但仅限于字典,sv“entry”,我认为当该条目没有作者时(并且文章像本文一样短),这是最佳做法。

在 中biblatex,这将是\autocite[s.v. ``Emotional Intelligence'']{Davey2005}Davey2005将是@reference整个参考文献的条目,而不仅仅是所引用的文章。

(如果您使用芝加哥风格或没有风格指南,请考虑使用,biblatex-chicago因为它会产生与人文写作用法更一致的结果)。

\documentclass[a4paper]{article}

\usepackage[english]{babel}
\usepackage{csquotes} % should be used with biblatex + babel
\usepackage[style=authortitle,natbib=true,citestyle=verbose,backend=biber]{biblatex}
\addbibresource{\jobname.bib}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Incollection{Davis2011TToMI,
  Title                    = {The Theory of Multiple Intelligences},
  Address                  = {New York},
  Author                   = {K. Davis and Christodoulou, J. A. and S. Seider and Gardner, H.},
  Booktitle                = {Cambridge Handbook of Intelligence},
  Pages                    = {485--503},
  Publisher                = {Cambridge University Press},
  Year                     = {2011},
  Editor                   = {R. J. Sternberg and S. B. Kaufman},
}

@Reference{Davey:Psych,
  Title                = {Encyclopaedic Dictionary of Psychology},
  Editor                   = {Davey, Graham},
  Address                  = {Oxford},
  Publisher                = {Routledge},
  Year                     = {2005}
}

\end{filecontents}

\begin{document}

First cite\autocite[s.v.~\mkbibquote{EmotionalIntelligence}]{Davey:Psych}

Other cite\autocite{Davis2011TToMI}

Second cite\autocite[s.v.~\mkbibquote{EmotionalIntelligence}]{Davey:Psych}

\printbibliography

\end{document}

在此处输入图片描述

答案2

添加useditor = falseoptions特定条目字段强制biblatex按标题排序和列出(另请参阅第 61 页biblatex文档)。

@incollection{Davey2005EI,
  Title                    = {Emotional Intelligence},
  Address                  = {Oxford},
  Booktitle                = {Encyclopaedic Dictionary of Psychology},
  Pages                    = {306--307},
  Publisher                = {Routledge},
  Year                     = {2005},
  Editor                   = {Davey, Graham},
  options                  = {useeditor=false},
}

更正脚注 正确的参考书目

相关内容