我想输入这样的内容:
\begin{equation}
\begin{split}
\left( ba ba ba \\
ba ba ba \right)
\end{split}
\end{equation}
但是它包含错误;我认为这是因为\left(
和\right)
应该在同一行。我怎么才能在不同的行中输入这样的内容?我认为解决方案之一是用 和 替换和\left(
。但我对此并不满意,因为与 相比 不够“大” 。\right)
\Big(
\Big)
\Big(
\left(
答案1
如果希望括号高度相同,请使用\vphantom
和组合\left( ... \right. \\ \left. ... \right)
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{split}
\left( \int_1^2 ba ba \mathrm da \right. \\
\left. ba ba ba \vphantom{\int_1^2} \right)% use height of \int
\end{split}
\end{equation}
\end{document}
答案2
尝试这个:
\documentclass{minimal}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{split}
\left( ba ba ba \right. \\
\left. ba ba ba \right)
\end{split}
\end{equation}
\end{document}
您说得对,\left
和\right
应该在同一行。