]> git.donarmstrong.com Git - lilypond.git/blob - ly/params-as.ly
release: 1.3.61
[lilypond.git] / ly / params-as.ly
1 % params-as.ly
2 % generic paper parameters
3
4 #'staff-height = \staffheight;
5
6 %%paperfile = \papersize + ".ly";
7 %%% paperfile = "a4.ly";
8 %%\include \paperfile;
9 %hsize = 60.0\char;
10 %vsize = 60.0\char;  %?
11
12 %%\include "paper.ly";
13 linewidth = 60.0\char;
14 textheight = 60.0\char;
15 indent = 8.0\char;
16
17 staffspace = (\staffheight - 1.0 ) / 4.0;
18 stafflinethickness = \staffspace / 2.0;
19
20 % deprecated
21 interline = \staffspace;
22
23 % urg, need grace_ versions of these too?
24 beam_thickness = 0.52 * (\staffspace - \stafflinethickness);
25
26 #'beam-thickness = \beam_thickness;  %% UGR
27
28
29 interbeam = (2.0 * \staffspace + \stafflinethickness - \beam_thickness) / 2.0;
30 interbeam4 = (3.0 * \staffspace - \beam_thickness) / 3.0;
31
32 %{
33 The space taken by a note is determined by the formula 
34
35 arithmetic_multiplier * ( c + log2 (time) ))
36
37 where code(time) is the amount of time a note occupies.  The value
38 of code(c) is chosen such that the smallest space within a measure is
39 arithmetic_basicspace.  The smallest space is the one following the
40 shortest note in the measure.  Typically arithmetic_basicspace is set
41 to the width of a quarter note head.
42 %}
43 arithmetic_basicspace = 2.;
44 arithmetic_multiplier = 0.9 * \quartwidth ;
45
46
47 % catch suspect beam slopes, set slope to zero if
48 % outer stem is lengthened more than
49 beam_lengthened = 0.2 * \staffspace;
50 % and slope is running away steeper than
51 beam_steep_slope = 0.2 / 1.0;
52
53 %{
54 dit(code(slur_x_gap)) Horizontal space between note and slur.  Set to
55 code(\staffspace / 5) by default.  
56
57 %}
58 % OSU: suggested gap = ss / 5;
59 slur_x_gap = \staffspace / 5.0;
60 slur_y_gap = 0.25 * \staffspace;
61 slur_y_free = 0.75 * \staffspace;
62 slur_x_minimum = 1.5 * \staffspace;
63
64
65 % use tangent controls or area asymmetry?
66 bezier_area = 1.0;
67 bezier_asymmetry = 1.0;
68 bezier_beautiful = 2.0;
69
70 % The constants that define the valid areas for the middle control points
71 % Used in de_uglyfy.  Bit empirical.
72 bezier_control1 = 1.5;
73 bezier_control2 = 0.8;
74 bezier_control3 = -2.0;
75
76 % URG: the magic constants for area asymmetry
77 bezier_pct_c0 = -0.2;
78 bezier_pct_c3 = 0.000006;
79 bezier_pct_out_max = 0.8;
80 bezier_pct_in_max = 1.2;
81 bezier_area_steps = 1.0;
82
83 bezier_before_blowfit = 0.5;
84
85 %{
86 Like beams, slurs often aren't as steep as the notes they encompass.
87 This sets the amount of damping.
88 %}
89 % slope damping: keep dy/dx < slur_slope_damping
90 slur_slope_damping = 0.3;
91 slur_interstaff_slope_damping = 0.6;
92 % height damping: keep h/dx < slur_height_damping
93 slur_height_damping = 0.4;
94 slur_interstaff_height_damping = 0.5;
95 % snap to stem if slur ends closer to stem than
96 slur_snap_to_stem = 1.75 * \staffspace;
97 slur_interstaff_snap_to_stem = 2.5 * \staffspace;
98 % maximum dy change allowed by snapping
99 slur_snap_max_slope_change = 0.5;
100 slur_interstaff_snap_max_slope_change = 0.5;
101
102
103
104 tie_x_minimum = \staffspace + \slur_x_minimum;
105 % OSU: tie gap == slur gap
106 tie_x_gap = \slur_x_gap;
107 tie_y_gap = 0.25 * \staffspace;
108 % length of a tie that's a staffspace high
109 tie_staffspace_length = 4.0 * \staffspace;
110
111 % ugh: rename to bow (in bezier.cc and fonts.doc too...)
112
113 % used to be 1.4 .
114 slur_thickness = 1.2 * \stafflinethickness;
115 tie_thickness = 1.2 * \stafflinethickness;
116
117 %{
118  Specifies the maximum height of slurs.
119 %}
120 slur_height_limit = \staffheight;
121
122
123 %{
124 Specifes the ratio of slur hight to slur width
125 to aim for.  Default value is 0.3. 
126 %}
127
128 % slur_ratio = 0.3;
129 % try bit flatter slurs
130 slur_ratio = 0.25;
131 slur_clip_ratio = 1.2;
132 slur_clip_height = 3.0 * \staffheight;
133 slur_clip_angle = 100.0;
134 slur_rc_factor = 2.4;
135
136 % ugh
137 notewidth = 3.0\char;
138
139 gourlay_energybound = 100000.;
140 %{
141 Maximum number of measures per line to try when using Gourlay
142 method. 
143 %}
144 gourlay_maxmeasures = 10.;
145
146 bar_kern = 1.0\char;
147 bar_thinkern = 1.0\char;
148 barthick_thick = 2.0\char;
149 barthick_score = 1.0\char;
150 barthick_thin = 1.0\char;
151
152 bracket_arch_thick = \staffspace / 3.0;
153 bracket_width = 2.0 * \staffspace;
154 bracket_thick = 2.0 * \stafflinethickness;
155 bracket_arch_height = 1.5 * \staffspace;
156 bracket_arch_width = \bracket_arch_height;
157 bracket_arch_angle = 50.0;
158
159 tuplet_spanner_gap = 2.0 * \staffspace;
160 tuplet_thick = 1.0\char;
161 volta_thick = 1.0\char;
162 volta_spanner_height = 1.0\char;
163
164 % relative thickness of thin lines  1.6 : 1 : 0.8
165 stemthickness = 1.0\char;
166 rulethickness = 1.0\char;
167
168
169 extender_height = 0.8*\stafflinethickness;
170
171 hyphen_thickness = 0.05*\font_normal;
172 hyphen_height = 0.2*\font_normal;
173 hyphen_minimum_length = 0.25*\font_normal;
174
175 % Multi-measure rests
176 multi_measure_rest_x_minimum = 2.5*\staffheight;
177 multi_measure_rest_padding = 2.0 *\staffspace;
178 multi_measure_rest_expand_limit = 10.0;
179
180 % chop off this much when next to pp / ff sign.
181 crescendo_shorten = 4.0 * \staffspace;
182 crescendo_thickness   = \stafflinethickness;
183 crescendo_height = 0.666 * \staffspace;
184
185 % in internote.
186 restcollision_minimum_dist = 3.0;
187 restcollision_minimum_beamdist = 1.5;
188
189
190 % unit for note collision resolving
191 collision_note_width = \notewidth;      %ugh.
192
193 % deprecated!
194 postBreakPadding = 0.0;
195
196 % optical correction amount.
197 stemSpacingCorrection = 0.5*\staffspace;
198
199
200 %{
201  relative strength of space following breakable columns (eg. prefatory matter)
202  %}
203 breakable_column_space_strength = 2.0; 
204
205 % space after inline clefs and such get this much stretched
206 decrease_nonmus_spacing_factor = 1.0 ;
207
208 %{
209  space before musical columns (eg. taken by accidentals) get this much
210  stretched when they follow a musical column, in absence of grace notes.
211
212  0.0 means no extra space (accidentals are ignored)
213 %}
214 musical_to_musical_left_spacing_factor = 0.4;
215
216 %{
217  stretch space this much if there are grace notes before the column
218 %}
219 before_grace_spacing_factor = 1.2;
220
221 %{
222 If columns do not have spacing information set, set it to this much
223 %}
224 loose_column_distance = 2.0 * \staffspace;
225
226 %{
227 Relative cost of compressing (vs. stretching).  Increasing this
228 will cause scores to be set looser
229 .
230 %}
231
232 compression_energy_factor = 0.6;
233
234 % if stem is on middle line, choose this direction.
235 stem_default_neutral_direction = 1.0;
236
237 % in staffspace
238 articulation_script_padding_default = 1.0;
239
240 % Backward compatibility -- has no function; 
241 Gourlay = 0.0;
242 Wordwrap =0.0;
243
244 \include "engraver.ly";
245
246
247 #'margin-shape = #'()
248
249
250
251 #'Local_key_item::left-padding = #'0.2
252 #'Local_key_item::right-padding = #'0.4
253
254 #'Staff_symbol::staff-space = \staffspace ;
255 #'Staff_symbol::line-count = #5
256