achemso 包未运行,参考书目生成错误

achemso 包未运行,参考书目生成错误

我正在尝试首次使用 achemso 文档类撰写论文。我之前使用过不同的文档类(书籍)来处理 LaTeX,并且只使用 achemso 包来跟踪参考文献并采用 ACS 要求的参考文献样式,没有遇到任何问题。

但是,当我尝试使用文档类 achemso 时,出现了一堆错误。首先,它提示我“\begin{document}”是错误(我不明白为什么),然后,在它运行完所有程序后,我在参考书目方面遇到了问题,每次程序读取引文时,我都必须单击回车键,当我有 7 个引文时,这有点无聊,但实际上我有大约 200 个!然后,当我转到参考书目时,我看到了论文的标题,这些标题不应该包括在内,因为我应该使用 achemso.sty 样式。有人能帮忙吗?

我附上了一份 MWE,看看是否有人能帮我解决这个问题。这是获取参考书目的链接:https://drive.google.com/file/d/0BxNftlsFB4P5bEtEaVVYd2YxeFE/view?usp=sharing

\documentclass[journal=chreay,manuscript=review]{achemso}

\author{Author Person}
\author{Second Bloke}
\email{[email protected]}
\phone{+xxx (0)yyy zzzzzz}
\fax{+xxx (0)yyy wwwwww}
\affiliation[University of Sometown]{University of Somewhere, Sometown, Country}

\usepackage{graphicx}
\usepackage{dcolumn}
\usepackage{multirow}
\usepackage[para]{threeparttable} %this allows for using footnotes in tables
\usepackage[printonlyused]{acronym}
\usepackage{SIunits} %incompatible with package chemmacros use siunitx instead
\usepackage{textgreek}%this is to use greek letters as part of a text, no math mode
\usepackage{chngcntr}%this is to change the counter
\usepackage[usenames,dvipsnames]{color}
\usepackage[table]{xcolor}%This highlights rows in a column by adding \rowcolor{color} before the row, but looks bad taken from http://timmurphy.org/2009/09/06/highlighting-table-rows-in-latex/
\newcounter{rowno}
\setcounter{rowno}{0}
\newcolumntype{.}{D{.}{.}{4}}%. specifies a column of entries to be centred on the ..
\usepackage[format=hang,labelfont={bf},margin=1em,labelsep=period,textformat=period]{caption}
\usepackage{subcaption}
\usepackage{url}
  \urlstyle{sf}
\usepackage{psfrag}
\usepackage[runs=2]{auto-pst-pdf}
\usepackage{chemnum}
\setchemnum{
  replace-style = \fontsize{8}{10}\rmfamily,
}
\usepackage[version=3]{mhchem}
\usepackage{enumitem}
\usepackage{rotating}
\usepackage{subfig}

\title[Example]{Non-working Example}
\abbreviations{IR,NMR,UV}
\keywords{American Chemical Society, \LaTeX}


\begin{document}

This is an example that works, except when you are trying to add some \textsubscript{subscript} text.\cite{Pinto:2005wp, Sousa:2005ug, ElSeedi:2009wq, ElSeedi:2010uc, YANG:2012hd, Masters:2012ds, Winter:2013bg}

\bibliography{Abbreviated}
\end{document}

相关内容