]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-double-slurs-for-legato-chords.ly
Docs: update snippets locally
[lilypond.git] / Documentation / snippets / using-double-slurs-for-legato-chords.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Algunos compositores escriben dos ligaduras cuando quieren acordes
12 legato.  Esto se puede conseguir estableciendo @code{doubleSlurs}.
13
14 "
15   doctitlees = "Utilizar ligaduras dobles para acordes legato"
16
17 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
18 texidocde = "
19 Einige Komponisten schreiben doppelte Bögen, wenn Legato-Akkorde notiert
20 werden.  Das kann mit der Eigenschaft @code{doubleSlurs} erreicht werden.
21
22 "
23   doctitlede = "Doppelte Bögen für Legato-Akkorde benutzen"
24
25   texidoc = "
26 Some composers write two slurs when they want legato chords.  This can
27 be achieved by setting @code{doubleSlurs}.
28
29 "
30   doctitle = "Using double slurs for legato chords"
31 } % begin verbatim
32
33 \relative c' {
34   \set doubleSlurs = ##t
35   <c e>4( <d f> <c e> <d f>)
36 }
37