1\version "2.19.21"
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
8glissandotest = \relative {
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>>
24