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