]> git.donarmstrong.com Git - lilypond.git/commitdiff
(texidoc): new file.
authorhanwen <hanwen>
Mon, 16 Jun 2003 14:43:57 +0000 (14:43 +0000)
committerhanwen <hanwen>
Mon, 16 Jun 2003 14:43:57 +0000 (14:43 +0000)
ChangeLog
input/regression/size11.ly
input/regression/size13.ly
input/regression/size16.ly
input/regression/size20.ly
input/regression/size23.ly
input/regression/size26.ly
input/test/spanner-after-break-tweak.ly [new file with mode: 0644]

index 05f739daeebb3c6542aa036138a619456a315a47..dc1c90ec3be09e71d0e17e98cf4bc10d5d34343d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2003-06-16  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * input/test/spanner-after-break-tweak.ly (texidoc): new file.
+
        * input/test/chords-without-melody.ly (texidoc): add from
        input/just-friends.ly
 
index 5c334fb48f7de1d1e26ee38603be00abce2cd54c..c7260910ccfb42933841fa1951ebb67d60f86caa 100644 (file)
@@ -6,7 +6,13 @@ Fonts are  available in a default set of sizes: 11, 13, 16, 20, 23 and
 26pt staffheight.  Sizes of the text fonts and symbol fonts are made
 to match the staff dimensions.    
 "
+foollilypondbook = "
+\score
+"
+
 }
 
+
+
 \include "paper11.ly"
 \include "allfontstyle.ly"
index 400f627316dbaa7feb863e79debdeca4f1e135cd..9a7cec06ab891af7afad619f9c7e69b31fb4c075 100644 (file)
@@ -1,4 +1,7 @@
 \version "1.7.18"
+foollilypondbook = "
+\score
+"
 
 \include "paper13.ly"
 \include "allfontstyle.ly"
index c6a733310312b22f98eb0d15975e9e7e193300a9..d7501fe5763dd149c3a9c6913b45397a8b4154a9 100644 (file)
@@ -1,4 +1,8 @@
 \version "1.7.18"
+foollilypondbook = "
+\score
+"
+
 
 \include "paper16.ly"
 \include "allfontstyle.ly"
index a94b47a8d35900a2c58412b0247e899cb6b78829..ee51d250a51c8abf3a6341043c28967d690ae582 100644 (file)
@@ -1,4 +1,8 @@
 \version "1.7.18"
+foollilypondbook = "
+\score
+"
+
 
 \include "paper20.ly"
 \include "allfontstyle.ly"
index 4f64812328f2e6a038c6aa75052e458071471b90..bb05df5d0c7655e7b1a3f15555ab43b007b715bf 100644 (file)
@@ -1,4 +1,7 @@
 \version "1.7.18"
+foollilypondbook = "
+\score
+"
 
 \include "paper23.ly"
 \include "allfontstyle.ly"
index 91d624fd6e61982237d89819bc5371516570f1d8..e8ab3681d52ad820dfedc10c189cd2dde402053f 100644 (file)
@@ -1,4 +1,8 @@
 \version "1.7.18"
+foollilypondbook = "
+\score
+"
+
 
 \include "paper26.ly"
 \include "allfontstyle.ly"
diff --git a/input/test/spanner-after-break-tweak.ly b/input/test/spanner-after-break-tweak.ly
new file mode 100644 (file)
index 0000000..c7b80b3
--- /dev/null
@@ -0,0 +1,23 @@
+\version "1.7.21"
+\header
+{
+    
+texidoc = "To selectively tweak spanners after the linebreaking
+process, Scheme code must be used.  In this simple example, the tie
+after the line break is set transparent."
+
+
+}
+
+\score { \notes {
+    \property Voice.Tie \set #'after-line-breaking-callback
+    = #(lambda (x)
+       (if (eq? (cadr (ly:get-broken-into (ly:get-original x))) x)
+        (ly:set-grob-property! x 'transparent #t)
+       ))
+    
+    c'1 ~ \break c'1
+
+  }
+        \paper { raggedright = ##t }
+}