]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/permitting-line-breaks-within-beamed-tuplets.ly
Imported Upstream version 2.18.0
[lilypond.git] / Documentation / snippets / permitting-line-breaks-within-beamed-tuplets.ly
index 10206bee1747ced898086fd68285ea01000773d7..c67206c3aa3335e753411134078c96aeb119c765 100644 (file)
@@ -4,7 +4,7 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.16.0"
+\version "2.17.11"
 
 \header {
   lsrtags = "rhythms, version-specific"
@@ -25,14 +25,14 @@ tuplets have to be beamed manually.
     % Permit line breaks within tuplets
     \remove "Forbid_line_break_engraver"
     % Allow beams to be broken at line breaks
-    \override Beam #'breakable = ##t
+    \override Beam.breakable = ##t
   }
 }
 \relative c'' {
   a8
-  \repeat unfold 5 { \times 2/3 { c[ b a] } }
+  \repeat unfold 5 { \tuplet 3/2 { c[ b a] } }
   % Insert a manual line break within a tuplet
-  \times 2/3 { c[ b \bar "" \break a] }
-  \repeat unfold 5 { \times 2/3 { c[ b a] } }
+  \tuplet 3/2 { c[ b \bar "" \break a] }
+  \repeat unfold 5 { \tuplet 3/2 { c[ b a] } }
   c8
 }