]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/positioning-arpeggios.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / positioning-arpeggios.ly
index fa3c97a352c48c06bea32ca203b203faeab9ea3a..6f3d878fad7cc8df662fae147a7026cff46d8548 100644 (file)
@@ -1,23 +1,13 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% 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.14.2"
+\version "2.18.0"
 
 \header {
-  lsrtags = "tweaks-and-overrides, expressive-marks"
-
-%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
-  texidoces = "
-Si necesitamos alargar o acortar un símbolo de arpegio, podemos
-modificar independientemente los extremos superior e inferior.
-
-"
-  doctitlees = "Posicionar símbolos de arpegio"
-
-
+  lsrtags = "expressive-marks, tweaks-and-overrides"
 
   texidoc = "
 If you need to extend or shorten an arpeggio, you can modify the upper
@@ -27,13 +17,12 @@ and lower start positions independently.
   doctitle = "Positioning arpeggios"
 } % begin verbatim
 
-
 \relative c' {
   <c e g b>1\arpeggio
-  \once \override Arpeggio #'positions = #'(-5 . 0)
+  \once \override Arpeggio.positions = #'(-5 . 0)
   <c e g b>1\arpeggio
-  \once \override Arpeggio #'positions = #'(0 . 5)
+  \once \override Arpeggio.positions = #'(0 . 5)
   <c e g b>1\arpeggio
-  \once \override Arpeggio #'positions = #'(-5 . 5)
+  \once \override Arpeggio.positions = #'(-5 . 5)
   <c e g b>1\arpeggio
 }