]> git.donarmstrong.com Git - lilypond.git/commitdiff
(texidoc): new file.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 9 Mar 2003 14:11:05 +0000 (14:11 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 9 Mar 2003 14:11:05 +0000 (14:11 +0000)
ChangeLog
input/regression/beam-manual-beaming.ly [new file with mode: 0644]

index bbbe9a6a27c5609930fa3a91752a934186ec82be..764540539f1c4e1a0b38ebced4b6638ddeba1418 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2003-03-09  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * input/regression/beam-manual-beaming.ly (texidoc): new file.
+
        * lily/sequential-iterator.cc (descend_to_child): call
        descend_to_child() for all types of music.
 
diff --git a/input/regression/beam-manual-beaming.ly b/input/regression/beam-manual-beaming.ly
new file mode 100644 (file)
index 0000000..525f559
--- /dev/null
@@ -0,0 +1,24 @@
+\header {
+texidoc =  
+"Beaming can be overidden for individual stems."
+}
+\score {
+\notes \relative c'' {
+ [c32 c
+
+
+%% WARNING: #'beaming is written, so this
+%% property can not be shared between objects. Always use
+%%  \once.
+%%
+
+
+  \once \property Voice.Stem \override
+   #'beaming = #(cons (list   1 2) (list 0 2 4))
+c
+  \once \property Voice.Stem \override
+   #'beaming = #(cons (list 0 2 4) (list 0 1 4))
+c c c]
+}
+\paper{ linewidth = -1.0 }
+}