]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/asymmetric-slurs.ly
Merge remote-tracking branch 'origin/master' into translation
[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.17.6"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12   texidoc = "
13 Slurs can be made asymmetric to match an asymmetric pattern of notes
14 better.
15
16 "
17   doctitle = "Asymmetric slurs"
18 } % begin verbatim
19
20
21 slurNotes = { d,8( a' d f a f' d, a) }
22
23 \relative c' {
24   \stemDown
25   \slurUp
26   \slurNotes
27   \once \override Slur.eccentricity = #3.0
28   \slurNotes
29 }