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