]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/positioning-arpeggios.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / positioning-arpeggios.ly
index 8f271fb7063fd684aae5278e449982d692a3aa8a..68861a1dc30f69e376cdc3106967a13835a09844 100644 (file)
@@ -4,21 +4,11 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.17.6"
 
 \header {
   lsrtags = "expressive-marks, tweaks-and-overrides"
 
-%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
-  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"
-
-
-
   texidoc = "
 If you need to extend or shorten an arpeggio, you can modify the upper
 and lower start positions independently.
@@ -30,10 +20,10 @@ and lower start positions independently.
 
 \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
 }