]> git.donarmstrong.com Git - lilypond.git/commitdiff
new file.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 4 Sep 2002 23:47:33 +0000 (23:47 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 4 Sep 2002 23:47:33 +0000 (23:47 +0000)
ChangeLog
Documentation/user/refman.itely
input/test/poly-metric.ly [new file with mode: 0644]

index c0703d4baf135948b1d73358a743cc16c0072d0a..1d459f469f9d8c787a12ade42ca99379c92a6d1b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2002-09-05  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * input/test/poly-metric.ly: new file.
+
        * scripts/lilypond-book.py (output_verbatim): python 2.2 workaround.
 
        * scm/documentation-lib.scm (scm->string): print procedure name in
index cce9320f130c7468192b936270706b13a44571fa..0d981ae70c973730eabd02934c1e987e72edc61e 100644 (file)
@@ -1939,9 +1939,9 @@ special symbols in text scripts.
 @cindex ornaments
 @cindex grace notes
 
-Grace notes are ornaments  are written out ornaments
-@lilypond[relative=2,verbatim,ifragment] 
-  c4  \grace c16  c4 \grace { [c16 d16] } c4 
+Grace notes are ornaments that are written out
+@lilypond[relative=2,verbatim,ifragment] c4 \grace c16 c4 \grace {
+[c16 d16] } c4
 @end lilypond
 
 In normal notation, grace notes are supposed to take up no logical
diff --git a/input/test/poly-metric.ly b/input/test/poly-metric.ly
new file mode 100644 (file)
index 0000000..d8e9203
--- /dev/null
@@ -0,0 +1,30 @@
+\header {
+    texidoc = "Polymetric music with aligned note values can be written
+ by moving the timing engraver to staff context."
+}
+
+\score {
+
+    \notes
+    <
+       \context Staff = SA
+       { % \time hardcodes \property Score.XXX = YYY
+       \property Staff.timeSignatureFraction = #'(4 . 4)
+       \property Staff.measureLength = #(make-moment 1 1)
+       \property Staff.beatLength = #(make-moment 1 4)
+       c1 c1 c1  }
+       \context Staff= SB {
+       \property Staff.timeSignatureFraction = #'(3 . 4)
+       \property Staff.measureLength = #(make-moment 3 4)
+       \property Staff.beatLength = #(make-moment 1 4)
+       c2. c2.  c2. c2.  }
+
+    >           
+
+    \paper{
+    \translator{ \ScoreContext
+    \remove "Timing_engraver" }
+    \translator{ \StaffContext
+    \consists "Timing_engraver"}
+}
+}