Latex之使用APA格式引用:文中作者加年份,文末不编号

版权声明:如果对您有所启发,欢迎留言告知。若需转载请先联系作者获得许可,转载后请注明出处。 https://blog.csdn.net/yq_forever/article/details/84616050

可使用natbib包,\citep 命令来使得引用格式为作者、年份。详情参见wiki - LaTeX/Bibliography Management。

示例:

\documentclass{article}
\usepackage{natbib}
 
\begin{document}
Abc\citep{greenwade93}  %是\citep不是\cite
 
\bibliographystyle{plainnat}
\bibliography{sample}
 
\end{document}

得到结果;

猜你喜欢

转载自blog.csdn.net/yq_forever/article/details/84616050