]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/using-the-whiteout-property.ly
Merge branch 'master' into translation
[lilypond.git] / Documentation / snippets / using-the-whiteout-property.ly
index 374d4c6c53bd96edf53b9ef8cec6e509a4b4fd00..77bc141d219a36d1ae2f934925f39670574606e9 100644 (file)
@@ -1,13 +1,14 @@
-%% 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.14.2"
+% DO NOT EDIT this file manually; it is automatically
+% generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
+% This file is in the public domain.
+%% Note: this file works from version 2.19.32
+\version "2.19.32"
 
 \header {
-  lsrtags = "expressive-marks, editorial-annotations"
+  lsrtags = "editorial-annotations, expressive-marks"
 
   texidoc = "
 Any graphical object can be printed over a white background to mask
@@ -29,11 +30,12 @@ is not masked.
   doctitle = "Using the whiteout property"
 } % begin verbatim
 
+
 {
-  \override Score.StaffSymbol #'layer = #4
-  \override Staff.TimeSignature #'layer = #3
+  \override Score.StaffSymbol.layer = #4
+  \override Staff.TimeSignature.layer = #3
   b'2 b'~
-  \once \override Staff.TimeSignature #'whiteout = ##t
+  \once \override Staff.TimeSignature.whiteout = ##t
   \time 3/4
   b' r4
 }