]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-double-slurs-for-legato-chords.ly
Merge branch 'master' of git://git.savannah.gnu.org/lilypond.git
[lilypond.git] / Documentation / snippets / using-double-slurs-for-legato-chords.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.0"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
13   texidoces = "
14 Algunos compositores escriben dos ligaduras cuando quieren acordes
15 legato.  Esto se puede conseguir estableciendo @code{doubleSlurs}.
16
17 "
18   doctitlees = "Utilizar ligaduras dobles para acordes legato"
19
20
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22 texidocde = "
23 Einige Komponisten schreiben doppelte Bögen, wenn Legato-Akkorde notiert
24 werden.  Das kann mit der Eigenschaft @code{doubleSlurs} erreicht werden.
25
26 "
27   doctitlede = "Doppelte Bögen für Legato-Akkorde benutzen"
28
29 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
30   texidocfr = "
31 Certains auteurs utilisent deux liaisons lorsqu'ils veulent
32 lier des accords. Dans LilyPond, il faut pour cela activer
33 la propriété @code{doubleSlurs} :
34
35 "
36   doctitlefr = "Accords et double liaison d'articulation"
37
38
39   texidoc = "
40 Some composers write two slurs when they want legato chords.  This can
41 be achieved by setting @code{doubleSlurs}.
42
43 "
44   doctitle = "Using double slurs for legato chords"
45 } % begin verbatim
46
47 \relative c' {
48   \set doubleSlurs = ##t
49   <c e>4( <d f> <c e> <d f>)
50 }
51