将 LaTeX 分数项排版为更大的方程

发布于 2024-08-29 06:14:35 字数 971 浏览 8 评论 0原文

我在 LaTeX 中有以下公式,基于 Fisher 精确测试。 (注意:需要使用 \binomamsmath 包。)

\begin{equation}
    P(i,j) = \sum_{x=|N(V_i) \cap V_j|}^{\min\{|V_j|, |N(V_i)|}
    \frac{ \binom{|V_j|}{x} \binom{|V - V_j|}{|N(V_i)| - x}}
    {\binom{|V|}{|N(V_i)|}}
\end{equation}

这会用非常小、难以阅读的文本呈现分数部分:

小文本分数方程

我想要更多我的文本可读,如以下示例所示:

带有可读文本的分数方程
(来源:plosone.org)

我可以使用什么技巧让 LaTeX 类似地渲染我的方程?

I have the following formula in LaTeX, based on Fisher's Exact Test. (NOTE: requires the use of the amsmath package for \binom.)

\begin{equation}
    P(i,j) = \sum_{x=|N(V_i) \cap V_j|}^{\min\{|V_j|, |N(V_i)|}
    \frac{ \binom{|V_j|}{x} \binom{|V - V_j|}{|N(V_i)| - x}}
    {\binom{|V|}{|N(V_i)|}}
\end{equation}

This renders the fraction portion with very small, difficult to read text:

equation with small text in fraction

I would like my text more readable, as in the following example:

equation with readable text in fraction
(source: plosone.org)

What trickery can I use to get LaTeX to render my equation similarly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

晚雾 2024-09-05 06:14:35

这可能就是您正在寻找的内容:

\begin{equation}
    P(i,j) = \sum_{x=|N(V_i) \cap V_j|}^{\min\{|V_j|, |N(V_i)|} 
    \frac{\displaystyle \binom{|V_j|}{x} \binom{|V - V_j|}{|N(V_i)| - x}}
    {\displaystyle \binom{|V|}{|N(V_i)|}}   
\end{equation}

格式化方程


认为添加一个可能会很好参考:

LaTeX2e、Kopka & 指南达利,1995年
第 5.5 节微调数学
5.5.2 在公式中选择字体大小

在我的版本中,它位于第 141-142 页,但在亚马逊上缺货。我现在能找到的最近的互联网指针是这里

This may be what you're looking for:

\begin{equation}
    P(i,j) = \sum_{x=|N(V_i) \cap V_j|}^{\min\{|V_j|, |N(V_i)|} 
    \frac{\displaystyle \binom{|V_j|}{x} \binom{|V - V_j|}{|N(V_i)| - x}}
    {\displaystyle \binom{|V|}{|N(V_i)|}}   
\end{equation}

Formatted equation


Thought it might be good to add a reference:

A Guide to LaTeX2e, Kopka & Daly, 1995
Section 5.5 Fine-Tuning Mathematics
5.5.2 Selecting font size in formulas

In my edition, it's on pp 141-142, but this is out of stock on Amazon. The nearest Internet pointer I can find just now is here

葬花如无物 2024-09-05 06:14:35

对于分数,您还可以将连分数 \cfrac\left\right 结合使用。

请查看此处

For fraction you can also use continued fraction \cfrac in combination with \left and \right.

Take a look here.

左耳近心 2024-09-05 06:14:35

这是一个想法。

在序言中:

\def\mathLarge#1{\mbox{\LARGE $#1$}}

然后将方程更新为:

\begin{equation}
    P(i,j) = \sum_{x=|N(V_i) \cap V_j|}^{\min\{|V_j|, |N(V_i)|}  
    \mathLarge{
        \frac{ \binom{|V_j|}{x} \binom{|V - V_j|}{|N(V_i)| - x}}
        {\binom{|V|}{|N(V_i)|}}
    }
\end{equation}

结果:

alt text

Here's one idea.

In Preamble:

\def\mathLarge#1{\mbox{\LARGE $#1$}}

Then update your equation to:

\begin{equation}
    P(i,j) = \sum_{x=|N(V_i) \cap V_j|}^{\min\{|V_j|, |N(V_i)|}  
    \mathLarge{
        \frac{ \binom{|V_j|}{x} \binom{|V - V_j|}{|N(V_i)| - x}}
        {\binom{|V|}{|N(V_i)|}}
    }
\end{equation}

Results in:

alt text

岁吢 2024-09-05 06:14:35

以下行定义了三个分数命令,其大小介于 \displaystyle 和 \textstyle 之间,按大小递减顺序:

\newcommand{\sdfrac}[2]{\mbox{\small$\displaystyle\frac{#1}{#2}$}}
\newcommand{\fdfrac}[2]{\mbox{\footnotesize$\displaystyle\frac{#1}{#2}$}}
\newcommand{\ltfrac}[2]{\mbox{\large$\frac{#1}{#2}$}}

请参阅 此页面(如果需要进一步说明)。

The following lines define three fraction commands with sizes intermediate between \displaystyle and \textstyle, in order of decreasing size:

\newcommand{\sdfrac}[2]{\mbox{\small$\displaystyle\frac{#1}{#2}$}}
\newcommand{\fdfrac}[2]{\mbox{\footnotesize$\displaystyle\frac{#1}{#2}$}}
\newcommand{\ltfrac}[2]{\mbox{\large$\frac{#1}{#2}$}}

See this page if further explanation is needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文