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