]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/double-glissando.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / double-glissando.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.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.14.2"
8
9 \header {
10 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
11   texidocfr = "
12 La connection d'accords par des glissandos s'obtient par l'ajout d'un
13 deuxième glissando dans une voix masquée.
14
15 "
16   doctitlefr = "Double glissando"
17
18   lsrtags = "workaround, simultaneous-notes, contemporary-notation, expressive-marks"
19
20   texidoc = "
21 To connect chords with glissando lines, attach a second glissando to a
22 hidden voice.
23
24 "
25   doctitle = "Double glissando"
26 } % begin verbatim
27
28
29 \relative c {
30   \clef bass
31   <<
32     {
33       % new voice ( = \voiceOne), hidden
34       \hideNotes
35       % attach glissando to note heads
36       e2\glissando g
37     }
38     \\
39     {
40       % original voice with chords rearranged so that
41       % glissando is attached to a & c
42       <e a,>2\glissando <g c,>
43     }
44   >>
45 }
46