]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/permitting-line-breaks-within-beamed-tuplets.ly
Doc-es: pre-merge update of texidoc committishes.
[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.13.1"
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 %% Translation of GIT committish :<6ce7f350682dfa99af97929be1dec6b9f1cbc01a>
18   texidocde = "
19 Dieses künstliche Beispiel zeigt, wie sowohl automatische als auch
20 manuelle Zeilenumbrüche innerhalb einer N-tole mit Balken erlaubt
21 werden können.  Diese unregelmäßige Bebalkung muss allerdings manuell
22 gesetzt werden.
23
24 "
25   doctitlede = "Zeilenumbrüche bei N-tolen mit Balken erlauben"
26
27
28 %% Translation of GIT committish :<e71f19ad847d3e94ac89750f34de8b6bb28611df>
29   texidocfr = "
30 Cet exemple peu académique démontre comment il est possible d'insérer un saut 
31 de ligne dans un nolet portant une ligature.  Ces ligatures doivent toutefois
32 être explicites.
33
34 "
35   doctitlefr = "Saut de ligne au milieu d'un nolet avec ligature"
36
37   texidoc = "
38 This artificial example shows how both manual and automatic line breaks
39 may be permitted to within a beamed tuplet. Note that such off-beat
40 tuplets have to be beamed manually.
41
42 "
43   doctitle = "Permitting line breaks within beamed tuplets"
44 } % begin verbatim
45
46 \layout {
47   \context {
48     \Voice
49     % Permit line breaks within tuplets
50     \remove "Forbid_line_break_engraver"
51     % Allow beams to be broken at line breaks
52     \override Beam #'breakable = ##t
53   }
54 }
55 \relative c'' {
56   a8
57   \repeat unfold 5 { \times 2/3 { c[ b a] } }
58   % Insert a manual line break within a tuplet
59   \times 2/3 { c[ b \bar "" \break a] }
60   \repeat unfold 5 { \times 2/3 { c[ b a] } }
61   c8
62 }