]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/glissandi-can-skip-grobs.ly
Imported Upstream version 2.16.0
[lilypond.git] / Documentation / snippets / glissandi-can-skip-grobs.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.15.12
8 \version "2.16.0"
9
10 \header {
11   lsrtags = "expressive-marks, staff-notation, tweaks-and-overrides"
12   doctitle = "Glissandi can skip grobs"
13   texidoc = "@code{NoteColumn} grobs can be skipped over by glissandi."
14 } % begin verbatim
15
16
17 \relative c' {
18   a2 \glissando
19   \once \override NoteColumn #'glissando-skip = ##t
20   f''4 d,
21 }