我需要命令来引用我的参考文献以及作者和年份,例如 magda(1980)

我需要命令来引用我的参考文献以及作者和年份,例如 magda(1980)

我使用了以下命令来执行此操作,但无法生成带有年份的作者姓名。我只生成了作者姓名。

\usepackage[round]{natbib}
\begin{thebibliography}
    \bibitem[Magda(1980)]{ref1}Magda C.G.(1980).Circular balanced repeated measurements designs, \textit{Comm. Statist.Theory   Methods} \textbf{9}, 1901-1918.
    \bibliographystyle{plainnat}
\end{thebibliography}

答案1

您在这里混合了两种不同的参考书目系统。如果您想在环境中手动编写参考书目thebibliography,需要进行以下几项更改:

  • 消除\bibliographystyle{plainnat}
  • 向环境添加强制参数thebibliography,即\begin{thebibliography}{9}。 (如果您有 10 个或更多引用,请使用 eg99而不是9。)

代码输出

\documentclass[round,authoryear]{elsarticle}
\begin{document}
\citep{ref1} \citet{ref1}
\section*{\refname}
\begin{thebibliography}{9}
    \bibitem[Magda(1980)]{ref1} Magda C.G.(1980). Circular balanced repeated measurements designs, \textit{Comm. Statist.Theory   Methods} \textbf{9}, 1901--1918.
\end{thebibliography}
\end{document}

相关内容