]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly
058126053f3281cfe92986a142253ba3b8436d1d
[lilypond.git] / Documentation / snippets / blanking-staff-lines-using-the--whiteout-command.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "editorial-annotations, text"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 La instrucción @code{\\whiteout} intercala un rectángulo blanco
12 debajo de un elemento de marcado.  Este rectángulo blanco no tapa
13 a ningún otro objeto gráfico, puesto que las líneas del pentagrama
14 están en una capa inferior a la de la mayor parte de los otros
15 objetos.
16
17 "
18   doctitlees = "Poner en blanco las líneas del pentagrama utilizando la instrucción \\whiteout"
19
20   texidoc = "
21 The @code{\\whiteout} command underlays a markup with a white box.
22 Since staff lines are in a lower layer than most other grobs, this
23 white box will not overlap any other grob.
24
25 "
26   doctitle = "Blanking staff lines using the \\whiteout command"
27 } % begin verbatim
28
29 \layout { ragged-right = ##f }
30 \relative c' {
31   \override TextScript #'extra-offset = #'(2 . 4)
32   c2-\markup { \whiteout \pad-markup #0.5 "middle C" } c
33 }
34