]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/asymmetric-slurs.ly
b4d6520b5f386dc50d7f411b66ba65052de1a92e
[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.39"
5
6 \header {
7   lsrtags = "expressive-marks, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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