]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/figured-bass.ly
new file.
[lilypond.git] / input / regression / figured-bass.ly
index ddfe89032dd1d23376411d371f2d90c01dd88d40..4fc5afced06f2effcbd0ad1a2e05dbc27991096a 100644 (file)
@@ -1,27 +1,39 @@
-\version "1.7.6"
+\version "2.3.4"
 \header {
-texidoc = "Test figured bass.
-
+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{\figures @{ @}} mode, which allows you to type
 numbers, like @code{<4 6+>}.
+
+You can also type letters by entering quoted strings, which is shown in the
+last bass figure.
+
 " }
 
-\score { \notes  <
+\score {   <<
  \context FiguredBass {
-   \figures {
-       <_! 3+ 5- _ 7! 9 >4
-       < [4 6] >
-   }
+   \figures { 
+       <3 [5 7]>
+\once \override FiguredBass.BassFigure  #'direction = #-1
+       <3 [5 7]>
+       <3 [5] 7 [9 11]>
+       <3+ 5- 7!>
+       <3 _! 5 _- 7>
+       <3 _ 5 _ 7>
+       <"V7" ["bla" 6] 7>
+       
+    }
  }
 
- \context Voice {
+ \context Voice { \clef bass
    c 4
+   c c c c c 
    g8
   }
  
->
+>>
+       \paper  { raggedright = ##t }  
  }
-%% new-chords-done %%
+
+