BibTeX:参考书目中所有条目的布局相同吗?

BibTeX:参考书目中所有条目的布局相同吗?

我正在写一份“报告”,并使用 BibTeX 来记录文献,我有不同类型的 BibTeX 条目,如书籍、文章、杂项、博士论文、硕士论文等。

\urlstyle{same} 

    \bibliographystyle{agsm} %Harvard style
    \bibliography{literature}

我想让相同字段的所有条目都采用相同的格式(例如,所有标题字段都采用斜体格式,与 BiBTeX 条目类型无关)。有点像 URL 格式。

我发现了 2015 年关于同一主题的类似问题: 使用 natbib 获取杂项和书籍中标题标签的相同布局

有没有更简单的方法,而不是替换bst每个条目以使其看起来相同?

以下是最小值的示例:

\documentclass{report}
\begin{document}

I cite \citep{Luhmann1979} and \citep{Doney1998}.

\urlstyle{same}
\bibliography{literature}
\bibliographystyle{agsm}
\end{document}

我的 BibTeX 条目示例:

   @Book{Luhmann1979,
  title     = {Trust and power},
  publisher = {John Wiley \& Sons},
  year      = {1979},
  author    = {Luhmann, Niklas},
}

@Article{Doney1998,
  author    = {Doney, Patricia M and Cannon, Joseph P and Mullen, Michael R},
  title     = {Understanding the influence of national culture on the development of trust},
  journal   = {Academy of management review},
  year      = {1998},
  volume    = {23},
  number    = {3},
  pages     = {601--620},
  publisher = {Academy of Management Briarcliff Manor, NY 10510},
}

答案1

解决方案是删除 .bst 中标题的引号(我的情况是 agsm.bst):例如 MISC:第 902 行:FUNCTION {misc} -> 第 908 行:format.title 引用输出 -> 删除“引用“-> format.title 输出

非常感谢您的帮助

相关内容