1\version "2.19.2" 2 3\header { 4 texidoc = " 5If a slur or a glissando follows a tie, the 6corresponding fret number is displayed in parentheses. 7" 8} 9 10music = { 11 c'4 ~ 4 ( d'2 ) | 12 c'4 ~ 4 \glissando d'2 | 13 c'4 ~ 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} 32