]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/spacing-grace.ly
MusicXML: src-dir rather than srcdir.
[lilypond.git] / input / regression / spacing-grace.ly
index 60c7c96bbe0630e0a69dca303e6ce9b4b69df7d5..d135c189a728142beae993a9531e14199ddcdaaa 100644 (file)
@@ -1,14 +1,27 @@
-
-\version "2.6.0"
-\header {
-  texidoc = "Grace note spacing.  "
+\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. "
 }
 
-\layout { raggedright = ##t}
-
-
-\context Voice \relative c'' { \grace {  c16[ d] } c4 }
-
-
-
-
+\version "2.11.51"
+
+\paper {  ragged-right = ##t }
+
+\relative c''
+{
+  c4
+  \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
+}