将 BibteX 文件链接到出版商手稿,无需手动输入所有参考文献

将 BibteX 文件链接到出版商手稿,无需手动输入所有参考文献

可用的这里是出版商手稿的链接。按照自述文件说明操作后,可以轻松地重新编译手稿。

但是我尝试将我的 Bibtex 文件与参考文献关联起来,但无法让脚本成功运行。

如果我尝试编译参考书目,我收到以下消息:

This is BibTeX, Version 0.99d (TeX Live 2015/W32TeX)
The top-level auxiliary file: SAGE_document.aux
I found no \bibstyle command---while reading file SAGE_document.aux
(There was 1 error message)

然而从前言来看,我认为该sageh命令应该关联 bibtex 文件。

\documentclass[Afour,sageh,times]{sagej}

是否有人能够将他们自己的 Bibtex 文件关联到文档,或者用户必须手动输入所有参考文献\bibitem

答案1

无论出于什么原因,虽然提供了sagev和选项,但执行时它们不会设置参考书目样式。因此,除了将或作为选项传递给类之外sageh,还需要\bibliographystyle{sageh}tex文件中手动设置才能成功运行并生成参考书目。bibtexsagehsagev

\documentclass[Afour,sageh,times]{sagej}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{key,
  author = {Author, A.},
  year = {2001},
  title = {Title},
  publisher = {Publisher},
}
\end{filecontents}

\begin{document}
\cite{key}

\bibliographystyle{sageh}
\bibliography{\jobname}
\end{document}

对我来说编译成功 在此处输入图片描述

相关内容