]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/accidental-contemporary.ly
145c96a9872e48bdb64382fbb21b9f198cbd579a
[lilypond.git] / input / regression / accidental-contemporary.ly
1 \version "2.11.57"
2 \header {
3
4 texidoc = "Several automatic accidental rules
5 aim to reproduce contemporary music notation
6 practices:
7 @itemize
8 @item
9 'dodecaphonic style prints accidentals on every
10 note (including naturals)
11 @item
12 'neo-modern style prints accidentals on every note
13 (not including naturals), except when a note is
14 immediately repeated
15 @item
16 'neo-modern-cautionary style acts like neo-modern,
17 adding cautionary parentheses around accidentals.
18 @end itemize
19 "
20
21 }
22
23 \layout { ragged-right = ##t }
24
25 \relative c'' {
26   #(set-accidental-style 'dodecaphonic)
27   gis4 a g gisis
28   #(set-accidental-style 'neo-modern)
29   gis8 a gis gis g' gis gis,, a'
30   #(set-accidental-style 'neo-modern-cautionary)
31   eis fis eis eis g2
32 }
33