]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
Doc-es: pre-merge update of texidoc committishes.
[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 %% Note: this file works from version 2.12.0
4 \version "2.12.0"
5
6 \header {
7 %% Translation of GIT committish: 740b9a6c16eb30a84b216d23aeb848aa1b632be6
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 %% Translation of GIT committish: e75f1604a1b866c853dee42dbffcb7800c706a5f
23   texidocde = "
24  In Werken des fürhen 20. Jahrhundert, angefangen mit Schönberg, Berg
25  und Webern (die zweite Wiener Schule), wird jeder Ton der 
26  Zwölftonleiter als gleichwertig erachtet, ohne hierarchische
27  Ordnung.  Deshalb wird in dieser Musik für jede Note ein Versetzungszeichen
28  ausgegeben, auch für unalterierte Tonhöhen, um das neue Verständnis
29  der Musiktheorie und Musiksprache zu verdeutlichen.
30  
31  Dieser Schnipsel zeigt, wie derartige Notationsregeln zu erstellen sind.
32  "
33   doctitlede = "Versetzungszeichen für jede Note im Stil der Zwölftonmusik"
34
35   lsrtags = "pitches"
36   texidoc = "In early 20th century works, starting with Schoenberg,
37 Berg and Webern (the \"Second\" Viennese school), every pitch in the
38 twelve-tone scale has to be regarded as equal, without any hierarchy
39 such as the classical (tonal) degrees.  Therefore, these composers
40 print one accidental for each note, even at natural pitches, to
41 emphasize their 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
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 }