我有一个比页边距稍长的方程式。我不想拆分它,但我想知道是否可以让它更密集一些(类似于方程式本身的 setstretch)。
感谢任何帮助。
梅威瑟:
\documentclass[twocolumn]{article}
\usepackage{amssymb}
\begin{document}
example text example text example text example text example text example text example text example text example text example text example text example text
equation:
\begin{equation}
x^2 +y^2+z^2+w^2+\int_{\alpha\in \mathbb{R}} d\alpha f(x,y,z,w)\exp{-2y^2+z^2-w^2}
\end{equation}
\end{document}
答案1
您可以局部重新定义运算符周围的间距(标准 10pt 设置)
\thinmuskip=3mu
\medmuskip=4mu plus 2mu minus 4mu
\thickmuskip=5mu plus 5mu
如果没有例子就很难给出建议值。
压缩这个表达式以使其适合,这非常勉强。我想我会将其拆分或使用较小的字体,但是...
\documentclass[twocolumn]{article}
\usepackage{amssymb}
\begin{document}
example text example text example text example text example text example text example text example text example text example text example text example text
equation:
{\thinmuskip=2mu
\medmuskip=3mu plus 2mu minus 3mu
\thickmuskip=4mu plus 5mu minus 2mu
\begin{equation}
x^2 +y^2+z^2+w^2+\int\limits_{\alpha\in \mathbb{R}}\! d\alpha f(x,y,z,w)\exp{-2y^2+z^2-w^2}
\end{equation}}
\end{document}