作者日期书目问题

作者日期书目问题

感谢我向该期刊投稿“代数通讯”,我希望在文中引用仅括在括号中的作者和日期的参考文献,并在文章末尾按字母顺序列出参考文献。示例:

期刊:Hvala,B. 环中的广义导子。通信代数26:1147—1166。

书籍:Birkenmeier, GF、Heatherly, HE、Lee, EK (1995)。Near-rings 中的完全素理想和根。收录于:Fong, Y. 等,编辑。近环和近场会议纪要.Kluwer,第 63-73 页。

我使用natbibwith apalikestyle,但无法做到。有什么解决办法吗?

答案1

\citep这应该使用命令以简单的方式工作natbib。请注意,参考文献看起来与示例中的并不完全相同。如果这是问题所在,则需要不同的参考书目样式。

\documentclass{article}

\usepackage{filecontents}
\begin{filecontents}{Dadsetani.bib}
@article{Hvala,
  author = {Hvala, B.},
  title = {Generalized derivations in rings},
  journal = {Comm. Algebra},
  volume = 26,
  pages = {1147--1166},
  year = 1998,
}

@inproceedings{Birkenmeier,
  author = {Birkenmeier, G. F. and Heatherly, H. E. and Lee, E. K.},
  title = {Completely prime ideals and radicals in Near-rings},
  booktitle = {Proceedings of Near-rings and Near-Fields},
  publisher = {Kluwer},
  year = 1995,
  pages = {63--73},
  editor = {Fong, Y. and others},
}
\end{filecontents}

\usepackage{natbib}

\begin{document}
\citep{Hvala}, \citep{Birkenmeier}

\bibliographystyle{apalike}
\bibliography{Dadsetani}
\end{document}

示例输出

相关内容