]> git.donarmstrong.com Git - lilypond.git/blob - ly/property-init.ly
patch::: 1.5.24.rz2: Accidentals Patch 1.5.24
[lilypond.git] / ly / property-init.ly
1 % property-init.ly
2
3 \version "1.3.146"
4
5 stemUp = \property Voice.Stem \set #'direction = #1
6 stemDown = \property Voice.Stem \set #'direction = #-1 
7 stemBoth= \property Voice.Stem \revert #'direction
8
9 slurUp   = \property Voice.Slur \override #'direction = #1
10 slurDown = \property Voice.Slur \override #'direction = #-1
11 slurBoth = \property Voice.Slur \revert #'direction 
12 shiftOn  = \property Voice.NoteColumn \override #'horizontal-shift = #1
13 shiftOnn  = \property Voice.NoteColumn \override #'horizontal-shift = #2
14 shiftOnnn  = \property Voice.NoteColumn \override #'horizontal-shift = #3
15 shiftOff  = \property Voice.NoteColumn \revert #'horizontal-shift 
16
17 tieUp = \property Voice.Tie \override #'direction = #1
18 tieDown = \property Voice.Tie \override #'direction = #-1
19 tieBoth = \property Voice.Tie \revert #'direction 
20
21 dynamicUp  = {
22   \property Voice.DynamicText \override #'direction = #1
23   \property Voice.DynamicLineSpanner \override #'direction = #1
24 }
25 dynamicDown = {
26   \property Voice.DynamicText \override #'direction = #-1
27   \property Voice.DynamicLineSpanner \override #'direction = #-1
28 }
29 dynamicBoth = {
30   \property Voice.DynamicText \revert #'direction
31   \property Voice.DynamicLineSpanner \revert #'direction
32 }
33
34 scriptUp  = {
35   \property Voice.TextScript \override #'direction = #1
36   \property Voice.Script \override #'direction = #1
37 }
38 scriptDown = {
39   \property Voice.TextScript \override #'direction = #-1
40   \property Voice.Script \override #'direction = #-1
41 }
42 scriptBoth = {
43   \property Voice.TextScript \revert #'direction
44   \property Voice.Script \revert #'direction
45 }
46
47 dotsUp = \property Voice.Dots \override #'direction = #1
48 dotsDown = \property Voice.Dots \override #'direction = #-1
49 dotsBoth = \property Voice.Dots \revert #'direction 
50
51 % why doubly?
52 tupletUp  = {
53   \property Voice.TupletBracket \override #'direction = #1
54   \property Voice.TupletBracket \override #'direction = #1
55 }
56 tupletDown = {
57   \property Voice.TupletBracket \override #'direction = #-1
58   \property Voice.TupletBracket \override #'direction = #-1
59 }
60 tupletBoth = {
61   \property Voice.TupletBracket \revert #'direction
62   \property Voice.TupletBracket \revert #'direction
63 }
64
65
66
67 cadenzaOn = \property Score.timing = ##f
68 cadenzaOff = {
69   \property Score.timing = ##t
70   \property Score.measurePosition = #(make-moment 0 1)
71 }
72
73 newpage = {
74   \break
75   % urg, only works for TeX output
76   \context Score \outputproperty #(make-type-checker 'paper-column-interface)
77     #'between-system-string = #"\\newpage"
78 }
79
80 % dynamic dir?  text script, articulation script dir?   
81 oneVoice = {    
82   \stemBoth
83   \slurBoth
84   \tieBoth
85   \shiftOff
86 }
87
88 voiceOne = {
89   \stemUp
90   \slurUp
91   \tieUp
92   \dotsUp    
93 }
94
95 voiceTwo = {
96   \stemDown
97   \slurDown
98   \tieDown
99   \dotsDown  
100
101 }
102    
103 voiceThree = {
104   \stemUp
105   \slurUp
106   \tieUp
107   \shiftOn
108   \dotsUp
109 }
110
111 voiceFour = {
112   \stemDown
113   \slurDown
114   \tieDown
115   \shiftOn
116   \dotsDown
117 }
118
119 % There's also dash, but setting dash period/length should be fixed.
120 slurDotted = \property Voice.Slur \override #'dashed = #1
121 slurSolid = \property Voice.Slur \revert #'dashed
122 tieDotted = \property Voice.Tie \override #'dashed = #1
123 tieSolid = \property Voice.Tie \revert #'dashed
124
125         
126 tiny  = 
127         \property Voice.fontSize= -2
128
129
130 small  = 
131         \property Voice.fontSize= -1
132
133
134 normalsize = {
135         \property Voice.fontSize= 0
136 }
137
138 normalkey = {
139         \property Staff.keyOctaviation = ##f
140 }
141
142 specialkey = {
143         \property Staff.keyOctaviation = ##t
144 }
145
146 % End the incipit and print a ``normal line start''.
147 endincipit = \notes{
148     \partial 16 s16  % Hack to handle e.g. \bar ".|" \endincipit
149     \context Staff \outputproperty #(make-type-checker 'clef-interface) #'full-size-change = ##t
150     \context Staff \outputproperty #(make-type-checker 'clef-interface) #'non-default = ##t
151     \bar ""
152 }
153
154 autoBeamOff = \property Voice.noAutoBeaming = ##t
155 autoBeamOn = \property Voice.noAutoBeaming = ##f
156
157 emptyText = \property Voice.textNonEmpty = ##f
158 fatText = \property Voice.textNonEmpty = ##t
159
160 showStaffSwitch = \property PianoStaff.followVoice = ##t
161 hideStaffSwitch = \property PianoStaff.followVoice = ##f
162
163 % FIXME: Move this docu (to where?)
164
165 % accidentals as they were common in the 18th century.
166 defaultAccidentals = {
167   \property Score.extraNatural = ##t
168   \property Score.autoAccidentals = #'(same-octave)
169   \property Score.autoCautionaries = #'()  
170 }
171
172 % accidentals as suggested by Kurt Stone, Music Notation in the 20th century.
173 modernAccidentals = {
174   \property Score.extraNatural = ##f
175   \property Score.oneMeasureLazy = ##t
176   \property Score.autoAccidentals = #'(same-octave any-octave lazy-any-octave)
177   \property Score.autoCautionaries = #'()  
178 }
179
180 % the accidentals that Stone adds to the old standard as cautionaries
181 modernCautionaries = {
182   \property Score.extraNatural = ##f
183   \property Score.oneMeasureLazy = ##t
184   \property Score.autoAccidentals = #'(same-octave)
185   \property Score.autoCautionaries = #'(any-octave lazy-any-octave)  
186 }
187
188 % accidentals not being reset at the bar-lines
189 noResetKey = {
190   \property Score.oneMeasureLazy = ##f
191   \property Score.autoAccidentals = #'(lazy-same-octave)
192   \property Score.autoCautionaries = #'()
193 }
194
195
196 % To remove a Volta bracet or some other graphical object,
197 % set it to turnOff. Example: \property Staff.VoltaBracket = \turnOff
198
199 turnOff = #'()