谷歌学术 bibtex 和 apa 格式

谷歌学术 bibtex 和 apa 格式

我已经写完了我的博士论文,并从谷歌学术中导入了所有参考文献。现在,到了最后(!),我注意到它们彼此不兼容。以下是我从谷歌获得的一些示例以及我的问题:

@inproceedings{finin2010annotating,
      title={Annotating named entities in Twitter data with crowdsourcing},
      author={Finin, Tim and Murnane, Will and Karandikar, Anand and Keller, Nicholas and Martineau, Justin and Dredze, Mark},
      booktitle={Proceedings of the NAACL HLT 2010 Workshop on Creating Speech and Language Data with Amazon's Mechanical Turk},
      pages={80--88},
      year={2010},
      organization={Association for Computational Linguistics}
    }

@inproceedings{leidner2003grounding,
  title={Grounding spatial named entities for information extraction and question answering},
  author={Leidner, Jochen L and Sinclair, Gail and Webber, Bonnie},
  booktitle={Proceedings of the HLT-NAACL 2003 workshop on Analysis of geographic references-Volume 1},
  pages={31--38},
  year={2003},
  organization={Association for Computational Linguistics}
}

1)如你所见,HLT-NAACL两个参考文献中的写法不同。

2) 有些参考文献有organization(如上述例子),有些则没有。

3) 有些首字母缩略词(例如,ACL上述例子中的Association for Computational Linguistics)用于某些指称,但用于某些指称。也就是说,在某些情况下,我有全名,而在某些情况下,我只有缩写形式。

4) 谷歌学术不包含所有论文/书籍的全部信息。例如,我有这样的参考资料:

@article{fillmore1967case,
  title={The case for case.},
  author={Fillmore, Charles J},
  year={1967},
  publisher={ERIC}
}

在我的代码中,我正在使用\bibliographystyle{apacite}(请参阅最后的我的代码)并且在文本中,它看起来不错,一切都很好,但是在参考列表中,存在上述缺点。

现在,我有以下问题:

有没有什么办法可以让所有的参考文献兼容?

是否APA需要Organization每个引用?如果不需要,为什么 mym 代码会在包含它的引用的末尾显示它?如果需要,为什么我没有收到任何错误或警告?有没有办法让代码做到这一点?

一般来说,我该怎么做才能使我的参考文献彼此相似?

我的代码(如果有帮助):

\documentclass[11pt, oneside]{Thesis}
\begin{document}

\label{Bibliography}
\bibliographystyle{apacite}
%\bibliographystyle{apa} 

\bibliography{Bibliography} 
\end{document}

相关内容