]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/glissandi-can-skip-grobs.ly
Allow open strings in chords regardless of finger positions
[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.15.12"
9
10 \header {
11 %% Translation of GIT committish: 8329db420f98f9d2f03ee8aec740b7ccf770b0d2
12   texidocfr = "
13 Un glissando peut sauter un objet @code{NoteColumn}.
14
15 "
16   doctitlefr = "Glissando par dessus un objet graphique"
17
18   lsrtags = "expressive marks, staff-notation, tweaks-and-overrides"
19   texidoc = "@code{NoteColumn} grobs can be skipped over by glissandi."
20 }
21
22 \relative c' {
23   a2 \glissando
24   \once \override NoteColumn #'glissando-skip = ##t
25   f''4 d,
26 }