% generic paper parameters
paperfile = \papersize + ".ly";
+% paperfile = "a4.ly";
\include \paperfile;
\include "paper.ly";
internote = \interline / 2.0;
staffline = \interline / 10.0;
-beam_thickness = 0.48 * (\interline - \staffline);
+beam_thickness = 0.52 * (\interline - \staffline);
interbeam = (2.0 * \interline - \beam_thickness) / 2.0;
interbeam4 = (3.0 * \interline - \beam_thickness) / 3.0;
+%
+% stems and beams
+%
+% not used for beams
+stem_length = 7.0*\internote;
+%
+% stems in unnatural (forced) direction should be shortened,
+% according to [Roush & Gourlay]. Their suggestion to knock off
+% a whole staffspace seems a bit drastical though?
+%
+forced_stem_shorten = 1.0 * \interline;
+%
+% there are several ways to calculate the direction of a beam
+%
+% * MAJORITY : number count of up or down notes
+% * MEAN : mean centre distance of all notes
+% * MEDIAN : mean centre distance weighted per note
+%
+% enum Dir_algorithm { DOWN=-1, UP=1, MAJORITY=2, MEAN, MEDIAN };
+%
+beam_dir_algorithm = 2.0;
+%
+%
% some beam-stemlength settings...
%
% beam_*1 : multiplicity < beam_multiple_break
% OSU: suggested gap = ss / 5;
slur_x_gap = \interline / 5.0;
slur_x_minimum = 2.0 * \interline;
-slur_slope_damping = 0.3;
+slur_slope_damping = 0.5;
tie_x_minimum = \slur_x_minimum;
tie_x_gap = \slur_x_gap;
tie_slope_damping = 0.3;
--- /dev/null
+c'4 d e f g a b c
+
+% A simple scale in Mudela.
+%
+% Type:
+%
+% ly2dvi example-1
+% xdvi example-1 # or your dvi viewer here
+%
+% For more elaborate examples see twinkle.ly, kortjakje.ly and mutopia/*.
+%
+% A docmument on Mudela is under construction: Documentation/tex/mudela.doc
+% (available as .ps from the website too).