]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/tablature-tie-spanner.ly
resolve merge
[lilypond.git] / input / regression / tablature-tie-spanner.ly
diff --git a/input/regression/tablature-tie-spanner.ly b/input/regression/tablature-tie-spanner.ly
new file mode 100644 (file)
index 0000000..bdcf14c
--- /dev/null
@@ -0,0 +1,31 @@
+\version "2.14.0"
+
+\header {
+  texidoc = "
+If a slur or a glissando follows a tie, the
+corresponding fret number is displayed in parentheses.
+"
+}
+
+music = {
+  c'4 ~ c'4 ( d'2 ) |
+  c'4 ~ c'4 \glissando d'2 |
+  c'4 ~ c'4 d'2 |
+  c'4 \glissando d'2. |
+}
+
+\score {
+  <<
+    \new Staff {
+      \new Voice {
+        \clef "G_8"
+        \music
+      }
+    }
+    \new TabStaff {
+      \new TabVoice {
+        \music
+      }
+    }
+  >>
+}