Possible Duplicate:
How do I break a long equation over lines?

How can I break long formulas in LyX into two (or more) lines? I know how to write several lines of equations in one "math box" but I'm looking for a solution to break lines even in the middle of a parenthesis. I'm using LyX 1.6.4 and currently, when the formula is too big, it doesn't do anything (it just doesn't print the last segment of it, which is "beyond" the page). Is this possible in LyX?

link|improve this question

Similar question: stackoverflow.com/questions/1578127/… – lumbric Apr 4 at 9:47
feedback

closed as exact duplicate by casperOne Apr 5 at 19:55

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 1 down vote accepted

Yes, but you have to do it by hand.

Check out:

  1. http://stackoverflow.com/questions/2860145/question-about-writing-equations-in-latex
  2. http://stackoverflow.com/questions/1436529/latex-multiline-equations

Lyx has an "Insert -> Math -> AMS multline environment" control, or you can use the solutions recommended above by entering Latex directly using the Insert Latex control.

link|improve this answer
The AMS Multiline environment works, but not in the middle of a parenthesis, which is surrounding most of my equation. Is there a solution that does that? – Amir Rachum May 25 '10 at 13:21
@Amir: Insert a Latex code block directly using "Insert -> TeX Code" (Alt-L). – Charles Stewart May 25 '10 at 13:28
1  
@Amir: if you mean '\left('-type self-sizing parentheses, then you cannot really use them with 'multline'. Either close with '\right.' before line-break (and reopen with '\left.') which can lead to parentheses of different size, or size them yourself using '\big(', '\Big(', '\Bigg(', etc. – Aniko May 25 '10 at 13:52
@Aniko @Charles Stewart Thanks, that's exactly what I needed! – Amir Rachum May 25 '10 at 14:06
feedback

You might want to try the breqn package. It provides automatic line breaking for big formulas. This way there is no need for manually fixing your delimiters or choosing the break points. Of course, this is no actual LyX functionality but it does exactly what you want.

link|improve this answer
For some reason MikTeX can't install this automatically. What do I do with the dtx file I downloaded from your link? – Amir Rachum May 26 '10 at 20:53
@Amir There is an installation guide provided in both the README and the actual .dtx file, these might be a good start :). My MikTeX installed the mh bundle correcty by the way, so it should be possible without having to resort to manual installation. – Pieter May 26 '10 at 21:10
Installed it, added \usepackage{breqn} to latex preamble and it doesn't do anything. I didn't understand from the document if I need to use any special command in the document. – Amir Rachum May 26 '10 at 21:23
@Amir You have to replace the math environments LyX used for you with dmath environments. And make sure you use your delimiters and operators properly. – Pieter May 27 '10 at 5:46
feedback

If you include \usepackage{breqn} in the LyX "LaTeX Preamble" (plus the following code) then the standard "equation" environment (Displayed Formula) will automatically break like you want.

% Add support for automatic equation breaking
\gdef\wrap@breqn@environ#1#2{
    \expandafter\let\csname breqn@oldbegin@#1\expandafter\endcsname\csname #1\endcsname
    \expandafter\let\csname breqn@oldend@#1\expandafter\endcsname\csname end#1\endcsname
    \expandafter\gdef\csname breqn@begin@#1\endcsname{%
        \expandafter\let\csname #1\expandafter\endcsname\csname breqn@oldbegin@#1\endcsname%
        \begin{#2}%
    }
    \expandafter\gdef\csname breqn@end@#1\endcsname{%
        \expandafter\let\csname end#1\expandafter\endcsname\csname breqn@oldend@#1\endcsname%
        \end{#2}%
        \expandafter\let\csname #1\expandafter\endcsname\csname breqn@begin@#1\endcsname%
        \expandafter\let\csname end#1\expandafter\endcsname\csname breqn@end@#1\endcsname%
    }
    \expandafter\let\csname #1\expandafter\endcsname\csname breqn@begin@#1\endcsname
    \expandafter\let\csname end#1\expandafter\endcsname\csname breqn@end@#1\endcsname
}
\wrap@breqn@environ{equation}{dmath}
\wrap@breqn@environ{equation*}{dmath*}
link|improve this answer
I just tried this in Lyx and it doesn't do anything... line still goes beyond right margin. – Dmitri Nesteruk Apr 22 at 14:44
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.