]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-tie-spanner.ly
Imported Upstream version 2.16.0
[lilypond.git] / input / regression / tablature-tie-spanner.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "
5 If a slur or a glissando follows a tie, the
6 corresponding fret number is displayed in parentheses.
7 "
8 }
9
10 music = {
11   c'4 ~ c'4 ( d'2 ) |
12   c'4 ~ c'4 \glissando d'2 |
13   c'4 ~ c'4 d'2 |
14   c'4 \glissando d'2. |
15 }
16
17 \score {
18   <<
19     \new Staff {
20       \new Voice {
21         \clef "G_8"
22         \music
23       }
24     }
25     \new TabStaff {
26       \new TabVoice {
27         \music
28       }
29     }
30   >>
31 }