]> git.donarmstrong.com Git - lilypond.git/blob - ly/property-init.ly
release: 1.5.33
[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 = #(context-spec-music (make-voice-props-revert) "Voice")
82 voiceOne = #(context-spec-music (make-voice-props-set 0) "Voice")
83 voiceTwo = #(context-spec-music (make-voice-props-set 1) "Voice")
84 voiceThree =#(context-spec-music (make-voice-props-set 2) "Voice")
85 voiceFour = #(context-spec-music (make-voice-props-set 3) "Voice")
86
87 % There's also dash, but setting dash period/length should be fixed.
88 slurDotted = \property Voice.Slur \override #'dashed = #1
89 slurSolid = \property Voice.Slur \revert #'dashed
90 tieDotted = \property Voice.Tie \override #'dashed = #1
91 tieSolid = \property Voice.Tie \revert #'dashed
92
93         
94 tiny  = 
95         \property Voice.fontSize= -2
96
97
98 small  = 
99         \property Voice.fontSize= -1
100
101
102 normalsize = {
103         \property Voice.fontSize= 0
104 }
105
106 normalkey = {
107         \property Staff.keyOctaviation = ##f
108 }
109
110 specialkey = {
111         \property Staff.keyOctaviation = ##t
112 }
113
114 % End the incipit and print a ``normal line start''.
115 endincipit = \notes{
116     \partial 16 s16  % Hack to handle e.g. \bar ".|" \endincipit
117     \context Staff \outputproperty #(make-type-checker 'clef-interface) #'full-size-change = ##t
118     \context Staff \outputproperty #(make-type-checker 'clef-interface) #'non-default = ##t
119     \bar ""
120 }
121
122 autoBeamOff = \property Voice.noAutoBeaming = ##t
123 autoBeamOn = \property Voice.noAutoBeaming = ##f
124
125 emptyText = \property Voice.textNonEmpty = ##f
126 fatText = \property Voice.textNonEmpty = ##t
127
128 showStaffSwitch = \property Voice.followVoice = ##t
129 hideStaffSwitch = \property Voice.followVoice = ##f
130
131 % FIXME: Move this docu (to where?)
132
133 % accidentals as they were common in the 18th century.
134 defaultAccidentals = {
135   \property Score.extraNatural = ##t
136   \property Score.autoAccidentals = #'((measure-same-octave . 0))
137   \property Score.autoCautionaries = #'()  
138 }
139
140 % accidentals as suggested by Kurt Stone, Music Notation in the 20th century.
141 % This includes all the default accidentals, but accidentals also needs cancelling
142 % in other octaves and in the next measure.
143 modernAccidentals = {
144   \property Score.extraNatural = ##f
145   \property Score.autoAccidentals = #'((measure-same-octave . 0) (measure-any-octave . 0) (measure-any-octave . 1))
146   \property Score.autoCautionaries = #'()  
147 }
148
149 % the accidentals that Stone adds to the old standard as cautionaries
150 modernCautionaries = {
151   \property Score.extraNatural = ##f
152   \property Score.autoAccidentals = #'((measure-same-octave . 0))
153   \property Score.autoCautionaries = #'((measure-any-octave . 0) (measure-any-octave . 1))  
154 }
155
156 % Do not reset the key at the start of a measure.  Accidentals will be
157 % printed only once and are in effect until overridden, possibly many
158 % measures later.
159 noResetKey = {
160   \property Score.autoAccidentals = #'((measure-same-octave . #t))
161   \property Score.autoCautionaries = #'()
162 }
163
164 % do not set localKeySignature when a note alterated differently from
165 % localKeySignature is found.
166 % Causes accidentals to be printed at every note instead of
167 % remembered for the duration of a measure.
168 % accidentals not being remembered, causing accidentals always to be typeset relative to the time signature
169 forgetAccidentals = {
170   \property Score.autoAccidentals = #'((measure-same-octave . -1))
171   \property Score.autoCautionaries = #'()  
172 }
173
174
175 % To remove a Volta bracket or some other graphical object,
176 % set it to turnOff. Example: \property Staff.VoltaBracket = \turnOff
177
178 turnOff = #'()