]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/glissandi-can-skip-grobs.ly
Imported Upstream version 2.19.45
[lilypond.git] / Documentation / snippets / glissandi-can-skip-grobs.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 = "expressive-marks, staff-notation, tweaks-and-overrides"
11
12   texidoc = "
13 @code{NoteColumn} grobs can be skipped over by glissandi.
14
15 "
16   doctitle = "Glissandi can skip grobs"
17 } % begin verbatim
18
19 \relative c' {
20   a2 \glissando
21   \once \override NoteColumn.glissando-skip = ##t
22   f''4 d,
23 }