]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/permitting-line-breaks-within-beamed-tuplets.ly
5895db4b2141f126dc14ac4e34d34983e4864746
[lilypond.git] / Documentation / snippets / permitting-line-breaks-within-beamed-tuplets.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10  doctitlees = "Permitir saltos de línea dentro de grupos especiales con barra"
11  texidoces = "
12 Este ejemplo artificial muestra cómo se pueden permitir tanto los
13 saltos de línea manuales como los automáticos dentro de un grupo de
14 valoración especial unido por una barra.  Observe que estos grupos
15 sincopados se deben barrar manualmente.
16
17 "
18
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20   texidocde = "
21 Dieses künstliche Beispiel zeigt, wie sowohl automatische als auch
22 manuelle Zeilenumbrüche innerhalb einer N-tole mit Balken erlaubt
23 werden können.  Diese unregelmäßige Bebalkung muss allerdings manuell
24 gesetzt werden.
25
26 "
27   doctitlede = "Zeilenumbrüche bei N-tolen mit Balken erlauben"
28
29
30 %% Translation of GIT committish: 4da4307e396243a5a3bc33a0c2753acac92cb685
31   texidocfr = "
32 Cet exemple peu académique démontre comment il est possible d'insérer un saut
33 de ligne dans un nolet portant une ligature.  Ces ligatures doivent toutefois
34 être explicites.
35
36 "
37   doctitlefr = "Saut de ligne au milieu d'un nolet avec ligature"
38
39   texidoc = "
40 This artificial example shows how both manual and automatic line breaks
41 may be permitted to within a beamed tuplet. Note that such off-beat
42 tuplets have to be beamed manually.
43
44 "
45   doctitle = "Permitting line breaks within beamed tuplets"
46 } % begin verbatim
47
48 \layout {
49   \context {
50     \Voice
51     % Permit line breaks within tuplets
52     \remove "Forbid_line_break_engraver"
53     % Allow beams to be broken at line breaks
54     \override Beam #'breakable = ##t
55   }
56 }
57 \relative c'' {
58   a8
59   \repeat unfold 5 { \times 2/3 { c[ b a] } }
60   % Insert a manual line break within a tuplet
61   \times 2/3 { c[ b \bar "" \break a] }
62   \repeat unfold 5 { \times 2/3 { c[ b a] } }
63   c8
64 }
65