每个引用的风格不同?

每个引用的风格不同?

我正在使用 Biblatex 并尝试模仿哈佛引用。因此,我authoryear在设置包时将样式设置为括号中。我将其设置为该样式是因为这就是您引用有作者的来源的方式。但是,当我尝试引用没有作者而只有编辑/出版商的网站时,我希望将来源引用为(标题年份)而不是(编辑/作者年份)。如何根据某些标准更改引用,以便您可以满足某些引用标准(例如哈佛)?

答案1

与 APA 样式等其他样式不同https://www.apastyle.org/manualbiblatex执行biblatex-apa)和芝加哥风格(https://www.chicagomanualofstyle.org/home.htmlbiblatex执行biblatex-chicago最近windycity期限哈佛风格哈佛风格不是指一种定义明确、独特的引文和参考书目风格。相反,哈佛风格是指一类广泛的作者年份引文。许多学校、大学、研究所和教授对“哈佛风格”的确切含义都有自己的解释。

标准biblatex风格authoryear或其变体authoryear-ibidauthoryear-compauthoryear-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}

Lorem (Sigfridsson 和 Ryde 1998) ipsum (论公务员制度的重要性 2019)

相关内容