OLD | NEW |
1 % Do not edit this file; it is automatically | 1 % Do not edit this file; it is automatically |
2 % generated from Documentation/snippets/new | 2 % generated from Documentation/snippets/new |
3 % This file is in the public domain. | 3 % This file is in the public domain. |
4 %% Note: this file works from version 2.13.4 | 4 %% Note: this file works from version 2.13.24 |
5 \version "2.13.20" | 5 \version "2.13.24" |
6 | 6 |
7 \header { | 7 \header { |
8 %% Translation of GIT committish: e0aa246e0ed1a86dc41a99ab79bff822d3320aa7 | 8 %% Translation of GIT committish: e0aa246e0ed1a86dc41a99ab79bff822d3320aa7 |
9 doctitlees = "Indicaciones de compases compuestos" | 9 doctitlees = "Indicaciones de compases compuestos" |
10 texidoces = " | 10 texidoces = " |
11 Las indicaciones de compás poco frecuentes como @qq{5/8} se pueden | 11 Las indicaciones de compás poco frecuentes como @qq{5/8} se pueden |
12 ejecutar como compases compuestos (p.ej. @qq{3/8 + 2/8}), que combinan | 12 ejecutar como compases compuestos (p.ej. @qq{3/8 + 2/8}), que combinan |
13 dos o más metros diferentes. LilyPond puede hacer la música de este | 13 dos o más metros diferentes. LilyPond puede hacer la música de este |
14 tipo fácil de leer e interpretar, imprimiendo explícitamente las | 14 tipo fácil de leer e interpretar, imprimiendo explícitamente las |
15 indicaciones de compás compuesto y adaptando el comportamiento | 15 indicaciones de compás compuesto y adaptando el comportamiento |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 #(define ((compound-time one two num) grob) | 61 #(define ((compound-time one two num) grob) |
62 (grob-interpret-markup grob | 62 (grob-interpret-markup grob |
63 (markup #:override '(baseline-skip . 0) #:number | 63 (markup #:override '(baseline-skip . 0) #:number |
64 (#:line ((#:column (one num)) | 64 (#:line ((#:column (one num)) |
65 #:vcenter "+" | 65 #:vcenter "+" |
66 (#:column (two num))))))) | 66 (#:column (two num))))))) |
67 | 67 |
68 \relative c' { | 68 \relative c' { |
69 \override Staff.TimeSignature #'stencil = #(compound-time "2" "3" "8") | 69 \override Staff.TimeSignature #'stencil = #(compound-time "2" "3" "8") |
70 \time 5/8 | 70 \time 5/8 |
71 \overrideBeamSettings #'Staff #'(5 . 8) #'end | 71 \set Staff.beamSettings = #'((end . (((1 . 8) . (2 3))))) |
72 #'((* . (2 3))) | |
73 c8 d e fis gis | 72 c8 d e fis gis |
74 c8 fis, gis e d | 73 c8 fis, gis e d |
75 c8 d e4 gis8 | 74 c8 d e4 gis8 |
76 } | 75 } |
OLD | NEW |