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