每次引用的風格不同?

每次引用的風格不同?

我正在使用 Biblatex 並嘗試模仿哈佛參考文獻。因此,我authoryear在設定包時將樣式設定為括號內。我將其設定為這種風格,因為這是您引用作者來源的方式。但是,當我嘗試引用一個沒有作者而只有編輯/出版商的網站時,我想將來源引用為(標題年份)而不是(編輯/作者年份)。如何根據某些標準更改引用,以便滿足特定的引用標準(例如哈佛)?

答案1

與APA等其他風格不同https://www.apastyle.org/manualbiblatex執行biblatex-apa和芝加哥風格https://www.chicagomanualofstyle.org/home.htmlbiblatex執行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}

Lorem(Sigfridsson 和 Ryde 1998)ipsum(論公務員的重要性 2019)

相關內容