两栏试卷中的长方程式

两栏试卷中的长方程式

我正在写一篇需要两列布局的论文。我有一个相当长的方程式,幸运的是,它太长了,无法放在一列中。这是我目前的解决方案:

\begin{equation}
  \label{simpleRule}
    \frac{S=<R,A,O>, P\in AFP (O), <R,A,P,E>\in Observed}{S\models \diamondsuit E} 
\end{equation}

有什么想法可以使其适合两列布局吗?

答案1

您可以使用包\splitrule的宏mathtools将分子项拆分为两部分。在下面的示例中,第一个方程就是这么做的。在第二个方程中,我建议再进行一些修改;您可以根据需要采用它们。

在此处输入图片描述

\documentclass[a4paper,twocolumn]{article}
\usepackage{mathtools}
\begin{document}
With just \texttt{\textbackslash splitrule} applied:
\begin{equation}\label{simpleRule}
    \frac{\splitfrac{S=<R,A,O>, P\in AFP (O),}
           { <R,A,P,E>\in Observed}}
        {S\models \diamondsuit E}
\end{equation}
With a few more modifications applied:
\begin{equation}\label{notsosimpleRule}
    \frac{\splitfrac{S=\langle R,A,O\rangle, P\in \textit{AFP} (O),}
           { \langle R,A,P,E \rangle \in \textit{Observed}}}
        {S\models \diamondsuit E}
\end{equation}
\end{document}

最后,我不得不说,第二个尖括号中的字母构成了一个非常不愉快的单词——而且很可能完全让人分心。你能想出四个字母的不同顺序或完全不同的四个字母组合吗?

相关内容