以两列样式输出 latex 格式的公式

以两列样式输出 latex 格式的公式

我正在为 Springier 杂志撰写一篇论文。该杂志的 Latex 样式基于两栏格式。

我的论文中有一些方程式,我想通过应用命令$$equation$$将这些方程式写在以$equation$样式的段落中,而不是写在独立的行中。

我的问题是,在某些情况下,方程式不会在一行中拆分并在下一行继续其其余部分。

例如,请考虑以下代码

\documentclass[pdftex,twocolumn,epjc3]{svjour3}       
\begin{document}

Therefore, we conclude that 
$Reg_i=h(h(ID_i \|R_i \| HPW_i )  \bmod m), A_i=R_i\oplus HPW_i, B_i=h(ID_i 
\|R_i \|K), C_i=B_i\oplus h(ID_i\oplus R_i\oplus HPW_i)$,
which results in our conditions are satisfied by the assumptions and hence 
we can continue other steps. 

\end{document}

上述代码的输出形式如下

代码的输出

谢谢您的任何建议。

版:尽管当我们以以下形式运行代码时

 \documentclass[twocolumn]{article} 

上述问题已解决,我们应用下一个命令

\documentclass[pdftex,twocolumn,epjc3]{svjour3} 

我们得到以下输出

编辑输出

我认为命令 \linebreak[0] 对 svjour3.cls 不起作用。

答案1

在此处输入图片描述

\documentclass[twocolumn]{article} 
\advance\textwidth20pt
\fussy
\begin{document}

Therefore, we conclude that 
$Reg_i=h(h(ID_i \|R_i \| HPW_i )  \bmod m), A_i=R_i\oplus HPW_i, B_i=h(ID_i 
\|R_i \|K), C_i=B_i\oplus h(ID_i\oplus R_i\oplus HPW_i)$,
which results in our conditions are satisfied by the assumptions and hence 
we can continue other steps. 


Therefore, we conclude that 
$\mathrm{Reg}% never math italic for multi-letter names
_i=h(h(ID_i \|R_i \|\linebreak[0]
 HPW_i )  \bmod m), A_i=R_i\oplus HPW_i, B_i=h(ID_i 
\|R_i \|K),\linebreak[0]
 C_i=B_i\oplus h(ID_i\oplus R_i\oplus HPW_i)$,
which results in our conditions are satisfied by the assumptions and hence 
we can continue other steps. 

\end{document}

相关内容