]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/permitting-line-breaks-within-beamed-tuplets.ly
Add support for max-systems-per-page.
[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   texidocde = "
18 Dieses künstliche Beispiel zeigt, wie sowohl automatische als auch
19 manuelle Zeilenumbrüche innerhalb einer N-tole mit Balken erlaubt
20 werden können.  Diese unregelmäßige Bebalkung muss allerdings manuell
21 gesetzt werden.
22
23 "
24   doctitlede = "Zeilenumbrüche bei N-tolen mit Balken erlauben"
25
26   texidoc = "
27 This artificial example shows how both manual and automatic line breaks
28 may be permitted to within a beamed tuplet. Note that such off-beat
29 tuplets have to be beamed manually.
30
31 "
32   doctitle = "Permitting line breaks within beamed tuplets"
33 } % begin verbatim
34
35 \layout {
36   \context {
37     \Voice
38     % Permit line breaks within tuplets
39     \remove "Forbid_line_break_engraver"
40     % Allow beams to be broken at line breaks
41     \override Beam #'breakable = ##t
42   }
43 }
44 \relative c'' {
45   a8
46   \repeat unfold 8 { \times 2/3 { c[ b a] } }
47   % Insert a manual line break within a tuplet
48   \times 2/3 { c[ b \bar "" \break a] }
49   \repeat unfold 2 { \times 2/3 { c[ b a] } }
50   c8
51 }