]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / blanking-staff-lines-using-the--whiteout-command.ly
index e45a731d09e68a976266a828411ade0885fc5a8f..6e49f9e5ec90e29810e6bf640ba2fe2b998302fc 100644 (file)
@@ -4,18 +4,18 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.19.22"
+\version "2.18.0"
 
 \header {
   lsrtags = "editorial-annotations, really-cool, text"
 
   texidoc = "
-The @code{\\whiteout-box} command underlays a markup with a white box.
+The @code{\\whiteout} command underlays a markup with a white box.
 Since staff lines are in a lower layer than most other grobs, this
 white box will not overlap any other grob.
 
 "
-  doctitle = "Blanking staff lines using the \\whiteout-box command"
+  doctitle = "Blanking staff lines using the \\whiteout command"
 } % begin verbatim
 
 \layout {
@@ -24,5 +24,5 @@ white box will not overlap any other grob.
 
 \relative c' {
   \override TextScript.extra-offset = #'(2 . 4)
-  c2-\markup { \whiteout-box \pad-markup #0.5 "middle C" } c
+  c2-\markup { \whiteout \pad-markup #0.5 "middle C" } c
 }