]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/chord-names-in-grand-staff.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / chord-names-in-grand-staff.ly
diff --git a/input/regression/chord-names-in-grand-staff.ly b/input/regression/chord-names-in-grand-staff.ly
new file mode 100644 (file)
index 0000000..528a2f0
--- /dev/null
@@ -0,0 +1,29 @@
+\version "2.14.0"
+
+\header {
+
+  texidoc = "
+GrandStaff contexts accept chord names.  The chord name in this
+example should be printed above the top staff.
+"
+}
+
+\score {
+   \new GrandStaff
+   <<
+    \chords {
+      f1
+    }
+    \new Staff {
+      \relative c'' {
+        a4 a a a
+      }
+    }
+    \new Staff {
+      \clef "bass"
+      \relative c {
+        a4 a a a
+      }
+    }
+   >>
+}