我是 latex 的新手。我在 centos linux 上安装了 texlive 2014。我一直在使用 apacite 做参考书目。现在我需要获得 AMA 引用样式。
\documentclass{article}
\usepackage{apacite}
\begin{document}
\nocite{*}
\bibliographystyle{apacite}
\bibliography{example}
\end{document}
上面提到的乳胶代码适用于 apacite 样式。
\documentclass{article}
\usepackage{amacite}
\begin{document}
\nocite{*}
\bibliographystyle{amacite}
\bibliography{example}
\end{document}
如果我运行上述代码来创建 AMA 样式书目,则会收到错误“未找到 amacite.sty”。而且我在 texlive 中没有 AMA 相关文件。那么如何将 AMA 文件下载到 texlive 并在 latex 文件中使用它呢?请帮忙!
答案1
没有amacite.sty
软件包,但有ama.bst
bibtex 样式。它不是 TeX Live 的一部分,但你可以在 CTAN 上找到它,例如这里。您必须自行安装它,在您的texmf-local
目录中,更准确地说是在\texmf-local\bibtex\misc\
并运行texhash
。然后在您的文档中使用:
\bibliographystyle{ama}
答案2
\documentclass[12pt]{article}
\usepackage[super,sort&compress]{natbib}
\setcitestyle{comma,numbers,super,open={},close={}}
\makeatletter
\renewcommand\@biblabel[1]{#1.}
\makeatother
\begin{document}
\section*{Latex Superscript Citation (AMA-like)}
This is a superscript citation~\citep{da2018graph}
\begin{thebibliography}{99}
\bibitem{da2018graph}
Silva WMC, Wercelens P, Walter MEM et~al.
\newblock Graph databases in molecular biology.
\newblock In \emph{Brazilian Symposium on Bioinformatics}. Springer, pp.
50--57.
\end{thebibliography}
\end{document}