]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
Merge branch '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  texidocde = "
21  In Werken des fürhen 20. Jahrhundert, angefangen mit Schönberg, Berg
22  und Webern (die zweite Wiener Schule), wird jeder Ton der 
23  Zwölftonleiter als gleichwertig erachtet, ohne hierarchische
24  Ordnung.  Deshalb wird in dieser Musik für jede Note ein Versetzungszeichen
25  ausgegeben, auch für unalterierte Tonhöhen, um das neue Verständnis
26  der Musiktheorie und Musiksprache zu verdeutlichen.
27  
28  Dieser Schnipsel zeigt, wie derartige Notationsregeln zu erstellen sind.
29  "
30  
31 doctitlede = "Versetzungszeichen für jede Note im Stil der Zwölftonmusik"
32
33   lsrtags = "pitches"
34   texidoc = "In early 20th century works, starting with Schoenberg,
35 Berg and Webern (the \"Second\" Viennese school), every pitch in the
36 twelve-tone scale has to be regarded as equal, without any hierarchy
37 such as the classical (tonal) degrees.  Therefore, these composers
38 print one accidental for each note, even at natural pitches, to
39 emphasize their new approach to music theory and language.
40
41 This snippet shows how to achieve such notation rules. 
42 "
43
44   doctitle = "Dodecaphonic-style accidentals for each note including naturals"
45 } % begin verbatim
46
47
48 \score {
49   \new Staff {
50     #(set-accidental-style 'dodecaphonic)
51     c'4 dis' cis' cis'
52     c'4 dis' cis' cis'
53     c'4 c' dis' des'
54   }
55   \layout {
56     \context {
57     \Staff
58     \remove "Key_engraver"
59     }
60   }
61 }