]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/permitting-line-breaks-within-beamed-tuplets.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[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 \relative c'' {
14  a8
15  \repeat unfold 8 {\times 2/3 { c[ b a]}}
16  % Insert a manual line break within a tuplet
17  \times 2/3 { c[ b \bar "" \break a]}
18  \repeat unfold 2 {\times 2/3 { c[ b a]}}
19  c8
20 }
21 \layout {
22  \context {
23    \Voice
24    % Permit line breaks within tuplets
25    \remove "Forbid_line_break_engraver"
26    % Allow beams to be broken at line breaks
27    \override Beam #'breakable = ##t
28  }
29 }