]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/permitting-line-breaks-within-beamed-tuplets.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[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.38"
4
5 \header {
6   lsrtags = "rhythms"
7  texidoc = "
8 This artificial example shows how both manual and automatic line breaks
9 may be permitted to within a beamed tuplet. Note that such off-beat
10 tuplets have to be beamed manually.
11 " }
12 % begin verbatim
13 \layout {
14   \context {
15     \Voice
16     % Permit line breaks within tuplets
17     \remove "Forbid_line_break_engraver"
18     % Allow beams to be broken at line breaks
19     \override Beam #'breakable = ##t
20   }
21 }
22 \relative c'' {
23   a8
24   \repeat unfold 8 { \times 2/3 { c[ b a] } }
25   % Insert a manual line break within a tuplet
26   \times 2/3 { c[ b \bar "" \break a] }
27   \repeat unfold 2 { \times 2/3 { c[ b a] } }
28   c8
29 }