]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly
resolve merge
[lilypond.git] / Documentation / snippets / blanking-staff-lines-using-the--whiteout-command.ly
diff --git a/Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly b/Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly
new file mode 100644 (file)
index 0000000..d807e6c
--- /dev/null
@@ -0,0 +1,37 @@
+%% 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.0"
+
+\header {
+  lsrtags = "editorial-annotations, text"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  texidoces = "
+La instrucción @code{\\whiteout} intercala un rectángulo blanco
+debajo de un elemento de marcado.  Este rectángulo blanco no tapa
+a ningún otro objeto gráfico, puesto que las líneas del pentagrama
+están en una capa inferior a la de la mayor parte de los otros
+objetos.
+
+"
+  doctitlees = "Poner en blanco las líneas del pentagrama utilizando la instrucción \\whiteout"
+
+  texidoc = "
+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 command"
+} % begin verbatim
+
+\layout { ragged-right = ##f }
+\relative c' {
+  \override TextScript #'extra-offset = #'(2 . 4)
+  c2-\markup { \whiteout \pad-markup #0.5 "middle C" } c
+}
+