]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/permitting-line-breaks-within-beamed-tuplets.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "rhythms"
7
8  doctitlees = "Permitir saltos de línea dentro de grupos especiales con barra"
9  texidoces = "
10 Este ejemplo artificial muestra cómo se pueden permitir tanto los
11 saltos de línea manuales como los automáticos dentro de un grupo de
12 valoración especial unido por una barra.  Observe que estos grupos
13 sincopados se deben barrar manualmente.
14
15 "
16
17   texidoc = "
18 This artificial example shows how both manual and automatic line breaks
19 may be permitted to within a beamed tuplet. Note that such off-beat
20 tuplets have to be beamed manually.
21
22 "
23   doctitle = "Permitting line breaks within beamed tuplets"
24 } % begin verbatim
25 \layout {
26   \context {
27     \Voice
28     % Permit line breaks within tuplets
29     \remove "Forbid_line_break_engraver"
30     % Allow beams to be broken at line breaks
31     \override Beam #'breakable = ##t
32   }
33 }
34 \relative c'' {
35   a8
36   \repeat unfold 8 { \times 2/3 { c[ b a] } }
37   % Insert a manual line break within a tuplet
38   \times 2/3 { c[ b \bar "" \break a] }
39   \repeat unfold 2 { \times 2/3 { c[ b a] } }
40   c8
41 }