]> git.donarmstrong.com Git - lilypond.git/blob - ly/declarations-init.ly
* scripts/convert-ly.py (conv): fixed \context Foo = mixedCaps
[lilypond.git] / ly / declarations-init.ly
1 \version "2.4.0"
2
3 %% < 1.8 compatibility switch
4 #(ly:set-option 'old-relative)
5
6 %% named durations
7 breve = #(ly:make-duration -1 0)
8 longa = #(ly:make-duration -2 0 )
9 maxima = #(ly:make-duration -3 0)
10
11 \include "music-functions-init.ly"
12
13 %% default note names are dutch
14 \include "nederlands.ly"
15
16 \include "drumpitch-init.ly"            
17 \include "chord-modifiers-init.ly"
18 \include "script-init.ly"
19
20 % declarations for standard directions
21 left = -1
22 right = 1
23 up = 1
24 down = -1
25 start = -1
26 stop = 1
27 smaller = -1
28 bigger = 1
29 center = 0
30
31 %% FIXME
32 %% should also set allowBeamBreak, but how to do it "portably"? (ie. also
33 %% working with lyric sections)
34 %%
35 %% try \once \set Score.allowBeamBreak = ##t
36
37 %% rather name \newline, \pageBreak ?
38 break = #(make-event-chord (list (make-penalty-music -10001 0)))
39 noBreak = #(make-event-chord (list (make-penalty-music 10001 0)))
40 pageBreak = #(make-event-chord (list (make-penalty-music -10001 -10001)))
41 noPageBreak = #(make-event-chord (list (make-penalty-music 0 10001)))
42
43
44 %
45 % Code articulation definitions
46 %
47 noBeam = #(make-music 'BeamForbidEvent) 
48 pipeSymbol = #(make-music 'BarCheck)
49 bracketOpenSymbol = #(make-span-event 'BeamEvent START)
50 bracketCloseSymbol = #(make-span-event 'BeamEvent STOP)
51 tildeSymbol = #(make-music 'TieEvent)
52 parenthesisOpenSymbol =  #(make-span-event 'SlurEvent START)
53 parenthesisCloseSymbol = #(make-span-event 'SlurEvent STOP)
54 escapedExclamationSymbol = #(make-span-event 'CrescendoEvent STOP)
55 escapedParenthesisOpenSymbol = #(make-span-event 'PhrasingSlurEvent START)
56 escapedParenthesisCloseSymbol = #(make-span-event 'PhrasingSlurEvent STOP)
57 escapedBiggerSymbol = #(make-span-event 'DecrescendoEvent START)
58 escapedSmallerSymbol = #(make-span-event 'CrescendoEvent START)
59
60
61
62 foo = { \pageBreak }
63
64 \include "scale-definitions-init.ly"
65
66 melisma = #(make-span-event 'ManualMelismaEvent START)
67 melismaEnd = #(make-span-event 'ManualMelismaEvent STOP)
68
69 \include "grace-init.ly"
70 \include "midi-init.ly"
71 \include "paper-defaults.ly"
72
73 \layout {
74     mm = #(ly:output-def-lookup $defaultpaper 'mm)
75     unit = #(ly:output-def-lookup $defaultpaper 'unit)
76
77     in = #(* 25.4 mm)
78     pt = #(/  in 72.27)
79     cm = #(* 10 mm)
80     
81     \include "engraver-init.ly"
82
83     #(set-paper-dimension-variables (current-module))
84     
85 }
86
87
88 #(set-default-paper-size "a4")
89
90
91 partCombineListener = \layout {
92     \context {
93         \Voice
94         \consists Note_heads_engraver
95         \consists Rest_engraver
96         \type "Recording_group_engraver"
97         recordEventSequence = #notice-the-events-for-pc
98     }
99     \context {
100         \Score
101         skipTypesetting = ##t
102     }
103 }
104
105 #(set-part-combine-listener partCombineListener)
106
107 \include "dynamic-scripts-init.ly"
108 \include "spanners-init.ly"
109 \include "property-init.ly"
110
111 setDefaultDurationToQuarter = { c4 }
112
113 %% MAKE-HASH-TABLE in GUILE 1.6 takes mandatory size parameter.
114 #(define musicQuotes (make-hash-table 29))
115
116 #(define toplevel-book-handler ly:parser-print-book)
117 #(define toplevel-music-handler collect-music-for-book)
118 #(define toplevel-score-handler collect-scores-for-book)