]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/note-head-solfa.ly
Update .ly files.
[lilypond.git] / input / regression / note-head-solfa.ly
index 1e5b776c39d38b68eee3164c10f3198010fae007..b4d24ca852036dd0df8d9975ec63c8307043a5db 100644 (file)
@@ -1,28 +1,22 @@
-
 \header {
 
-  texidoc = "With @code{Shape_note_heads_engraver}, the style of the
-note head is adjusted according to the step of the scale, as measured
-relative to the @code{tonic} property."
+  texidoc = "With @code{shapeNoteStyles}, the style of the note head
+is adjusted according to the step of the scale, as measured relative
+to the @code{tonic} property."
 
 }
-\version "2.5.1"
+\version "2.12.0"
 
 fragment = {
   \key c \major
-  \set shapeNoteStyles = ##(triangle cross slash  triangle cross slash  triangle cross slash)
-  c d e f g a b c 
-  \set shapeNoteStyles = ##(do re mi fa #f la ti)
-  b a g f e d c 
+  \set shapeNoteStyles = #'#(do re mi fa #f la ti)
+  c1 d e f g a b c d e f g a b c
+  c,,2 d e f g a b c d e f g a b c
+  c,,4 d e f g a b c d e f g a b c
 }
 
-
-\transpose c d 
-\new Voice \with {
-  \remove "Note_heads_engraver"
-  \consists "Shape_note_heads_engraver"
-} \relative {
-
-  \fragment
+\transpose c d {
+  \relative c' {
+    \fragment
+  }
 }
-