]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.5
authorfred <fred>
Tue, 26 Mar 2002 22:43:20 +0000 (22:43 +0000)
committerfred <fred>
Tue, 26 Mar 2002 22:43:20 +0000 (22:43 +0000)
14 files changed:
input/test/allfontstyle.ly
input/test/auto-beam-4-8.ly
input/test/auto-beam-override.ly
input/test/bar-number.ly
input/test/beam-urg.ly
input/test/coda-kludge.ly
input/test/force-hshift.fly
input/test/hshift.fly
input/test/multi-measure-rest.ly
input/test/no-stem-extend.fly
input/test/orchestalpart.ly
input/test/perform-grace.fly
input/test/rests.fly
input/test/sizes.fly

index aae8b05cd7b18dcf27ab14554af31c84e8369325..f463eefda34a875ccba956508f4df17d18540f65 100644 (file)
@@ -3,7 +3,7 @@
 
 \score {  \notes
        \relative c'' \context Staff {
-               \property Staff.textEmptyDimension = "1"
+               \emptyText
                \repeat "semi" 2 { \time 4/4; c4^"cuivr\\'e"_\fermata }
                 \alternative {
                        { \property Voice.textStyle = "italic" d-4_"cantabile" }
index c10e2464d1d9b8b638ab4e1d70d02dfa5748b581..5292a25354839edfbc87910c63ec591085c225a6 100644 (file)
@@ -17,7 +17,7 @@
      |  |  |   |--|
     x| x| x|  x| x|
 %}
-     \property Voice.beamAutoEnd = "2/4"
+     \property Voice.beamAutoEnd = #(make-moment 2 4)
      c8 c c c16 c
 
   }
index ad378a58375dc492ba0c49e71e372f90a27e37d1..ba6d5dcc4d6429d6f019eab8cd7cbcbc28c4e90a 100644 (file)
@@ -17,7 +17,7 @@
        c8 c c c
        c16 c c c c c c c
        % from here on consider ending beam every 1/4 note
-       \property Voice.beamAutoEnd = "1/4"
+       \property Voice.beamAutoEnd = #(make-moment 1 4)
        c8 c c c
        % manually override autobeam with weird beaming
        c8 [c c] c
@@ -25,7 +25,7 @@
        c8 c c4
        r8 c c c
        % no autobeaming
-       \property Voice.beamAuto = "0"
+       \property Voice.beamAuto = #f
        c8 c c c
     }
     \paper{
index aa8dd849ebaf7c64812b5474de3aae56e978bef9..731be524696138b60a4d9e424c68a73ba4234a0a 100644 (file)
@@ -2,7 +2,7 @@
 
        c1 c1 c1 c1\break
        c1 c1 c1 c1\break
-         \property Score.currentBarNumber = "25"
+         \property Score.currentBarNumber = 25
        c1 c1 c1 c1
 }
  \paper{ \translator {\BarNumberingStaffContext }}}
index 681389210dae7251edc5ecf963b0a74a0d033599..ba7bf68498a2b7d165024ce61a95b3fe0568aaa4 100644 (file)
@@ -1,8 +1,8 @@
 \score{
        \notes\relative c''{
-               \property Score.beamquantisation = \none
-               % \property Score.beamquantisation = \normal
-               % \property Score.beamquantisation = \traditional
+               \property Score.beamQuantisation = #'none
+               % \property Score.beamQuantisation = #'normal
+               % \property Score.beamQuantisation = #'traditional
                [g16 e f g]
        }
        \paper{
index 2dab828183fb3cbbeb986abbeb9da0e5d2c74f1e..80920b1240dfab41e961feecf06e4cb16fd8834c 100644 (file)
@@ -31,7 +31,7 @@ Hi,
                \context Staff \notes\relative c''{
                        c c c c
                        % coda-klugde: let volta span only one bar
-                       \property Staff.voltaSpannerDuration = "1"
+                       \property Staff.voltaSpannerDuration = #(make-moment 1 1)
                        \repeat semi 5 { d d d d }
                                \alternative { { e e e e f f f f }
                        { g g g g } }
index 06c92d55fe5ed8324438e83fbd936eefe37c5715..c4849588c62c6cf75f9e88d457e61377d798f105 100644 (file)
@@ -12,7 +12,7 @@
                %\stemdown \shifton
                \property Voice.verticalDirection=-1 
                        \property Voice.horizontalNoteShift=1
-               \property Voice.forceHorizontalShift = "-0.1"
+               \property Voice.forceHorizontalShift = #-0.1
                <bes f'>
        }
 >
index b6ea8f09c47be625bed699a4f011a563be711a15..a6ea6b9de624badde648734601ec3d0134a01b09 100644 (file)
@@ -1,10 +1,10 @@
 
 \context Staff <
-       \context Voice =VA  {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = "0" g'' }
-       \context Voice =VB  {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = "1" e }
-       \context Voice =VC  {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = "2" c }
-       \context Voice =VD  {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = "3" a }
-       \context Voice =VE  {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = "4" f }
+       \context Voice =VA  {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = 0 g'' }
+       \context Voice =VB  {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = 1 e }
+       \context Voice =VC  {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = 2 c }
+       \context Voice =VD  {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = 3 a }
+       \context Voice =VE  {\property Voice.verticalDirection=1 \property Voice.horizontalNoteShift = 4 f }
 >
 
 
index 696b9bad5bb8889daa5b50cb61299e84aa5bde59..57b51f116a2b6ee00f01b27c70cef0a054ae20e9 100644 (file)
@@ -1,7 +1,10 @@
 
 \score { \notes { \time 3/4; \key cis; R2.*5 R2. R2.*5 }
        \paper {
-       \translator { \ScoreContext skipBars = 1; }
+       \translator {
+               \ScoreContext
+               skipBars = ##t
+       }
        linewidth = -1.;        
        }
 }
index 35ef31eac465d9bd2b7b5f9880e9d505d6579b3d..9b0cd4570a7394326d17b003b87e4b486f7819af 100644 (file)
@@ -2,12 +2,12 @@
 \context Staff <
        \context Voice = "a" { 
                f2 f8 g a b 
-               \property Voice.noStemExtend = 1
+               \property Voice.noStemExtend = ##t
                f2 f8 g a b
        }
        \context Voice = "b" { 
                c''2 c8 b a g
-               \property Voice.noStemExtend = 1
+               \property Voice.noStemExtend = ##t
                c2 c8 b a g
        }
 >
index 76916287b6c8dea617b3a501048eb6b1df96c395..e36598c3d9c6145f7ffbfa3e65cd22a954e94397 100644 (file)
@@ -1,7 +1,7 @@
 
 \score
 {
-       \notes { c1 c1 \property Score.skipBars = 1 c1 \break R1*8 c1 c1 c1 c1
+       \notes { c1 c1 \property Score.skipBars = ##t c1 \break R1*8 c1 c1 c1 c1
        }
        \paper {
 
index c24ded8cb8a7bbeb30b771d95095360db2ed080f..1927d3f3a4aabe8255dba9db5f81a8b1d7b07845 100644 (file)
@@ -1,5 +1,5 @@
 \context Voice=VoiceOne
-\property Voice.graceFraction = "1/4"
+\property Voice.graceFraction = #(make-moment 1 4) 
 \grace c8 d4 d d d d
-\property Voice.graceFraction = "1/2"
+\property Voice.graceFraction = #(make-moment 1 2)
 \grace { e16 f e f } d4 d d d d 
index d01cc5bcd5d7f58f943b0cd0b557457360799380..b1a6fb64191c926858c0b8db74a7e7e0da95e6ec 100644 (file)
@@ -1,5 +1,5 @@
 r\longa r\breve r1 r2 r4 r8 r16 r32 r64 r128 r128 
 \property Staff.restStyle = "mensural"
-\property Staff.textEmptyDimension = 1
+\emptyText
 r\longa^"restStyle = \"mensural\"" r\breve r1 r2 r4 r8 r16 r32 r64 r128 r128 
 
index 00923366a4afce7b17208ddc37192ef6f764b3fc..78258d2dc6f38d2f795e228ec7efae8e981bb38a 100644 (file)
@@ -2,9 +2,9 @@
 
 c'4 c4
 
-\property Voice.fontsize= "-2"
+\property Voice.fontsize= -2
 b16 * 1 / 2 (
-\property Voice.fontsize= "0" )
+\property Voice.fontsize= 0 )
 g4 *31/32
 
 a a g2