我正在使用 achemso 书目样式在 pdfLaTeX+MakeIndex+BibTeX 中撰写论文,并且我正在使用一个根文件,其中包含每个章节的不同文件和书目。我正在尝试调整书目输出(即添加标题、删除 et al 并列出所有作者、拆分 url 等)。我尝试了许多不同的方法,包括尝试添加控制序列(此处描述:如何在没有 achemso 包的情况下使用 achemso 书目样式?)。我不确定我是否没有把东西放在正确的位置,但什么都不起作用。帮忙吗?主文件:
\documentclass[12pt,oneside,final]{thesis}
\usepackage{chapterbib}
\usepackage[superscript]{cite}
\makeatletter
\renewcommand\@biblabel[1]{#1.}
\makeatother
\renewcommand\bibname{References}
\usepackage{chemstyle}
\usepackage{cite}
\begin{document}
\title{Title}
\author{Me}
\include{chapter1_MWE}
\end{document}
第 1 章(chapter1_MWE)
\chapter{This is the first chapter}
\label{sec:chapter1}
The text goes here.\cite{winzeler2008malaria}
Then more text.\cite{hall2005comprehensive}
\bibliographystyle{achemso}
\bibliography{./Bibliographies/chapter1_MWE}
参考书目(chapter1_MWE)
@article{winzeler2008malaria,
title={Malaria},
author={Winzeler, Elizabeth Ann},
journal={Nature},
volume={455},
number={7214},
pages={751--756},
year={2008},
publisher={Nature Publishing Group}
}
@article{hall2005comprehensive,
title={A comprehensive survey},
author={Hall, Neil, and Karras, Marianna and Raine, Ja Dale and Carlton, Jane M and Kooij, Taco WA and Berriman, Matthew and Florens, Laurence and Janssen, Christoph S and Pain, Arnab and Christophides, Georges K, and James, K and Trueman, H E and Mendoza Jac and Bidwell, Shelby L and Rajandream, M-A and Carucci, Dan J and Yates, John R III and Kafatos, F C and Janse, C J and Barrell, B and Turner, M R and Waters, Andre P and Sinden, Rob E},
journal={Science},
volume={307},
number={5706},
pages={82--86},
year={2005},
publisher={American Association for the Advancement of Science}
}
这并没有完全说明我的主要工作文件的作用,但已经足够接近了。