]> git.donarmstrong.com Git - lilypond.git/blob - ly/declarations-init.ly
* Documentation/user/instrument-notation.itely (Laissez vibrer
[lilypond.git] / ly / declarations-init.ly
1 \version "2.6.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 stopStaff = #(make-event-chord (list (make-span-event 'StaffSpanEvent STOP)))
43 startStaff = #(make-event-chord (list (make-span-event 'StaffSpanEvent START)))
44
45
46 %
47 % Code articulation definitions
48 %
49 noBeam = #(make-music 'BeamForbidEvent) 
50 pipeSymbol = #(make-music 'BarCheck)
51 bracketOpenSymbol = #(make-span-event 'BeamEvent START)
52 bracketCloseSymbol = #(make-span-event 'BeamEvent STOP)
53 tildeSymbol = #(make-music 'TieEvent)
54 parenthesisOpenSymbol =  #(make-span-event 'SlurEvent START)
55 parenthesisCloseSymbol = #(make-span-event 'SlurEvent STOP)
56 escapedExclamationSymbol = #(make-span-event 'CrescendoEvent STOP)
57 escapedParenthesisOpenSymbol = #(make-span-event 'PhrasingSlurEvent START)
58 escapedParenthesisCloseSymbol = #(make-span-event 'PhrasingSlurEvent STOP)
59 escapedBiggerSymbol = #(make-span-event 'DecrescendoEvent START)
60 escapedSmallerSymbol = #(make-span-event 'CrescendoEvent START)
61
62
63
64 \include "scale-definitions-init.ly"
65
66 melisma = #(make-span-event 'ManualMelismaEvent START)
67 melismaEnd = #(make-span-event 'ManualMelismaEvent STOP)
68 laissezVibrer = #(make-music 'LaissezVibrerEvent)
69                   
70 \include "grace-init.ly"
71 \include "midi-init.ly"
72 \include "paper-defaults.ly"
73
74 \layout {
75     mm = #(ly:output-def-lookup $defaultpaper 'mm)
76     unit = #(ly:output-def-lookup $defaultpaper 'unit)
77
78     in = #(* 25.4 mm)
79     pt = #(/  in 72.27)
80     cm = #(* 10 mm)
81     
82     \include "engraver-init.ly"
83
84     #(set-paper-dimension-variables (current-module))
85     
86 }
87
88
89 #(set-default-paper-size "a4")
90
91
92 partCombineListener = \layout {
93     \context {
94         \Voice
95         \consists Note_heads_engraver
96         \consists Rest_engraver
97         \type "Recording_group_engraver"
98         recordEventSequence = #notice-the-events-for-pc
99     }
100     \context {
101         \Score
102         skipTypesetting = ##t
103         ignoreBarChecks = ##t 
104     }
105 }
106
107 #(set-part-combine-listener partCombineListener)
108
109 \include "dynamic-scripts-init.ly"
110 \include "spanners-init.ly"
111 \include "property-init.ly"
112
113 setDefaultDurationToQuarter = { c4 }
114
115 %% MAKE-HASH-TABLE in GUILE 1.6 takes mandatory size parameter.
116 #(define musicQuotes (make-hash-table 29))
117
118 #(define toplevel-book-handler print-book-with-defaults)
119 #(define toplevel-music-handler collect-music-for-book)
120 #(define toplevel-score-handler collect-scores-for-book)
121 #(define toplevel-text-handler collect-scores-for-book)
122