如何将方程式恢复为双列模式?

如何将方程式恢复为双列模式?

如图所示,如何将方程式恢复为双列模式?

\documentclass[twocolumn]{ltxdoc}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\sum_{q_\mathrm{tot}=0}^{Q_A+Q_B-2}\sum_{q_A=0}^{q_\mathrm{tot}}{\textstyle\binom{Q_A-1}{q_A}\binom{Q_B-1}{q_B}}x^{q_\mathrm{tot}},
\end{equation}

$ cypher1 = MATCH (c:Product)-[r1:requiredProcess]->(d:Process) where c.ProductName = 'Product1' WITH COUNT(DISTINCT(d)) as number RETURN 'Process Number:'
$
where $Q_A=q_A+N_A$ and $Q_B=q_B+N_B$.
\end{document}

在此处输入图片描述

答案1

我希望这种代码能够回答您的问题。

\documentclass[twocolumn]{ltxdoc}
\usepackage{amsmath}
\usepackage{verbatim}
\usepackage{lipsum}
\usepackage[margin=1in]{geometry}
\begin{document}
\lipsum[3][1]
\begin{equation}
\sum_{q_{\mathrm{tot}=0}}^{Q_A+Q_B-2}\sum_{q_A=0}^{q_{\mathrm{tot}}}{\binom{Q_A-1}{q_A}\binom{Q_B-1}{q_B}}x^{q_{\mathrm{tot}}}
\end{equation}
 
\begin{verbatim}
  cypher1 = MATCH (c:Product)-
  [r1:requiredProcess]->(d:Process)
  where c.ProductName 
  = 'Product1' WITH COUNT(DISTINCT(d))
  as number RETURN 'Process Number:'
\end{verbatim}

where $Q_A=q_A+N_A$ and $Q_B=q_B+N_B$.
\end{document}

在此处输入图片描述

相关内容