Springer Bibliography 中的数学模式无法运行

Springer Bibliography 中的数学模式无法运行

我想知道如何在 Springer Nature 书目中使用数学模式。

这是主文件的摘录:

\begin{document}
Cite \cite{bib12}
\end{document}

这是 bib 文件的摘录:

@article{bib12, 
   author  = "R. W. Gosper",
   title   = "$\int_{\frac{m}{4}}^{\frac{n}{4}}$, Special
              functions, $q$-series and related topics",
   journal = "The Fields Institute Communications",
   volume  = "14",
   year    = "1997",
   pages   = "71--76"
}

运行 PdFLaTeX + Bibtex + PdFLaTeX + PdFLaTeX 后,BBL 的输出只有 0kb。

答案1

“Springer Nature” 提供了几种参考书目样式。假设您使用sn-jnl文档类和sn-mathphys参考书目样式,tex 文件中的第一个指令应该是

\documentclass[sn-mathphys]{sn-jnl}

此设置可确保natbib引文管理包加载适合数学和物理科学的选项。有关此主题的更多信息,请参阅sn-jnl发行版用户指南的第 8.3 节“参考资料”。(用户指南的文件名为“user-manual.pdf”。)


完整的 MWE (最小工作示例) 及其输出:

在此处输入图片描述

\documentclass[sn-mathphys]{sn-jnl}

\begin{filecontents}[overwrite]{mybib.bib}
@article{bib12, 
   author  = "R. W. Gosper",
   title   = "$\int_{u}^{v}$, Special functions, $q$-series 
              and related topics",
   journal = "The Fields Institute Communications",
   volume  = "14",
   year    = "1997",
   pages   = "71--76"
}
\end{filecontents}

\begin{document}
Cite \cite{bib12}
\bibliography{mybib}
\end{document}

答案2

我找到了一种使用 TeXworks 打开 BBL 文件的方法,只需将数学表达式放在我想要的位置即可。输出结果正是我想要的。

相关内容