]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/asymmetric-slurs.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / asymmetric-slurs.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.20"
5
6 \header {
7   lsrtags = "expressive-marks, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
10   texidoces = "
11 Se puede hacer que una ligadura de expresión sea asimétrica para
12 adaptarse mejor a un patrón asimétrico de notas.
13
14 "
15   doctitlees = "Ligaduras asimétricas"
16
17
18
19   texidoc = "
20 Slurs can be made asymmetric to match an asymmetric pattern of notes
21 better.
22
23 "
24   doctitle = "Asymmetric slurs"
25 } % begin verbatim
26
27 slurNotes = { d,8( a' d f a f' d, a) }
28
29 \relative c' {
30   \stemDown
31   \slurUp
32   \slurNotes
33   \once \override Slur #'eccentricity = #3.0
34   \slurNotes
35 }
36