0
\documentclass[a4paper,12pt]{article}

\usepackage{amsmath}

\begin{document}

\begin{align}
A = \max\left{B \\
    & C \right}. 
\end{align} 

\end{document}

My expressions B and C are so long that they need to be on different lines. But then TeX doesn't accept left and right braces being on different lines. What can I do?

boaten
  • 2,419

1 Answers1

0

Braces go by pairs, you have to close or open a fake one to balance them before change line.

enter image description here

\documentclass[a4paper,12pt]{article}

\usepackage{amsmath}

\begin{document}

\begin{align}
A = \max\left\{B\right. \\
    & \left.C \right\}. 
\end{align} 

\end{document}
Tarass
  • 16,912