参照方程式

参照方程式

我正在准备一篇使用“osajnl”风格的期刊论文。我的问题是,如何引用方程式及其来源参考,如下图所示。在此处输入图片描述 换句话说,我尝试在我的数学推导中使用参考文献 7 中的公式 (1)。

答案1

使用命令的可选参数\cite。对于类,osajnl\cite有两个可选参数,第一个将文本放在引文之前,第二个将文本放在引文之后。如果您只提供一个,则将其放在前面,因此您需要添加一个空的第一个可选参数:

\documentclass{osajnl}
\journal{ol}
\begin{document}
\cite[][Eq.~13]{article-full}
\bibliographystyle{osajnl}
\bibliography{bibfile}
\end{document}

答案2

给出提示,蓝色数字是页码,您可以定义一个新命令\mathref

\documentclass{article}

\usepackage{xcolor}             % to get blue color

\newcommand{\mathref}[1]{%
  [\textcolor{blue}{\pageref{#1}}, Eq.~(\ref{#1})]}

\begin{document}
\begin{equation}
  \label{eq:1}
  a^2 + b^2 = c^2
\end{equation}

Pythagoras formulae is presented on \mathref{eq:1}.
\end{document}

这将产生这样的结果:

在此处输入图片描述

相关内容