ConTeXt:并排的数字公式

ConTeXt:并排的数字公式

在 ConTeXt 中,我们可以使用 将公式并排放置\startformulas…\stopformulas

\starttext
\placeformula
\startformulas
  \startformula
    \startalign[number=auto]
      \NC a \NC= b \NR
      \NC a \NC= b \NR
    \stopalign
  \stopformula
  \startformula
    \startalign[number=auto]
      \NC a \NC= b \NR
      \NC a \NC= b \NR
    \stopalign
  \stopformula
\stopformulas
\stoptext

根据这是 2006 年的 MyWay(第 6 页)并排编号公式应该像上面一样工作。但我得到了以下输出:

公式编号

如何将方程式并排放置并且使编号不与下一个方程式冲突?

答案1

解决这个问题的一种方法似乎是columns环境。尽管标记不是那么具有表现力,但它可以防止数字与下一个公式发生冲突。

\starttext
\startcolumns
  \placeformula
  \startformula
    \startalign[number=auto]
      \NC a \NC= b \NR
      \NC a \NC= b \NR
    \stopalign
  \stopformula
  \placeformula
  \startformula
    \startalign[number=auto]
      \NC a \NC= b \NR
      \NC a \NC= b \NR
    \stopalign
  \stopformula
\stopcolumns
\stoptext

相关内容