+2003-06-15 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+
+ * scripts/lilypond-book.py (process_lilypond_blocks): opps.
+
2003-06-15 Heikki Junes <hjunes@cc.hut.fi>
* README.mandrake: Change lilypond-extras to lilypond-documentation.
2003-06-14 Han-Wen Nienhuys <hanwen@cs.uu.nl>
- * input/test/dpncnt.ly,part-combine-score.ly: remove.
+ * input/test/dpncnt.ly,part-combine-score.ly: remove.
* VERSION (PACKAGE_NAME): release 1.7.21
\score{
\notes \transpose c' c'{
-% this property doesn't appear to change the output in 1.7.19.
-\property Voice.Beam \set #'position-callbacks =
- #`(,Beam::least_squares
- ,Beam::check_concave
- ,Beam::slope_damping
- ,Beam::shift_region_to_valid
-
- )
a'8-[ <<a' g''>>]
- c-[ <<c e,>>]
a'16-[ <<a' g''>>]
- c-[ <<c e,>>]
a'32-[ <<a' g''>>]
- c-[ <<c e,>>]
+ a'8-[ <<f' c''>>]
+ a'16-[ <<f' c''>>]
+ a'32-[ <<f' c''>>]
+ a'16-[ <<f' c''>>]
+ c8-[ <<c e,>>]
+ c16-[ <<c e,>>]
+ c32-[ <<c e,>>]
}
\paper{
-
- linewidth = 66.0\mm
+ raggedright = ##t
}
}
%% new-chords-done %%
-
-% Generated automatically by: lilypond-book.py
-% options are filename=/var/fred/cvs/savannah/lilypond/input/test/trills.ly printfilename
-
\paper {
linewidth = 433.619940\pt
(molecule-callback . ,Beam::brew_molecule)
(concaveness-gap . 2.0)
(concaveness-threshold . 0.08)
+
(positions . (#f . #f))
(position-callbacks . (,Beam::least_squares
,Beam::check_concave
(flag-width-function . ,beam-flag-width-function)
(damping . 1)
(auto-knee-gap . 5.5)
- (font-name . "cmr10")
+
+ ;; only for debugging.
+; (font-name . "cmr10")
+
(space-function . ,Beam::space_function)
(meta . ((interfaces . (staff-symbol-referencer-interface beam-interface spanner-interface))))
))
(Stem
. (
+
+ ;; this list is rather long. Trim --hwn
(before-line-breaking-callback . ,Stem::before_line_breaking)
(molecule-callback . ,Stem::brew_molecule)
(thickness . 1.3)
newchunks = []
# Count sections/chapters.
for c in chunks:
- cs = []
+ cs = [c]
if c[0] == 'lilypond':
cs = schedule_lilypond_block (c)
elif c[0] == 'numcols':
paperguru.m_num_cols = c[2]
elif c[0] == 'multicols':
paperguru.m_multicols = c[2]
+
newchunks += cs
return newchunks