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