]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add regression test for issue 1386 tablature harmonic ties
authorCarl Sorensen <c_sorensen@byu.edu>
Tue, 14 Dec 2010 23:43:11 +0000 (16:43 -0700)
committerCarl Sorensen <c_sorensen@byu.edu>
Tue, 14 Dec 2010 23:43:11 +0000 (16:43 -0700)
input/regression/tablature-harmonic-tie.ly [new file with mode: 0644]

diff --git a/input/regression/tablature-harmonic-tie.ly b/input/regression/tablature-harmonic-tie.ly
new file mode 100644 (file)
index 0000000..22952d6
--- /dev/null
@@ -0,0 +1,18 @@
+\version "2.13.42"
+
+\header {
+  \texidoc = "
+When a harmonic note is tied in tablature, neither the fret number
+nor the harmonic brackets for the second note appear in the tablature.
+"
+}
+
+music =  \relative c' {
+  s2.  <d\4\harmonic>4 ~ |
+  <d\4\harmonic>1 ~ |  % by default, tied harmonic is parenthesized
+}
+
+\new StaffGroup <<
+  \new Staff  { \clef "G_8" \music }
+  \new TabStaff  { \clef "moderntab" \music }
+>>