]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/note-head-solfa.ly
* mf/feta-bolletjes.mf (overdone_heads): cleanup triangle
[lilypond.git] / input / regression / note-head-solfa.ly
1
2 \header {
3
4   texidoc = "With @code{Shape_note_heads_engraver}, the style of the
5 note head is adjusted according to the step of the scale, as measured
6 relative to the @code{tonic} property."
7
8 }
9 \version "2.5.1"
10
11 fragment = {
12   \key c \major
13   \set shapeNoteStyles = ##(triangle cross slash  triangle cross slash  triangle cross slash)
14   c d e f g a b c 
15   \set shapeNoteStyles = ##(do re mi fa #f la ti)
16   b a g f e d c 
17 }
18
19
20 \transpose c d 
21 \new Voice \with {
22   \remove "Note_heads_engraver"
23   \consists "Shape_note_heads_engraver"
24 } \relative {
25
26   \fragment
27 }
28