]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/permitting-line-breaks-within-beamed-tuplets.ly
Add grammar to Notation Reference
[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   texidoc = "
28 This artificial example shows how both manual and automatic line breaks
29 may be permitted to within a beamed tuplet. Note that such off-beat
30 tuplets have to be beamed manually.
31
32 "
33   doctitle = "Permitting line breaks within beamed tuplets"
34 } % begin verbatim
35
36 \layout {
37   \context {
38     \Voice
39     % Permit line breaks within tuplets
40     \remove "Forbid_line_break_engraver"
41     % Allow beams to be broken at line breaks
42     \override Beam #'breakable = ##t
43   }
44 }
45 \relative c'' {
46   a8
47   \repeat unfold 5 { \times 2/3 { c[ b a] } }
48   % Insert a manual line break within a tuplet
49   \times 2/3 { c[ b \bar "" \break a] }
50   \repeat unfold 5 { \times 2/3 { c[ b a] } }
51   c8
52 }