]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/positioning-arpeggios.ly
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[lilypond.git] / Documentation / snippets / positioning-arpeggios.ly
index 6ca80d578e176824cd8d1aa95723fabaadc374d8..e2937e6a7f2dc7a2d55935b81577db8dbcfd3a14 100644 (file)
@@ -4,21 +4,11 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.0"
+\version "2.17.11"
 
 \header {
   lsrtags = "expressive-marks, tweaks-and-overrides"
 
-%% Translation of GIT committish: 8b93de6ce951b7b14bc7818f31019524295b990f
-  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.
@@ -27,12 +17,13 @@ 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
 }