]> git.donarmstrong.com Git - lilypond.git/blob - input/test/uniform-breaking.ly
patch::: 1.3.134.jcn1
[lilypond.git] / input / test / uniform-breaking.ly
1
2 %{
3 Hmm, ik vraag me af of dit al helemaal koel is.
4
5   return abs (this_one.force_f_) + abs (prev.force_f_ - this_one.force_f_)
6       + break_penalties;
7
8 Neem als voorbeeld iets dat lijkt op allemande: keuze tussen 2 of drie
9 maten per regel.
10
11 * 2 lange maten -> lelie kiest 2 /regel  :beetje los
12 * 3 korte -> lelie kiest 3 /regel        :beetje krap
13 * 2 korte, 1 lange -> 3/regel            :krap
14 * 1 korte, 2 lange -> 3/regel            :erg krap
15 * 3 lange -> 3/regel                     :urg krap
16
17 als je naar beloningen kijkt, kan ik me goed voorstellen dat sprong
18 van 'al wat krapper' naar los te groot wordt, en ze dus steeds krapper
19 wordt, tot urg krap aan toe, want kracht lineair?  Dat lijkt ook geval
20 in allemande.
21
22 Zie hoe eerst 10 en 9 mooi op 2maat/regel staan terwijl later tot 14
23 toe 3/regel.
24
25 Heb niet zomaar beter idee, nog.
26 %}
27
28 \score{
29         \notes\relative c'{
30                 % 10
31                 c8 c c c c8 c c c 
32                 c8 c c c c8 c c c 
33                 c8 c c c c8 ces c ces
34
35                 % 9
36                 c8 c c c c8 c c c 
37                 c8 c c c c8 c c c 
38                 c8 c c c c8 c ces c
39
40                 % 1
41                 c4 c c c
42                 c4 c c c
43                 c4 c c c
44
45                 % 2
46                 c4 c c c
47                 c4 c c c
48                 c4 c c8 c c c
49
50                 % 3
51                 c4 c c c
52                 c4 c c c
53                 c8 c c c c8 c c c 
54
55                 % 4
56                 c4 c c c
57                 c4 c c8 c c c
58                 c8 c c c c8 c c c 
59
60                 % 5
61                 c4 c c c
62                 c8 c c c c8 c c c 
63                 c8 c c c c8 c c c 
64
65                 % 6
66                 c4 c c8 c c c
67                 % c4 c c c8 c
68                 c8 c c c c8 c c c 
69                 c8 c c c c8 c c c 
70
71                 % 7
72                 c8 c c c c8 c c c 
73                 c8 c c c c8 c c c 
74                 c8 c c c c8 c c c 
75
76                 % 8
77                 c8 c c c c8 c c c 
78                 c8 c c c c8 c c c 
79                 c8 c c c c8 c c ces
80
81                 % 9
82                 c8 c c c c8 c c c 
83                 c8 c c c c8 c c c 
84                 c8 c c c c8 c ces c
85
86                 % 10
87                 c8 c c c c8 c c c 
88                 c8 c c c c8 c c c 
89                 c8 c c c c8 ces c ces
90
91                 % 11
92                 c8 c c c c8 c c c 
93                 c8 c c c c8 c c c 
94                 c8 c c c ces8 c ces c
95
96                 % 12
97                 c8 c c c c8 c c c 
98                 c8 c c c c8 c c c 
99                 c8 c c ces c8 ces c ces
100
101                 % 13
102                 c8 c c c c8 c c c 
103                 c8 c c c c8 c c c 
104                 c8 c ces c ces8 c ces c
105
106         }
107         \paper {
108                 indent=0.0\mm;
109                 linewidth=90.0\mm;
110         }
111 }
112
113