在 LaTex 中,我想拥有自定义的参考书目样式。到目前为止,我使用 natbib 包和 kluwer 样式。我的 .bib 文件是使用 Mendeley 自动创建的。文本中的引用工作正常,但参考部分看起来并不像它应该的那样。根据出版物类型,我想要不同的条目:
因此,例如对于会议记录,我想要:
Muster, S. 和 Muller, A. (2017),``测试...'',作坊,Springer,Cham,第 65-71 页。
现在,我得到:
Muster, S. 和 Muller, A.: 2017,测试......,作坊,Springer,Cham,第 65-71 页。
我的 .bib 条目(由 Mendeley 自动生成)如下所示:
@inproceedings{Muster2017,
author = {Muster, Sebastian and Muller, Anna},
booktitle = {Workshop},
pages = {65--71},
publisher = {Springer, Cham},
title = {{Testing ...}},
year = {2017}
}
这是 LaTex 的迷你示例代码。请将上述代码保存为 test.bib
\documentclass[11pt,a4paper]{article}
\usepackage[english]{babel}
\usepackage{natbib}
\bibliographystyle{kluwer}
\setcitestyle{aysep={,}}
\begin{document}
Like \citep{Muster2017}.
\bibliography{test}
\end{document}
任何帮助都非常感谢!谢谢!