]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/permitting-line-breaks-within-beamed-tuplets.ly
Doc: update lsr snippets.
[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.10"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: 4385ed4cc738e164a95798862580b4b86703356f
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: d96023d8792c8af202c7cb8508010c0d3648899d
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: e71f19ad847d3e94ac89750f34de8b6bb28611df
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