]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/glissandi-can-skip-grobs.ly
91455572a5862afec231977780367394ea62f808
[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: ea0b270e14781707ab52683acddf9302bbe337f3
12   texidoces = "
13 Los objetos gráficos de columna de nota (los grobs @code{NoteColumn})
14 pueden ser sobrepasados por los glissandos.
15
16 "
17   doctitlees = "Glissando por debajo de un objeto gráfico"
18
19 %% Translation of GIT committish: fc1ca638e0b5f66858b9b7a073ceefc1eccb3ed2
20   texidocde = "@code{NoteColumn}-Grobs können bei Glissandos übersprungen werden."
21   doctitlede = "Glissando kann Grobs überspringen"
22
23
24 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
25   texidocfr = "
26 Un glissando peut sauter un objet @code{NoteColumn}.
27
28 "
29   doctitlefr = "Glissando par dessus un objet graphique"
30
31   lsrtags = "expressive marks, staff-notation, tweaks-and-overrides"
32   doctitle = "Glissandi can skip grobs"
33   texidoc = "@code{NoteColumn} grobs can be skipped over by glissandi."
34 } % begin verbatim
35
36
37 \relative c' {
38   a2 \glissando
39   \once \override NoteColumn #'glissando-skip = ##t
40   f''4 d,
41 }