]> git.donarmstrong.com Git - lilypond.git/commitdiff
Regtest for fingering directions in directed/undirected contexts
authorDavid Kastrup <dak@gnu.org>
Sun, 10 Feb 2013 10:21:15 +0000 (11:21 +0100)
committerDavid Kastrup <dak@gnu.org>
Wed, 13 Feb 2013 22:10:21 +0000 (23:10 +0100)
input/regression/fingering-directions.ly [new file with mode: 0644]

diff --git a/input/regression/fingering-directions.ly b/input/regression/fingering-directions.ly
new file mode 100644 (file)
index 0000000..ba8d152
--- /dev/null
@@ -0,0 +1,32 @@
+\version "2.16.0"
+
+\header {
+  texidoc = "Fingering directions in directed and undirected contexts."
+}
+
+\layout { ragged-right= ##t }
+
+{
+  \relative c''
+  \new Voice {
+    \tempo "\\voiceTwo"
+    \voiceTwo
+    c2^5 <c^5>
+    c_5 <c_5>
+    c-5 <c-5>
+    \tempo "\\oneVoice"
+    \oneVoice
+    c^5 <c^5>
+    c_5 <c_5>
+    c-5 <c-5>
+  } \addlyrics {
+    \override LyricText . font-size = #-2
+    \override LyricText . font-series = #'bold
+    "c^5" "<c^5>"
+    "c_5" "<c_5>"
+    "c-5" "<c-5>"
+    "c^5" "<c^5>"
+    "c_5" "<c_5>"
+    "c-5" "<c-5>"
+  }
+}