]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/asymmetric-slurs.ly
5a8283a73c047a7b6ffac587e9f5840da5165d30
[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.14.2"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: 85394d425536d267ed0cb71d17023849f1611180
23   texidocfr = "
24 Une liaison peut adopter une courbe asymétrique afin de s'adapter au
25 mieux à la ligne mélodique.
26
27 "
28   doctitlefr = "Liaison asymétrique"
29
30   texidoc = "
31 Slurs can be made asymmetric to match an asymmetric pattern of notes
32 better.
33
34 "
35   doctitle = "Asymmetric slurs"
36 } % begin verbatim
37
38
39 slurNotes = { d,8( a' d f a f' d, a) }
40
41 \relative c' {
42   \stemDown
43   \slurUp
44   \slurNotes
45   \once \override Slur #'eccentricity = #3.0
46   \slurNotes
47 }
48