我正在使用 Biblatex 并尝试模仿哈佛引用。因此,我authoryear
在设置包时将样式设置为括号中。我将其设置为该样式是因为这就是您引用有作者的来源的方式。但是,当我尝试引用没有作者而只有编辑/出版商的网站时,我希望将来源引用为(标题年份)而不是(编辑/作者年份)。如何根据某些标准更改引用,以便您可以满足某些引用标准(例如哈佛)?
答案1
与 APA 样式等其他样式不同(https://www.apastyle.org/manual,biblatex
执行biblatex-apa
)和芝加哥风格(https://www.chicagomanualofstyle.org/home.html,biblatex
执行biblatex-chicago
最近windycity
)期限哈佛风格哈佛风格不是指一种定义明确、独特的引文和参考书目风格。相反,哈佛风格是指一类广泛的作者年份引文。许多学校、大学、研究所和教授对“哈佛风格”的确切含义都有自己的解释。
标准biblatex
风格authoryear
或其变体authoryear-ibid
,authoryear-comp
,authoryear-icomp
通常是哈佛风格的一个很好的起点。
事实上,这些风格已经给你一个 标题年份如果没有作者或编辑则注明引用。
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@online{ics,
title = {On the Importance of the Civil Service},
date = {2019},
url = {https://example.edu/impcs.pdf},
urldate = {2019-03-11},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem \autocite{sigfridsson}
ipsum \autocite{ics}
\printbibliography
\end{document}