X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fdodecaphonic-style-accidentals-for-each-note-including-naturals.ly;h=593e11aebf2fd0ca75ee1d93be604b13c194115b;hb=c6554467b0a9beddf0d7ef12746ae31a25fe36e7;hp=e26193bc03d5ebab4555434f5b89201ff727fc3f;hpb=537258dbe70c07593fbdf41840ff17d4edf4b333;p=lilypond.git diff --git a/input/lsr/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly b/input/lsr/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly index e26193bc03..593e11aebf 100644 --- a/input/lsr/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly +++ b/input/lsr/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly @@ -1,35 +1,61 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% Do not edit this file; it is auto-generated from input/new %% This file is in the public domain. -\version "2.11.38" +\version "2.11.62" \header { + doctitlees = "Alteraciones de estilo dodecafónico para todas las notas, incluidas las naturales" + texidoces = " +En las obras de principios del s.XX, empezando por Schoenberg, Berg y +Webern (la \"Segunda\" escuela de Viena), cada nota de la escala de +doce tonos se debe tratar con igualdad, sin ninguna jerarquía como los +grados clásicos tonales. Por tanto, estos compositores imprimen una +alteración accidental para cada nota, incluso en las notas naturales, +para enfatizar su nuevo enfoque de la teoría y el lenguaje musicales. + +Este fragmento de código muestra cómo conseguir dichas reglas de +notación. + +" + + texidocde = " + In Werken des fürhen 20. Jahrhundert, angefangen mit Schönberg, Berg + und Webern (die zweite Wiener Schule), wird jeder Ton der + Zwölftonleiter als gleichwertig erachtet, ohne hierarchische + Ordnung. Deshalb wird in dieser Musik für jede Note ein Versetzungszeichen + ausgegeben, auch für unalterierte Tonhöhen, um das neue Verständnis + der Musiktheorie und Musiksprache zu verdeutlichen. + + Dieser Schnipsel zeigt, wie derartige Notationsregeln zu erstellen sind. + " + +doctitlede = "Versetzungszeichen für jede Note im Stil der Zwölftonmusik" + lsrtags = "pitches" - texidoc = " -In early 20th century works, starting with Schönberg, Berg and Webern -(the \"Second\" Viennese school), every pitch in the twelve-tone scale -has to be regarded as equal, without any hierarchy such as the -classical (tonal) degrees. Therefore, these composers print one -accidental for each note, even at natural pitches, to emphasize their -new approach to music theory and language. This snippet shows how to -achieve such notation rules with LilyPond. -" } -% begin verbatim -webernAccidentals = { - % the 5s are just "a value different from any accidental" - \set Staff.keySignature = #'((0 . 5) (1 . 5) (2 . 5) (3 . 5) - (4 . 5) (5 . 5) (6 . 5)) - \set Staff.extraNatural = ##f - #(set-accidental-style 'forget) -} + texidoc = "In early 20th century works, starting with Schoenberg, +Berg and Webern (the \"Second\" Viennese school), every pitch in the +twelve-tone scale has to be regarded as equal, without any hierarchy +such as the classical (tonal) degrees. Therefore, these composers +print one accidental for each note, even at natural pitches, to +emphasize their new approach to music theory and language. + +This snippet shows how to achieve such notation rules. +" + + doctitle = "Dodecaphonic-style accidentals for each note including naturals" +} % begin verbatim + \score { - { - \webernAccidentals - c' dis' cis' cis' - c' dis' cis' cis' - c' c' dis' des' + \new Staff { + #(set-accidental-style 'dodecaphonic) + c'4 dis' cis' cis' + c'4 dis' cis' cis' + c'4 c' dis' des' } \layout { - \context { \Staff \remove "Key_engraver" } + \context { + \Staff + \remove "Key_engraver" + } } }