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