]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
index 9e21edc34c950a1d9e6df25e2482ee19a65e013c..d8b20b2dc879270e72a9a2fbd8c64aa7d524f826 100644 (file)
@@ -1,11 +1,15 @@
-% Do not edit this file; it is automatically
-% generated from Documentation/snippets/new
-% This file is in the public domain.
-%% Note: this file works from version 2.13.4
-\version "2.13.31"
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.12.2"
 
 \header {
-%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
+  lsrtags = "pitches"
+
+%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec
   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
@@ -49,7 +53,6 @@ Voici comment obtenir une telle notation.
   doctitlefr = "Le dodécaphonisme : toute note est altérée"
 
 
-  lsrtags = "pitches"
   texidoc = "
 In early 20th century works, starting with Schoenberg, Berg and Webern
 (the @qq{Second} Viennese school), every pitch in the twelve-tone scale
@@ -64,9 +67,18 @@ This snippet shows how to achieve such notation rules.
   doctitle = "Dodecaphonic-style accidentals for each note including naturals"
 } % begin verbatim
 
-
-\markup {
-  This snippet is deprecated as of version 2.12 and
-  will be removed from the documentation in 2.14.
+\score {
+  \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"
+    }
+  }
 }