]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/beam-grouping-in-7-8-time.ly
Merge branch 'master' into nested-bookparts
[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.62"
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   texidoc = "
19 There are no default automatic beam groupings specified for 7/8 time,
20 so if automatic beams are required the grouping must be specified.  For
21 example, to group all beams 2-3-2 in 7/8 time, specify beam endings at
22 2/8 and 5/8: 
23
24 "
25   doctitle = "Beam grouping in 7/8 time"
26 } % begin verbatim
27
28 \relative c'' {
29   \time 7/8
30   % rhythm 2-3-2
31   a8 a a a a a a
32   #(override-auto-beam-setting '(end * * 7 8) 2 8)
33   #(override-auto-beam-setting '(end * * 7 8) 5 8)
34   a8 a a a a a a
35 }