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