]> git.donarmstrong.com Git - lilypond.git/blob - ly/declarations-init.ly
* lily/lyric-phrasing-engraver.cc: move from
[lilypond.git] / ly / declarations-init.ly
1 #(ly:set-option 'old-relative)
2
3 \version "1.9.8"
4 breve = #(ly:make-duration -1 0)
5 longa = #(ly:make-duration -2 0 )
6 maxima = #(ly:make-duration -3 0)
7
8 \include "nederlands.ly"                % dutch
9 \include "chord-modifiers-init.ly"
10 \include "script-init.ly"
11
12 % declarations for standard directions
13 left = -1
14 right = 1
15 up = 1
16 down = -1
17 start = -1
18 stop = 1
19 smaller = -1
20 bigger = 1
21 center=0
22
23 %{
24
25 should also set allowBeamBreak, but how to do it "portably"? (ie. also
26 working with lyric sections)
27
28 %}
29 break =#(make-event-chord (list (make-penalty-music -10001)))
30 noBreak =  #(make-event-chord (list (make-penalty-music 10001)))
31
32 \include "scale-definitions-init.ly"
33
34 melisma = \property Staff.melismaBusy = ##t
35 melismaEnd = \property Staff.melismaBusy = ##f
36
37
38 \include "grace-init.ly"
39
40 % ugh
41 \include "midi-init.ly"
42
43
44 % Do units first; must be done before any units are specified.
45 \paper {
46         unit = "mm"
47         mm = 1.0
48         in = 25.4
49         pt = #(/  in 72.27)
50         cm = #(* 10 mm)
51 }
52
53 papersize = "a4"
54 paperfile = \papersize + "-init.ly"
55
56 \include "generic-paper-init.ly"
57 \include "paper20-init.ly"
58
59
60 \include "dynamic-scripts-init.ly"
61 \include "spanners-init.ly"
62
63 \include "property-init.ly"
64
65
66
67 % reset default duration
68 unusedEntry = \notes { c4 }
69
70 % music = "\melodic\relative c"
71