]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix 960 -- Add a regression test demonstrating dot alignments
authorCarl Sorensen <c_sorensen@byu.edu>
Mon, 17 Jan 2011 23:34:08 +0000 (16:34 -0700)
committerCarl Sorensen <c_sorensen@byu.edu>
Mon, 17 Jan 2011 23:35:20 +0000 (16:35 -0700)
input/regression/tablature-dot-placement.ly [new file with mode: 0644]

diff --git a/input/regression/tablature-dot-placement.ly b/input/regression/tablature-dot-placement.ly
new file mode 100644 (file)
index 0000000..2665f21
--- /dev/null
@@ -0,0 +1,29 @@
+\version "2.13.46"
+
+\header {
+
+  texidoc = "
+With full notation, the dots on the tablature heads should
+respect two-digit fret numbers.
+"
+
+}
+
+myMusic = \relative c'  {
+  <f\3 a c>4.
+  <f\3 g d'>4.
+  <f\3 a d>4
+}
+
+\score {
+  <<
+    \new Staff {
+      \clef "treble_8"
+      \myMusic
+    }
+    \new TabStaff {
+      \tabFullNotation
+      \myMusic
+    }
+  >>
+}