引用样式

引用样式

我目前的参考文献/书目最后采用以下风格:

Kenneth J. Arrow、Leonid Hurwicz 和 Hirofumi Uzawa。最大化问题中的约束条件。海军研究后勤季刊,8:175-191,1961 年。

我正在尝试将其更改为:

Arrow KJ、Hurwicz L、Uzara H(1961)最大化问题中的约束条件。海军研究后勤季刊,8:175-191。

任何帮助(或有关更合适的引用样式的建议)。我喜欢我目前的引用样式。

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{ahu61,
   author={Arrow, Kenneth J. and Leonid Hurwicz and Hirofumi Uzawa},
   title={Constraint qualifications in maximization problems},
   journal={Naval Research Logistics Quarterly},
   volume={8},
   year = {1961},
   pages = {175-191}
 }
 \end{filecontents}

\usepackage[round]{natbib}

\begin{document}
Lorem ipsum dolor \citep{ahu61} sit amet, consectetur adipiscing elit.
\nocite{*}
\bibliographystyle{plainnat}
\bibliography{\jobname}{}
\end{document}

答案1

看起来像典型的作者年份风格。

看看芝加哥、哈佛和 APA 风格。非常接近:apaapalike

布赖恩BibStyle

\documentclass{article}
\begin{filecontents}{\jobname.bib}
    @article{ahu61,
        author={Arrow, Kenneth J. and Leonid Hurwicz and Hirofumi Uzawa},
        title={Constraint qualifications in maximization problems},
        journal={Naval Research Logistics Quarterly},
        volume={8},
        year = {1961},
        pages = {175-191}
    }
\end{filecontents}

\usepackage[round,authoryear]{natbib}

\begin{document}
Lorem ipsum dolor \citep{ahu61} sit amet, consectetur adipiscing elit.
\nocite{*}
\bibliographystyle{apa}
\bibliography{\jobname}
\end{document}

相关内容