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

Side by Side Diff: Documentation/snippets/new/changing-time-signatures-inside-a-polymetric-section-using--scaledurations.ly

Issue 6200068: Use fractions rather than Scheme pairs for \scaleDuration, timeSignatureFraction et al (Closed) Base URL: http://git.savannah.gnu.org/gitweb/?p=lilypond.git/trunk/
Patch Set: Parser needs to permit FRACTION in assignments, too Created 12 years, 11 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
(Empty)
1 \version "2.15.17"
2
3 \header {
4 lsrtags = "workaround, contexts-and-engravers, contemporary-notation, rhythms"
5
6 doctitle = "Changing time signatures inside a polymetric section using \\scale Durations"
7 }
8
9
10 \layout {
11 \context {
12 \Score
13 \remove "Timing_translator"
14 \remove "Default_bar_line_engraver"
15 }
16 \context {
17 \Staff
18 \consists "Timing_translator"
19 \consists "Default_bar_line_engraver"
20 }
21 }
22
23 <<
24 \new Staff {
25 \scaleDurations 8/5 {
Keith 2012/05/13 02:43:23 Somehow, this worked before the patch. Not a prob
dak 2012/05/13 05:57:27 Yup. As I said: 2.15.17 for function arguments (t
26 \time 6/8
27 \set Timing.measureLength = #(ly:make-moment 6 5)
28 b8 b b b b b
29 \time 2/4
30 \set Timing.measureLength = #(ly:make-moment 4 5)
31 b4 b
32 }
33 }
34 \new Staff {
35 \clef bass
36 \time 2/4
37 c2 d e f
38 }
39 >>
OLDNEW

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