]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/expressive/glissando.ly
LSR update.
[lilypond.git] / input / lsr / expressive / glissando.ly
1 \version "2.10.12"
2
3 \header { texidoc = "
4 Between notes, there may be simple glissando lines.  Here, the first
5 two glissandi are not consecutive.
6
7 The engraver does no time-keeping, so it involves some trickery to get
8 << @{ s8 s8 s4 @} @{ c4 \gliss d4 @} >> working correctly.
9 " }
10
11 \layout{
12   line-width = 50.\mm
13   indent = 0
14 }
15
16 \new Staff \relative c''{
17   \override Glissando #'breakable = ##t
18   
19   %% gliss non gliss and 
20   c4 \glissando d e \glissando f \glissando \break
21   %% consecutive 
22   c \glissando d, \glissando e'
23   << { \stemUp e8 \glissando g8 }
24      \context Voice = VB {\stemDown \repeat unfold 4 d16 } >>
25   \override Glissando  #'style = #'zigzag
26   c4 \glissando c,, \glissando c' \glissando d
27 }
28