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