]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/compound-time-signatures.ly
Merge branch 'master' of carldsorensen@git.sv.gnu.org:/srv/git/lilypond
[lilypond.git] / input / lsr / compound-time-signatures.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 %% Note: this file works from version 2.12.0
4 \version "2.13.1"
5
6 \header {
7  doctitlees = "Indicaciones de compases compuestos"
8  texidoces = "
9 Las indicaciones de compás poco frecuentes como \"5/8\" se pueden
10 ejecutar como compases compuestos (p.ej. \"3/8 + 2/8\"), que combinan
11 dos o más metros diferentes. LilyPond puede hacer la música de este
12 tipo fácil de leer e interpretar, imprimiendo explícitamente las
13 indicaciones de compás compuesto y adaptando el comportamiento
14 automático de las barras (también se pueden añadir indicaciones
15 gráficas de la agrupación de compases; véase el fragmento de código
16 apropiado en la base de datos).
17
18 "
19
20 %% Translation of GIT committish :<6ce7f350682dfa99af97929be1dec6b9f1cbc01a>
21 texidocde = "
22 Ungerade Taktarten werden (wie etwa \"5/8\") werden oft als zusammengesetzte
23 Taktarten interpretiert (bspw. \"3/8 + 2/8\"), in welchen zwei oder mehr
24 Teiltakte unterschieden werden.  LilyPond kann derartige Noten produzieren,
25 indem entsprechende Taktarten gesetzt werden und die automatische
26 Bebalkung angepasst wird.
27
28 "
29   doctitlede = "Zusammengesetzte Taktarten"
30
31
32 %% Translation of GIT committish :<e71f19ad847d3e94ac89750f34de8b6bb28611df>
33   texidocfr = "
34 Des métriques telles que \"5/8\" pauvent s'interpréter sous une forme
35 décomposée --- \"3/8 + 2/8\" par exemple --- qui combine plusieurs
36 métriques.  LilyPond est capable de rendre ce type de notation, plus
37   facile à lire et à interpréter, en imprimant cette métrique composite
38   et en adaptant les règles de ligature automatique en conséquence.
39
40 "
41   doctitlefr = "Métrique décomposée"
42
43   lsrtags = "rhythms"
44   texidoc = "
45 Odd 20th century time signatures (such as \"5/8\") can often be played
46 as compound time signatures (e.g. \"3/8 + 2/8\"), which combine two or
47 more inequal metrics. LilyPond can make such music quite easy to read
48 and play, by explicitly printing the compound time signatures and
49 adapting the automatic beaming behavior. (Graphic measure grouping
50 indications can also be added; see the appropriate snippet in this
51 database.) 
52
53 "
54   doctitle = "Compound time signatures"
55 } % begin verbatim
56
57
58 #(define ((compound-time one two num) grob)
59   (grob-interpret-markup grob
60     (markup #:override '(baseline-skip . 0) #:number
61       (#:line (
62           (#:column (one num))
63           #:vcenter "+"
64           (#:column (two num))))
65       )))
66
67 \relative c' {
68   \override Staff.TimeSignature #'stencil = #(compound-time "2" "3" "8")
69   \time 5/8
70   #(override-auto-beam-setting '(end 1 8 5 8) 1 4)
71   c8 d e fis gis
72   c8 fis, gis e d
73   c8 d e4 gis8
74 }