使用 BibLaTeX 引用在线新闻文章

使用 BibLaTeX 引用在线新闻文章

我想引用一篇在线新闻文章,即未以印刷版本出现的新闻文章,使用带有作者年份样式的 BibLaTex。示例:

\documentclass[12pt,paper=a4,bibtotocnumbered,abstract=on]{scrreprt}
\usepackage[ngerman]{babel}
\usepackage[backend=bibtex,style=authoryear,doi=false,isbn=false]{biblatex}
\addbibresource{Export-Test.bib}
\DefineBibliographyStrings{german}{
    urlseen = {abgerufen am},
}

\begin{document}
Test \autocite{Darroch.2017}.

\end{document}

与文件中的相应条目.bib

@Online{Darroch.2017,
 author = {Darroch, Gordon},
 year = {2017},
 title = {Netherlands 'will pay the price' for blocking Turkish visit – Erdoğan },
 journal = {The Guardian},
 url = {https://www.theguardian.com/world/2017/mar/12/netherlands-will-pay-the-price-for-blocking-turkish-visit-erdogan},
 urldate = {2017-03-12}
}

输出如下所示:

Darroch,Gordon(2017)。埃尔多安:荷兰将为阻止土耳其访问付出代价网址:https://www.theguardian.com/world/2017/mar/12/netherlands-will-pay-the-price-for-blocking-turkish-visit-erdogan(于 2017 年 3 月 12 日删除)

我尝试了多种方法journal,但新闻网站的名称就是不显示。最后,它应该是这样的:

Darroch, Gordon (2017). 荷兰“将为阻止土耳其访问付出代价”——埃尔多安守护者. 網址:https://www.theguardian.com/world/2017/mar/12/netherlands-will-pay-the-price-for-blocking-turkish-visit-erdogan(于 2017 年 3 月 12 日删除)

有什么办法可以解决这个问题吗?非常感谢!

答案1

您将想要使用@article条目类型。

@article{Darroch.2017,
 author  = {Darroch, Gordon},
 date    = {2017-03-12},
 title   = {Netherlands 'will pay the price' for blocking Turkish visit – Erdoğan},
 journal = {The Guardian},
 url     = {https://www.theguardian.com/world/2017/mar/12/netherlands-will-pay-the-price-for-blocking-turkish-visit-erdogan},
 urldate = {2017-03-12}
}

由于这可以说是一篇出现在报纸在线版中的文章,因此使用 应该没问题@article

正如 cfr 在评论中指出的那样,指定发布日期是一个好主意(对于较新的版本,您甚至还可以提供时间date = {2017-03-12T19:57:00})。

答案2

我使用 EndNote,因此必须配置报纸文章的导出字段,如下所示。使用 biblatex 似乎可以将所有内容按正确的顺序排列。

@article{|Label,|
|   `author = `{Reporter},
|   `title = `{Title},
|   `year = `{Year},
|   `journal = `{Newspaper},
|   `note = `{Available at: \url{URL} (Accessed: {Access Date})},
|   `month = `{Issue Date},
|   `type = `{Reference Type}

因此最终的 bib 条目是

@article{Allen2018,
   author = {Allen, Kate},
   title = {African Development Bank turns to hedge fund to offset risk},
   year = {2018},
   journal = {Financial Times},
   note = {Available at: \url{https://www.ft.com/content/6eba4d10-ba43-11e8-94b2-17176fbf93f5} (Accessed: {April 24th, 2023})},
   month = {18 Sep},
   type = {Newspaper Article}
}

相关内容