]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/permitting-line-breaks-within-beamed-tuplets.ly
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / input / lsr / permitting-line-breaks-within-beamed-tuplets.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.46"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoc = "
9 This artificial example shows how both manual and automatic line breaks
10 may be permitted to within a beamed tuplet. Note that such off-beat
11 tuplets have to be beamed manually.
12
13 "
14   doctitle = "Permitting line breaks within beamed tuplets"
15 } % begin verbatim
16 \layout {
17   \context {
18     \Voice
19     % Permit line breaks within tuplets
20     \remove "Forbid_line_break_engraver"
21     % Allow beams to be broken at line breaks
22     \override Beam #'breakable = ##t
23   }
24 }
25 \relative c'' {
26   a8
27   \repeat unfold 8 { \times 2/3 { c[ b a] } }
28   % Insert a manual line break within a tuplet
29   \times 2/3 { c[ b \bar "" \break a] }
30   \repeat unfold 2 { \times 2/3 { c[ b a] } }
31   c8
32 }