]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-glissando.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / tablature-glissando.ly
1 \version "2.16.0"
2
3 \header{ texidoc = "Glissando lines in tablature have the right slope."
4        }
5
6 \paper { ragged-right = ##f } % strech the staff to make glissando lines visible
7
8 glissandotest = \relative c {
9    c4\5 \glissando d\5 \glissando e\5 f\5 |
10    c4\5 \glissando d\5 \glissando c2\5 |
11    c4\5 \glissando c'\4 c\4 \glissando c,\5
12   \bar "|."
13 }
14
15 \context StaffGroup <<
16   \context Staff <<
17     \clef "G_8"
18     \glissandotest
19   >>
20   \context TabStaff <<
21     \glissandotest
22   >>
23 >>