1\version "2.17.6"
2
3\header{
4
5  texidoc=" Between notes, there may be simple glissando lines.
6Here, the first two glissandi are not consecutive.
7
8The engraver does no time-keeping, so it involves some trickery to get
9<< @{ s8 s8 s4 @} @{ c4 \\gliss d4 @} >> working correctly.
10
11"
12}
13
14
15\layout{
16  line-width = 50.\mm
17  indent = 0
18}
19
20\new Staff \relative c''{
21  \override Glissando.breakable = ##t
22
23  %% gliss non gliss and
24  c4 \glissando d e \glissando f \glissando \break
25  %% consecutive
26  c \glissando d, \glissando e'
27  << { e8 \glissando g8 } \\
28     { \repeat unfold 4 d16 } >>
29  \override Glissando.style = #'zigzag
30  c4 \glissando c,, \glissando c' \glissando d
31}
32
33
34