以 APA 格式引用 URL 和论文

以 APA 格式引用 URL 和论文

我正在写一篇论文\documentclass[]{interact}

我用于参考书目的软件包:

\usepackage[natbibapa,nodoi]{apacite}
\setlength\bibhang{12pt}
\renewcommand\bibliographytypesize{\fontsize{10}{12}\selectfont}

我不使用数字来引用参考书目。我担心的是:

对于论文,我使用通常的方式引用论文,例如:\citep{wang2017deep}对于以下内容:

@inproceedings{wang2017deep,
  title={Deep model for dropout prediction in MOOCs},
  author={Wang, Wei and Yu, Han and Miao, Chunyan},
  booktitle={Proceedings of the 2nd International Conference on Crowd Science and Engineering},
  pages={26--32},
  year={2017},
  organization={ACM}
}

我期望我的稿件是:Wang et al., 2017但我得到了W. Wang et al., 2017它的所有出现。最糟糕的是引用不一致,有些项目(例如下面)出现在第一种格式(Author_lastname et al., year)中,而有些出现在前一种格式中。

例如:

 @inproceedings{chaplot2015predicting,
 title={Predicting Student Attrition in MOOCs using Sentiment Analysis and Neural Networks},
 author={Chaplot, Devendra Singh and Rhim, Eunhee and Kim, Jihie},
 booktitle={AIED Workshops},
 volume={53},
 pages={54--57},
 year={2015}}

每次都出现Chaplot et al.(第一次除外)。

此外,每当我第一次引用某个项目时,我都会得到所有作者姓名,例如,我第一次引用上述论文时,我得到了W. Wang, Yu, & Miao, 2017。我总是希望所有论文都只获得一种格式,无论它们是第一次使用还是最后一次使用Author_lastname et al., year

最后,我想了解一下没有作者姓名的 URL 的情况,例如:

@misc{class_central's_mooc_report_2019, title={Year of MOOC-based Degrees: A Review of MOOC Stats and Trends in 2018 - Class Central}, url={https://www.classcentral.com/report/moocs-stats-and-trends-2018/}, journal={Class Central's MOOC Report}, year={2019}, month={Mar}}

引用此类 URL 的最佳方式是什么?

相关内容