]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/grace-part-combine.ly
* tex/GNUmakefile (TEX_FILES): add texinfo.cnf
[lilypond.git] / input / regression / grace-part-combine.ly
index db949d47ea0f64d24e4caeed9b8eff8a9f570f8f..1a4e4ab24905a97348a555cc35dcf430f955d85f 100644 (file)
@@ -1,21 +1,21 @@
 
-\version "1.9.4"
+\version "2.3.22"
 \header {
-    texidoc = "Partcombiner and grace notes can go together."
+    texidoc = "Grace notes may be put in a @code{partcombine}r."
 }
-    \paper { raggedright= ##t }
+
+\layout { raggedright= ##t }
 
 \score {
-    \new StaffGroup <<
-       \new Staff <<
-           \context Voice=one \partcombine Voice
-           \context Thread=one \notes \relative c'' {
+    \new Staff
+           \partcombine 
+             \relative c'' {
                c4 d e f  \grace f16 g1
            }
-           \context Thread=two \notes \relative c' {
+             \relative c' {
                c4 d e2  g1
            }
-       >>
-    >>
+       
+    
 }