]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly
Local updates from LSR
[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 %% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
11   texidocfr = "
12 L'instruction @code{\\whiteout} intercale un rectangle blanc contenant
13 un @emph{markup}.  Dans la mesure où les lignes de la portée sont à un
14 niveau inférieur à la plupart des autres objets graphiques, ce cache ne
15 devrait pas masquer d'autres éléments.
16
17 "
18   doctitlefr = "Blanchiment de lignes de portée avec la commande \\whiteout"
19
20   lsrtags = "editorial-annotations, text, really-cool"
21
22
23 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
24   texidoces = "
25 La instrucción @code{\\whiteout} intercala un rectángulo blanco
26 debajo de un elemento de marcado.  Este rectángulo blanco no tapa
27 a ningún otro objeto gráfico, puesto que las líneas del pentagrama
28 están en una capa inferior a la de la mayor parte de los otros
29 objetos.
30
31 "
32   doctitlees = "Poner en blanco las líneas del pentagrama utilizando la instrucción \\whiteout"
33
34   texidoc = "
35 The @code{\\whiteout} command underlays a markup with a white box.
36 Since staff lines are in a lower layer than most other grobs, this
37 white box will not overlap any other grob.
38
39 "
40   doctitle = "Blanking staff lines using the \\whiteout command"
41 } % begin verbatim
42
43
44 \layout { ragged-right = ##f }
45 \relative c' {
46   \override TextScript #'extra-offset = #'(2 . 4)
47   c2-\markup { \whiteout \pad-markup #0.5 "middle C" } c
48 }
49