How do I split equations in LaTeX

  • Context: LaTeX 
  • Thread starter Thread starter S.P.P
  • Start date Start date
  • Tags Tags
    Latex Split
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 3K views
S.P.P
Messages
39
Reaction score
0
Couldn't think of a better place to post this. I'm writing a document in latex that has several very large equations in it. I can split them up so that they take up two or three lines using the \begin{split} command or \begin{align} command, but If I need to split a line that is contained within a braket, the closing braket does not show in the resulting .ps file, and I get all sorts of errors when I try run 'latex file.tex' saying that I'm missing the \right] braket. So how do I split equations with the opening braket on one line, and the closing braket on another?
 
Physics news on Phys.org
I've gotten around this problem in the past by inserting a "\right." at the end of the first line and a "\left." at the beginning of the second line. I believe these commands serve as dummy delimiters.
 
Thank you, that has sorted it out. :smile: