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