]> 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 6e87757d1b5575a63b243bfe537c9112f7579dc8..d8b20b2dc879270e72a9a2fbd8c64aa7d524f826 100644 (file)
@@ -1,10 +1,14 @@
-% 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.36
-\version "2.13.36"
+%% 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 {
+  lsrtags = "pitches"
+
 %% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec
   doctitlees = "Alteraciones de estilo dodecafónico para todas las notas incluidas las naturales"
   texidoces = "
@@ -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"
+    }
+  }
 }