1\header {
2
3  texidoc = "With @code{shapeNoteStyles}, the style of the note head
4is adjusted according to the step of the scale, as measured relative
5to the @code{tonic} property."
6
7}
8\version "2.16.0"
9
10fragment = {
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}
23