答案1
\displaystyle
在 前面添加命令\int
。
\documentclass{article}
\begin{document}
\[
f_{\Theta | X}(\theta | x) = \frac{f_{\Theta}(\theta) p_{X|\Theta}(x\,|\,\theta)}{\displaystyle\int f_{\Theta}(\theta ') p_{X|\Theta}(x\,|\,\theta ') \, d\theta '}
\]
\end{document}
而且,这根本就不相关,但是你应该使用\[...\]
显示数学模式,而不是$$...$$
。
答案2
您可以尝试一下 pkg nccmath
,这里有一个\medint
有用的命令
\documentclass{article}
\usepackage{nccmath}
\begin{document}
\[
f_{\Theta | X}(\theta | x) = \frac{f_{\Theta}(\theta) p_{X|\Theta}(x\,|\,\theta)}%
{\medint\int f_{\Theta}(\theta ') p_{X|\Theta}(x\,|\,\theta ') \, d\theta '}
\]
\end{document}
答案3
这只是对之前的好答案的补充:
- 用于
empheq
获取带颜色的框公式; - 使用
\mid
而不是\,|\,
(按照用户@Mico 的建议)它会生成相等的左右空白空间; - 和这个关联选择你喜欢的背景颜色http://latexcolor.com/。
\documentclass[12pt,notitlepage]{book}
\usepackage{mathtools,amssymb}
\usepackage{empheq}
\usepackage[x11names]{xcolor}
\definecolor{lightgray}{rgb}{0.83, 0.83, 0.83}
\begin{document}
\begin{empheq}[box=\fcolorbox{lightgray}{lightgray}]{align}
f_{\Theta \mid X}&=\frac{f_{\Theta}(\theta) p_{X\mid\Theta}(x\mid\theta)}{\displaystyle \int f_{\Theta}(\theta') p_{X|\Theta}(x\mid\theta') \, d\theta'}
\end{empheq}
\end{document}