]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/beam-grouping-in-7-8-time.ly
Make the length of beamlets configurable.
[lilypond.git] / input / lsr / beam-grouping-in-7-8-time.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.11.64"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoces = "
9 No está especificada ninguna agrupación predeterminada automática
10 de las barras para el compás de 7/8, de forma que si se requieren
11 barras automáticas se debe especificar la forma de agrupamiento.
12 Por ejemplo, para agrupar todas las barras en la forma 2-3-2 en el
13 compás de 7/8, especificamos los finales de barra en 2/8 y 5/8:
14
15 "
16   doctitlees = "Agrupamiento de las barras en el compás de 7/8"
17   
18 %% Translation of GIT committish :<6ce7f350682dfa99af97929be1dec6b9f1cbc01a>
19 texidocde = "
20 Es gibt keine automatischen Balkengruppen für 7/8-Takte.  Wenn diese
21 Taktart benötigt wird, müssen die Gruppierungen definiert werden.  Um
22 beispielsweise alle Noten in 2/8-3/8-2/8 aufzuteilen, müssen Balkenenden
23 für 2/8 und 5/8 definiert werden:
24
25 "
26   doctitlede = "Balkengruppen für 7/8-Takte"
27
28   texidoc = "
29 There are no default automatic beam groupings specified for 7/8 time,
30 so if automatic beams are required the grouping must be specified.  For
31 example, to group all beams 2-3-2 in 7/8 time, specify beam endings at
32 2/8 and 5/8: 
33
34 "
35   doctitle = "Beam grouping in 7/8 time"
36 } % begin verbatim
37
38 \relative c'' {
39   \time 7/8
40   % rhythm 2-3-2
41   a8 a a a a a a
42   #(override-auto-beam-setting '(end * * 7 8) 2 8)
43   #(override-auto-beam-setting '(end * * 7 8) 5 8)
44   a8 a a a a a a
45 }