Related to the somewhat confused discussions in Issue 343, I have
updated both
the examples in the manual to actually show what they are supposed to
show
(not only the second one).
However, there seems to be some real bugs here as well.
When I try the following example with version 2.10.25, I do get three
score lines, as desired, but when I try the same example in 2.10.29 or
2.11.29, the first \break is ignored and I only get two lines.
\layout{
\context{
\Voice
\remove Forbid_line_break_engraver
}
}
global = {s2 \bar "" \break s4 | s4 \bar "" \break s2 }
\relative c' <<
\new Staff <<
\global
{
\time 3/4
c4 c c | c c c |
}
>>
\new Staff <<
\global
{
\time 3/4
\set Staff.timeSignatureFraction = #'(10 . 8)
\compressMusic #'(3 . 5) {
\repeat unfold 2 { c8[ c c] }
\repeat unfold 2 { c8[ c] }
| c4. c4. \times 2/3 { c8 c c } c4
}
}
>>
>>
/Mats