]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/spacing-grace.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / spacing-grace.ly
index e90388523c65f38d8f89e5219efff4aaff3987c5..99fda4aad7ba91ff499f07b07fbb19eacd103b11 100644 (file)
@@ -1,12 +1,27 @@
-
-\version "1.9.4"
-\header {
-  texidoc = "Grace note spacing. Should be tuned? "
+\header
+{
+  texidoc = "Grace note runs have their own spacing variables in
+  @code{Score.GraceSpacing}. So differing grace note lengths inside a
+  run are spaced accordingly. "
 }
-       
-\score {
- \notes \context Voice \relative c'' { \grace {  c16[ d] } c4 }
-  \paper { raggedright = ##t}
 
-}
+\version "2.19.21"
+
+\paper {  ragged-right = ##t }
+
+\relative
+{
+  c''4
+  \grace { c16  }
+  c
+  \grace { c16  }
+  d
+  \grace { c16 d e f }
+  c
+  \grace { c8 c16 d c8  }
+  c
+  \override Score.GraceSpacing.spacing-increment = #2.0
 
+  \grace { c4 c16 d16  }
+  c
+}