Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2)

Side by Side Diff: Documentation/snippets/compound-time-signatures.ly

Issue 1667041: Redo autobeam settings to make resetting easier (Closed)
Patch Set: test of makelsr.py Created 14 years, 9 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b