]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/note-names-context.ly
resolve merge
[lilypond.git] / input / regression / note-names-context.ly
diff --git a/input/regression/note-names-context.ly b/input/regression/note-names-context.ly
new file mode 100644 (file)
index 0000000..f06b6e3
--- /dev/null
@@ -0,0 +1,37 @@
+\version "2.14.0"
+
+\header {
+
+  texidoc = "
+    NoteNames context should be close to the related notes,
+    and should not collide with the tempo markings.
+  "
+}
+
+\paper {
+  system-system-spacing
+    #'basic-distance = #10 % increase this value for more space
+}
+
+notes = \relative c {
+  c'4 c c c
+}
+
+mylyrics = \lyricmode {
+  \tempo "Allegro"
+  ly -- ric ly -- ric
+}
+
+\score {
+  <<
+    \new Voice = "voice" {
+      \repeat unfold 13 \notes
+    }
+    \context NoteNames  {
+      \repeat unfold 13 \notes
+    }
+    \new Lyrics \lyricsto "voice" {
+      \repeat unfold 13 \mylyrics
+    }
+  >>
+}