]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/asymmetric-slurs.ly
Doc: run makelsr locally
[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 = "tweaks-and-overrides, expressive-marks"
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   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
31 slurNotes = { d,8( a' d f a f' d, a) }
32
33 \relative c' {
34   \stemDown
35   \slurUp
36   \slurNotes
37   \once \override Slur #'eccentricity = #3.0
38   \slurNotes
39 }
40