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