将 LaTeX 分数项排版为更大的方程
我在 LaTeX 中有以下公式,基于 Fisher 精确测试。 (注意:需要使用 \binom
的 amsmath
包。)
\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:
I would like my text more readable, as in the following example:
(source: plosone.org)
What trickery can I use to get LaTeX to render my equation similarly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这可能就是您正在寻找的内容:
认为添加一个可能会很好参考:
LaTeX2e、Kopka & 指南达利,1995年
第 5.5 节微调数学
5.5.2 在公式中选择字体大小
在我的版本中,它位于第 141-142 页,但在亚马逊上缺货。我现在能找到的最近的互联网指针是这里
This may be what you're looking for:
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
对于分数,您还可以将连分数
\cfrac
与\left
和\right
结合使用。请查看此处。
For fraction you can also use continued fraction
\cfrac
in combination with\left
and\right
.Take a look here.
这是一个想法。
在序言中:
然后将方程更新为:
结果:
Here's one idea.
In Preamble:
Then update your equation to:
Results in:
以下行定义了三个分数命令,其大小介于 \displaystyle 和 \textstyle 之间,按大小递减顺序:
请参阅 此页面(如果需要进一步说明)。
The following lines define three fraction commands with sizes intermediate between \displaystyle and \textstyle, in order of decreasing size:
See this page if further explanation is needed.