]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/dynamics-text-dynamics-context.ly
Imported Upstream version 2.16.0
[lilypond.git] / input / regression / dynamics-text-dynamics-context.ly
diff --git a/input/regression/dynamics-text-dynamics-context.ly b/input/regression/dynamics-text-dynamics-context.ly
new file mode 100644 (file)
index 0000000..18b1d5b
--- /dev/null
@@ -0,0 +1,35 @@
+\version "2.16.0"
+
+\header {
+  texidoc = "The @code{X-offset} of @code{DynamicText} grobs in a
+@code{Dynamics} context should be averaged over the center of
+@code{NoteColumn} grobs in the @code{DynamicText}'s @code{PaperColumn}.
+"
+}
+
+\score {
+  <<
+    \new PianoStaff <<
+      \new Staff = "up" {
+        \clef treble
+        \relative c' {
+          c4\p c c\mp c |
+          c4\mf c c\f c |
+          <<
+            \repeat unfold 8 c4
+            \new Dynamics = "dynamics" \with {
+              alignBelowContext = "up"
+            } {
+              s4\p s s\mp s |
+              s4\mf s s\f s
+            }
+          >>
+        }
+      }
+      \new Staff = "down" {
+        \clef bass
+        \repeat unfold 16 c4
+      }
+    >>
+  >>
+}