]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/expressive/glissando.ly
ec92a4c229c2cf41cc571375cd53990740b08efa
[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
8 The engraver does no time-keeping, so it involves some trickery to get
9 @code{>} working correctly. 
10 " }
11
12 \layout{
13   line-width = 50.\mm
14   indent = 0
15 }
16
17 \new Staff \relative c''{
18   \override Glissando #'breakable = ##t
19   
20   %% gliss non gliss and 
21   c4 \glissando d e \glissando f \glissando \break
22   %% consecutive 
23   c \glissando d, \glissando e'
24   << { \stemUp e8 \glissando g8 }
25      \context Voice = VB {\stemDown \repeat unfold 4 d16 } >>
26   \override Glissando  #'style = #'zigzag
27   c4 \glissando c,, \glissando c' \glissando d
28 }
29