]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly
b367e229c61c342ec67f17520dfa95a477f68c16
[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.2"
8
9 \header {
10   lsrtags = "text, really-cool, editorial-annotations"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
24   texidocfr = "
25 L'instruction @code{\\whiteout} intercale un rectangle blanc contenant
26 un @emph{markup}.  Dans la mesure où les lignes de la portée sont à un
27 niveau inférieur à la plupart des autres objets graphiques, ce cache ne
28 devrait pas masquer d'autres éléments.
29
30 "
31   doctitlefr = "Blanchiment de lignes de portée avec la commande \\whiteout"
32
33   texidoc = "
34 The @code{\\whiteout} command underlays a markup with a white box.
35 Since staff lines are in a lower layer than most other grobs, this
36 white box will not overlap any other grob.
37
38 "
39   doctitle = "Blanking staff lines using the \\whiteout command"
40 } % begin verbatim
41
42
43 \layout { ragged-right = ##f }
44 \relative c' {
45   \override TextScript #'extra-offset = #'(2 . 4)
46   c2-\markup { \whiteout \pad-markup #0.5 "middle C" } c
47 }
48