Hi Ben
I would like to suggest three (more or less sophisticated) solutions for
your problem:
- you could insert additional line breaks to increase the distance between
notes
- decrease the gap between note and glissando:
\once \override Glissando#'gap = #0.1 (standard value is 0.5)
- (my favourite) use skips as spacers between the notes:
c4 \glissando s8 d4*1/2
you can even shift both notes symmetrically (see code bellow)
Stefan @Munich
% %%%
\version "2.8.3"
\layout {
indent = 0\cm
ragged-right=##t
}
upper = \relative c' {
c4 d4*3/4 c4 \glissando s8 d4*3/4
c4 d c4 \glissando s8 d4*1/2
}
lower = \relative c' {
c4 c c c c c c c
}
\score {
\new PianoStaff <<
\new Staff = "upper" \upper
\new Staff = "lower" \lower
>>
\layout {
}
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user