]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/blanking-staff-lines-using-the--whiteout-command.ly
Release: bump Welcome versions.
[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.di.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.18.0"
8
9 \header {
10   lsrtags = "editorial-annotations, really-cool, text"
11
12   texidoc = "
13 The @code{\\whiteout} command underlays a markup with a white box.
14 Since staff lines are in a lower layer than most other grobs, this
15 white box will not overlap any other grob.
16
17 "
18   doctitle = "Blanking staff lines using the \\whiteout command"
19 } % begin verbatim
20
21 \layout {
22   ragged-right = ##f
23 }
24
25 \relative c' {
26   \override TextScript.extra-offset = #'(2 . 4)
27   c2-\markup { \whiteout \pad-markup #0.5 "middle C" } c
28 }