]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/moving-slur-positions-vertically.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / Documentation / snippets / moving-slur-positions-vertically.ly
index fd03a6ddbae248a0f69686ca3dc0ff45bcffd7ee..efee38d8904bac0a5973ba941e5e8410b1391171 100644 (file)
@@ -1,7 +1,10 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.16"
+\version "2.18.0"
 
 \header {
   lsrtags = "expressive-marks, tweaks-and-overrides"
@@ -14,8 +17,8 @@ second to the right.  The values of the parameters are not used by
 LilyPond to make an exact movement of the slur - instead it selects
 what placement of the slur looks best, taking into account the
 parameter values.  Positive values move the slur up, and are
-appropriate for notes with stems down.  Negative values move the slur
-down.
+appropriate for notes with stems down.  Negative values move downward
+slurs further down.
 
 "
   doctitle = "Moving slur positions vertically"
@@ -24,19 +27,24 @@ down.
 \relative c' {
   \stemDown
   e4( a)
-  \override Slur #'positions = #'(1 . 1)
+  \override Slur.positions = #'(1 . 1)
   e4( a)
-  \override Slur #'positions = #'(2 . 2)
+  \override Slur.positions = #'(2 . 2)
   e4( a)
-  \override Slur #'positions = #'(3 . 3)
+  \override Slur.positions = #'(3 . 3)
   e4( a)
-  \override Slur #'positions = #'(4 . 4)
+  \override Slur.positions = #'(4 . 4)
   e4( a)
-  \override Slur #'positions = #'(5 . 5)
+  \override Slur.positions = #'(5 . 5)
   e4( a)
-  \override Slur #'positions = #'(0 . 5)
+  \override Slur.positions = #'(0 . 5)
   e4( a)
-  \override Slur #'positions = #'(5 . 0)
+  \override Slur.positions = #'(5 . 0)
+  e4( a)
+  \stemUp
+  \override Slur.positions = #'(-5 . -5)
+  e4( a)
+  \stemDown
+  \revert Slur.positions
   e4( a)
 }
-