Hello,

I have a part for voice where both hands should play glissandi
alternatively for some measures. So when one glissando stops the other just
started. It looks like as Lilypond avoids a line break in a glissando. The
composer added a lot of thes measures. Unfortunately \break doesn't cause a
line break.

Each staff for itself is set fine by Lilypond. How can I combine both
staves?

Best regards
Helge

\version "2.18.0"
\language "deutsch"

\header {
  title = "MAGYAR KÉPEK"
  subtitle = "Melódia"
  composer = "Bela Bartók"
}

upper = \relative c'' {
  \key as \minor  \time 3/4

  ges4\glissando s s |  as'' des,,, des'|

  \repeat unfold 10 {
    ges,4\glissando s s |  as'' des,,, des'|
  }
}

lower = \relative c {
  \key as \minor  \time 3/4  \clef bass

  r4 des  des'  |

  \repeat unfold 11 {
    ges,,\glissando s s |  as'' des,, des' |
  }
}

\score {
  \new PianoStaff << \upper \lower >>
}

\markup { "upper hand" }
\score { \upper }
\markup { "lower hand" }
\score { \lower }
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to