如何从 mendeley 创建特定风格的参考书目?

如何从 mendeley 创建特定风格的参考书目?

我正在使用 Mendeley 来组织我的引文。过去我使用过 Mendeley word 插件,但我在制作 LaTex 书目方面遇到了困难。我知道如何将我的书目导出到 .bib 文件以及如何找到引文关键字,但仍然存在以下问题:

  • 我的主 tex 文档和任何子文件中需要哪些命令?我假设那\cite{citationkey}是用于文本引用,并且\bibliography{library.bib}放在我想要参考书目的地方。
  • 我需要为我的参考书目使用一种特定的样式,即美国化学生物学学会。Mendeley 支持它,但是如何在 Latex 中更改我的参考书目样式?

LaTex 和 Bib 文件示例

以下示例无法在 TexMaker 中正确编译,并且引用留下一个问号。

    \documentclass{article}
    \usepackage{style_format}

    \begin{document}
    \begin{titlepage}
        \centering
        {\huge Molecular Dynamic Simulation}
        % Bottom of the page
        {\large \today\par}
    \end{titlepage}
    \tableofcontents
    \clearpage

    \subfile{Introduction}
    \cite{Boulton2014}
    \subfile{Methods}
    \subfile{Analysis}
    \subfile{Discussion}
    \subfile{Conclusion}

    \clearpage
    \appendix
    \listoffigures
    \subfile{Appendix}
    \bibliography{library.bib}
    \end{document}
  • @article{Boulton2014,
    author = {Boulton, Stephen and Akimoto, Madoka and VanSchouwen, Bryan and Moleschi, Kody and Selvaratnam, Rajeevan and Giri, Rajanish and Melacini, Giuseppe},
    doi = {10.1042/BST20130282},
    file = {:Users/NickolasGoncharenko 1/Google Drive/Mendeley Desktop Papers/Biochemical Society Transactions/Tapping the translation potential of cAMP signalling molecular basis for selectivity in cAMP agonism and antagonism as revealed by NMR_B.pdf:pdf},
    issn = {0300-5127},
    journal = {Biochem. Soc. Trans.},
    number = {2},
    pages = {302--307},
    title = {{Tapping the translation potential of cAMP signalling: moleculabasis for selectivity in cAMP agonism and antagonism as revealed by NMR}},
    url = {http://www.biochemsoctrans.org/bst/042/bst0420302.htm},
    volume = {42},
    year = {2014}
    }
    

答案1

Mendeley 的参与在这里是一个干扰。参考书目样式受行控制\bibliographystyle,因此在这里您需要

\bibliographystyle{biochem}

您可能希望考虑加载该achemso包,因为它可以控制achemsobiochem参考书目(子)样式。

相关内容