summaryrefslogtreecommitdiff
path: root/input/regression/note-head-solfa.ly
blob: b4d24ca852036dd0df8d9975ec63c8307043a5db (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
\header {

  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.12.0"

fragment = {
  \key c \major
  \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 {
  \relative c' {
    \fragment
  }
}