]> git.donarmstrong.com Git - lilypond.git/commitdiff
release commit release/2.3.17
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 18 Sep 2004 11:47:17 +0000 (11:47 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 18 Sep 2004 11:47:17 +0000 (11:47 +0000)
input/regression/beam-concave-damped.ly [new file with mode: 0644]
input/regression/figured-bass.ly

diff --git a/input/regression/beam-concave-damped.ly b/input/regression/beam-concave-damped.ly
new file mode 100644 (file)
index 0000000..56a7081
--- /dev/null
@@ -0,0 +1,20 @@
+\header {
+    texidoc = "Beams that are not strictly concave are damped
+ according to their concaveness. "
+}
+\version "2.3.16"
+\paper {
+    raggedright = ##t
+}
+
+\relative c'' {
+    \time 2/4 
+    g'=''8[ d a' b]
+   \time 3/4
+    f=''8[ e d c g b]
+    b,16[ f' g a]
+    r2
+   \time 3/8
+    c=''16[ b c e g <e b'>] |
+   \stemUp b,8[  \stemDown d'8 bes8]
+}
index 3cbd4bccb183e1f272257e4e192767beb8d93ff6..6fb5e4c75ff1c85f7b46e91df7bbe22085dbf08c 100644 (file)
@@ -1,6 +1,6 @@
 \version "2.3.16"
 \header {
-texidoc = "
+    texidoc = "
 Figured bass is created by the FiguredBass context which eats
 figured bass requests and  rest-requests.  You must enter these using
 the special @code{\figuremode @{ @}} mode, which allows you to type
@@ -10,12 +10,11 @@ You can also type letters by entering quoted strings, which is shown in the
 last bass figure.
 
 " }
-
-\score {   <<
- \context FiguredBass {
-   \figuremode { 
+\paper  { raggedright = ##t }  
+<<
+    \figures { 
        <3 [5 7]>
-\once \override FiguredBass.BassFigure  #'direction = #-1
+       \once \override BassFigure  #'direction = #-1
        <3 [5 7]>
        <3 [5] 7 [9 11]>
        <3+ 5- 7!>
@@ -24,16 +23,12 @@ last bass figure.
        <"V7" ["bla" 6] 7>
        
     }
- }
-
- \context Voice { \clef bass
-   c 4
-   c c c c c 
-   g8
-  }
+    \context Voice {
+       \clef bass
+       c 4
+       c c c c c 
+       g8
+    }
 >>
-       \paper  { raggedright = ##t }  
- }