]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
Doc-de: updates from master to NR
[lilypond.git] / Documentation / snippets / dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7 %% Translation of GIT committish: 59968a089729d7400f8ece38d5bc98dbb3656a2b
8   texidocfr = "
9 Au début du XXème siècle, Schoenberg, Berg et Webern -- la « Seconde »
10 école de Vienne -- imaginèrent de donner une importance comparable aux
11 douze notes de la gamme chromatique, et éviter ainsi toute tonalité.
12 Pour ce faire, ces compositions font apparaître une altération à chaque
13 note, y compris un bécarre, pour mettre en exergue cette nouvelle
14 approche de la théorie et du langage musicaux.
15
16 Voici comment obtenir une telle notation.
17
18 "
19   doctitlefr = "Le dodécaphonisme : toute note est altérée"
20
21
22   lsrtags = "pitches"
23
24 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
25   doctitlees = "Alteraciones de estilo dodecafónico para todas las notas, incluidas las naturales"
26   texidoces = "
27 En las obras de principios del s.XX, empezando por Schoenberg, Berg y
28 Webern (la \"Segunda\" escuela de Viena), cada nota de la escala de
29 doce tonos se debe tratar con igualdad, sin ninguna jerarquía como los
30 grados clásicos tonales.  Por tanto, estos compositores imprimen una
31 alteración accidental para cada nota, incluso en las notas naturales,
32 para enfatizar su nuevo enfoque de la teoría y el lenguaje musicales.
33
34 Este fragmento de código muestra cómo conseguir dichas reglas de
35 notación.
36
37 "
38
39 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
40   texidocde = "
41  In Werken des fürhen 20. Jahrhundert, angefangen mit Schönberg, Berg
42  und Webern (die zweite Wiener Schule), wird jeder Ton der
43  Zwölftonleiter als gleichwertig erachtet, ohne hierarchische
44  Ordnung.  Deshalb wird in dieser Musik für jede Note ein Versetzungszeichen
45  ausgegeben, auch für unalterierte Tonhöhen, um das neue Verständnis
46  der Musiktheorie und Musiksprache zu verdeutlichen.
47
48  Dieser Schnipsel zeigt, wie derartige Notationsregeln zu erstellen sind.
49  "
50   doctitlede = "Versetzungszeichen für jede Note im Stil der Zwölftonmusik"
51
52   texidoc = "
53 In early 20th century works, starting with Schoenberg, Berg and Webern
54 (the @qq{Second} Viennese school), every pitch in the twelve-tone scale
55 has to be regarded as equal, without any hierarchy such as the
56 classical (tonal) degrees. Therefore, these composers print one
57 accidental for each note, even at natural pitches, to emphasize their
58 new approach to music theory and language.
59
60 This snippet shows how to achieve such notation rules.
61
62 "
63   doctitle = "Dodecaphonic-style accidentals for each note including naturals"
64 } % begin verbatim
65
66 \score {
67   \new Staff {
68     #(set-accidental-style 'dodecaphonic)
69     c'4 dis' cis' cis'
70     c'4 dis' cis' cis'
71     c'4 c' dis' des'
72   }
73   \layout {
74     \context {
75       \Staff
76       \remove "Key_engraver"
77     }
78   }
79 }
80