在 LaTeX 数学中,当括号在行之间拆分时,如何使括号匹配高度?
考虑以下示例
\begin{equation}
\begin{split}
f = & \left( \frac{a}{b} + \right. \\
& \left. c \right) + d
\end{split}
\end{equation}
在结果中,第一行的左括号非常大,因为里面有分数。在第二行中,由于没有分数,因此括号很小。
如何使第二行的高度与第一行的高度相匹配?
Consider the following example
\begin{equation}
\begin{split}
f = & \left( \frac{a}{b} + \right. \\
& \left. c \right) + d
\end{split}
\end{equation}
In the result, the left parenthesis on the first line is very large, because of the fraction inside. In the second line, since there is no fraction, the parenthesis is small.
How can I make the one on the second line match the one on the first line in height?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您应该使用
\vphantom
,它使垂直空间等于其参数,并且没有水平空间:(我建议使用
\vphantom
而不是\phantom
这种情况是因为\phantom
添加了您不需要的水平空间。)有关排版数学的很多好建议,请查看 数学模式,作者:Herbert Voß。
You should use
\vphantom
, it makes a vertical space equal to its argument and no horizontal space:(I recommend
\vphantom
over\phantom
in this case because\phantom
adds horizontal space that you don't need.)For a lot of great advice on typesetting mathematics, have a look at Math mode by Herbert Voß.
哦。这是 \phantom{} 命令
Oh. It's the \phantom{} command
您还可以使用 \big( \big) 专门设置大小。
顺序为 (, \big(, \Big(, \bigg(, \Bigg() )以增加大小。
You can also use \big( \big) to set the size specifically.
The order goes (, \big(, \Big(, \bigg(, \Bigg( for increasing bigness.
我认为您想使用
\vphantom{}
命令I think you want to use the
\vphantom{}
command