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