(Hudson,2016)声称,我们可以通过商业游戏提高个人的社会福利、第二语言学习和自信心
这是我需要修正的引文,它应该显示为
Hudson (2016) 声称,我们可以通过商业游戏提高个人的社会福利、第二语言学习和自信心
为了实现这一点,我尝试使用该natbib
包。我的参考书目如下:
\begin{thebibliography}{30}
\bibitem[Ferris, 1994]{R13}
Ferris, D. R. (1994). Lexical and syntactic features of ESL writing by students at different levels of L2 proficiency. \textit{Tesol Quarterly, 28}(2), 414-420.
\end{thebibliography}
使用natbib
,在我生成的 PDF 中,引用仅显示为数字 13,而不是 (Ferris, 1990)。我尝试使用cite
、citep
、citet
,但都不起作用。请帮忙!
答案1
的结构\bibitem
应该是不同的:
\bibitem[Ferris(1994)]{R13}
Ferris, D. R. (1994). Lexical and syntactic features of ESL writing by students at
different levels of L2 proficiency. \emph{Tesol Quarterly}, 28 (2), 414--420, 1994.
有了这个,以下输入以及\usepackage[authoryear,round]{natbib}
\citet{R13} claims that we can improve the social well-being,
second language learning and confidence of an individual using
the commercial games.
将打印为
当然,最好使用BibTeX,而不是手动输入参考书目数据。