]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
LSR: Update.
[lilypond.git] / input / lsr / dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.12.3"
4
5 \header {
6   lsrtags = "pitches"
7
8   doctitlees = "Alteraciones de estilo dodecafónico para todas las notas, incluidas las naturales"
9   texidoces = "
10 En las obras de principios del s.XX, empezando por Schoenberg, Berg y
11 Webern (la \"Segunda\" escuela de Viena), cada nota de la escala de
12 doce tonos se debe tratar con igualdad, sin ninguna jerarquía como los
13 grados clásicos tonales.  Por tanto, estos compositores imprimen una
14 alteración accidental para cada nota, incluso en las notas naturales,
15 para enfatizar su nuevo enfoque de la teoría y el lenguaje musicales.
16
17 Este fragmento de código muestra cómo conseguir dichas reglas de
18 notación.
19
20 "
21
22  texidocde = "
23  In Werken des fürhen 20. Jahrhundert, angefangen mit Schönberg, Berg
24  und Webern (die zweite Wiener Schule), wird jeder Ton der 
25  Zwölftonleiter als gleichwertig erachtet, ohne hierarchische
26  Ordnung.  Deshalb wird in dieser Musik für jede Note ein Versetzungszeichen
27  ausgegeben, auch für unalterierte Tonhöhen, um das neue Verständnis
28  der Musiktheorie und Musiksprache zu verdeutlichen.
29  
30  Dieser Schnipsel zeigt, wie derartige Notationsregeln zu erstellen sind.
31  "
32  
33 doctitlede = "Versetzungszeichen für jede Note im Stil der Zwölftonmusik"
34
35   texidoc = "
36 In early 20th century works, starting with Schoenberg, Berg and Webern
37 (the \"Second\" Viennese school), every pitch in the twelve-tone scale
38 has to be regarded as equal, without any hierarchy such as the
39 classical (tonal) degrees. Therefore, these composers print one
40 accidental for each note, even at natural pitches, to emphasize their
41 new approach to music theory and language.
42
43 This snippet shows how to achieve such notation rules. 
44
45 "
46   doctitle = "Dodecaphonic-style accidentals for each note including naturals"
47 } % begin verbatim
48
49 \score {
50   \new Staff {
51     #(set-accidental-style 'dodecaphonic)
52     c'4 dis' cis' cis'
53     c'4 dis' cis' cis'
54     c'4 c' dis' des'
55   }
56   \layout {
57     \context {
58       \Staff
59       \remove "Key_engraver"
60     }
61   }
62 }
63