]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/note-head-solfa.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / input / regression / note-head-solfa.ly
1 \header {
2
3   texidoc = "With @code{shapeNoteStyles}, the style of the note head
4 is adjusted according to the step of the scale, as measured relative
5 to the @code{tonic} property."
6
7 }
8 \version "2.16.0"
9
10 fragment = {
11   \key c \major
12   \set shapeNoteStyles = ##(do re mi fa sol la ti)
13   c1 d e f g a b c d e f g a b c
14   c,,2 d e f g a b c d e f g a b c
15   c,,4 d e f g a b c d e f g a b c
16 }
17
18 \transpose c d {
19   \relative c' {
20     \fragment
21   }
22 }