]> git.donarmstrong.com Git - lilypond.git/blob - input/new/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
Merge master into nested-bookparts
[lilypond.git] / input / new / dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
1 \version "2.11.62"
2
3 \header {
4   lsrtags = "pitches"
5   texidoc = "In early 20th century works, starting with Schoenberg,
6 Berg and Webern (the \"Second\" Viennese school), every pitch in the
7 twelve-tone scale has to be regarded as equal, without any hierarchy
8 such as the classical (tonal) degrees.  Therefore, these composers
9 print one accidental for each note, even at natural pitches, to
10 emphasize their new approach to music theory and language.
11
12 This snippet shows how to achieve such notation rules. 
13 "
14
15   doctitle = "Dodecaphonic-style accidentals for each note including naturals"
16 }
17
18 \score {
19   \new Staff {
20     #(set-accidental-style 'dodecaphonic)
21     c'4 dis' cis' cis'
22     c'4 dis' cis' cis'
23     c'4 c' dis' des'
24   }
25   \layout {
26     \context {
27     \Staff
28     \remove "Key_engraver"
29     }
30   }
31 }