]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   doctitlees = "Alteraciones de estilo dodecafónico para todas las notas, incluidas las naturales"
7   texidoces = "
8 En las obras de principios del s.XX, empezando por Schoenberg, Berg y
9 Webern (la \"Segunda\" escuela de Viena), cada nota de la escala de
10 doce tonos se debe tratar con igualdad, sin ninguna jerarquía como los
11 grados clásicos tonales.  Por tanto, estos compositores imprimen una
12 alteración accidental para cada nota, incluso en las notas naturales,
13 para enfatizar su nuevo enfoque de la teoría y el lenguaje musicales.
14
15 Este fragmento de código muestra cómo conseguir dichas reglas de
16 notación.
17
18 "
19
20
21   lsrtags = "pitches"
22   texidoc = "In early 20th century works, starting with Schoenberg,
23 Berg and Webern (the \"Second\" Viennese school), every pitch in the
24 twelve-tone scale has to be regarded as equal, without any hierarchy
25 such as the classical (tonal) degrees.  Therefore, these composers
26 print one accidental for each note, even at natural pitches, to
27 emphasize their new approach to music theory and language.
28
29 This snippet shows how to achieve such notation rules. 
30 "
31
32   doctitle = "Dodecaphonic-style accidentals for each note including naturals"
33 } % begin verbatim
34
35 \score {
36   \new Staff {
37     #(set-accidental-style 'dodecaphonic)
38     c'4 dis' cis' cis'
39     c'4 dis' cis' cis'
40     c'4 c' dis' des'
41   }
42   \layout {
43     \context {
44     \Staff
45     \remove "Key_engraver"
46     }
47   }
48 }