编辑

编辑

我需要根据 APA 标准为会议尚未出版诉讼程序。

APA 手册中的适当格式可能如下:

贡献者,AA,贡献者,BB,贡献者,CC,&贡献者,D. 0.(年,月)。贡献标题。在 FE 主席(主席),研讨会名称. 研讨会在组织名称、地点的会议上进行。

例子:

Muellbauer, J. (2007 年 9 月)。住房、信贷和消费支出。SC Ludvigson (主席),住房和消费者行为。 在怀俄明州杰克逊霍尔堪萨斯城联邦储备银行会议上举行的研讨会

但这与该问题选择的格式不匹配:在 BibTeX(希望通过 Zotero)中表示会议演讲(没有会议记录)的正确方法是什么?

我如何使用 Biblatex 创建该格式的条目?我链接的问题是关于 Bibtex 的,那里的答案不适用于 Biblatex。

我目前的参赛作品是

@conference{basirat_2018,
    title = {Word {Embedding} Through {PCA}},
    author = {Basirat, Ali},
    year = {2018},
    month = {September},
    venue = {Gothenburg, Sweden},
    eventtitle = {Swedish Symposium on Deep Learning},
    % chariman??
    % publisher = {Centre for Linguistic Theory and Studies in Probability} % wrong key I guess
}

生产

在此处输入图片描述

但没有会议上举行的研讨会在编译的条目中。

编辑

好的,我即兴发挥如下:

@conference{basirat_2018,
    title = {Word {Embedding} {Through} {PCA}},
    author = {Basirat, Ali},
    year = {2018},
    month = {September},
    note = {In \emph{Swedish symposium on deep learning}. Symposium conducted at the meeting of Centre for Linguistic Theory and Studies in Probability, Gothenburg, Sweden.}
}

给出正确的输出。仅chair缺少部分,因为没有关于本次研讨会的信息。

在此处输入图片描述

答案1

类型@conference自动转换为@inproceedings。虽然@inproceedings通常仅在有已发布的会议记录时使用,但即使在这种情况下也可以获得一种可接受的输出。

诀窍是将会议名称放在booktitle字段中。

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[style=apa, backend=biber]{biblatex}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@inproceedings{basirat,
  title      = {Word Embedding Through {PCA}},
  author     = {Basirat, Ali},
  date       = {2018-09},
  venue      = {Gothenburg, Sweden},
  booktitle  = {Swedish Symposium on Deep Learning},
}
\end{filecontents}

\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}


\begin{document}
\cite{sigfridsson,basirat}
\printbibliography
\end{document}

Basirat, A. (2018 年 9 月)。通过 PCA 实现词嵌入。瑞典深度学习研讨会。瑞典哥德堡。


您也许想讨论是否将包括2018在内booktitlebooktitle = {Swedish Symposium on Deep Learning 2018},或者是否包括这是第二次此类研讨会这一事实booktitle = {The Second Swedish Symposium on Deep Learning},


我没有包括

研讨会在瑞典哥德堡语言理论与概率研究中心会议上举行。

位,因为这听起来不对,但你可以把它放进eventtitlebooktitleaddon

还请注意会议网站

由查尔姆斯大学先进信息与通信技术领域、查尔姆斯大学计算机科学与工程系以及哥德堡大学 CLASP 组织举办。

相关内容