% Having a soprano voice splitting into two (singing des - bes),
% and an alto voice also splitting into two (singing bes - f).
% However, the two arpeggio brackets overlap
\version "2.15.28"
\new Staff <<
\new Voice { \relative c'' { \arpeggioBracket
\key des \major
1\arpeggio
}
}
\new Voice { \r
% Breathe mark collides with natural
% when using ledger lines
% and more than one stave
\version "2.15.28"
<<
\new Staff
\relative c'' {
\key des \major
c4 bes bes' bes
}
\new Staff
\relative c' {
\clef bass \key des \major
es4 des2 \breathe d4
}
>>
__