]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/figured-bass-headword.ly
Merge remote-tracking branch 'origin/translation' into staging
[lilypond.git] / Documentation / snippets / figured-bass-headword.ly
index 45f6bab9b4008958084c33cdef604bc332050798..018a27b61cfede0130b916f8eca955a0b06738a0 100644 (file)
@@ -4,7 +4,7 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.19.2"
 
 \header {
   lsrtags = "headword"
@@ -16,13 +16,6 @@ Figured bass headword
   doctitle = "Figured bass headword"
 } % begin verbatim
 
-#(set-global-staff-size 15)
-\paper {
-  ragged-right = ##f
-  line-width = 16\cm
-  indent = 1.5\cm
-}
-
 % NR 2.7.3 Figured bass
 
 % Arcangelo Corelli, 12 Sonate da Camera, Op. 2
@@ -34,11 +27,8 @@ extendOn = \bassFigureExtendersOn
 extendOff = \bassFigureExtendersOff
 
 \score {
-
   \new StaffGroup <<
-
     \new GrandStaff <<
-
       \new Staff = "violinoI" {
         \set Staff.instrumentName = \markup {
           \line { Violino I. }
@@ -88,7 +78,7 @@ extendOff = \bassFigureExtendersOff
       r16 d16 |
       d4 bes,4 a,4 f4 |
       g8 f16 g16 a8 a,8 d4 d'4 ~ |
-      d'8 c'8 b4 c'8 c'16 bes16 a4 |
+      8 c'8 b4 c'8 c'16 bes16 a4 |
       bes8 bes16 a16 g4 a8 a,4 a16 g16 |
       fis8 d8 e8 fis8 g8 g,4 g16 f16 |
       e8 c8 d8 e8 f8 f,4 a,8 |
@@ -98,7 +88,7 @@ extendOff = \bassFigureExtendersOff
     \new FiguredBass \figuremode {
       \set figuredBassAlterationDirection = #RIGHT
       \set figuredBassPlusDirection = #RIGHT
-      \override BassFigureAlignment #'stacking-dir = #DOWN
+      \override BassFigureAlignment.stacking-dir = #DOWN
       s8 |
       s4 <6>4 <_+>4 <6>4 |
       <6 4\+ 2>8 <6>8 <_+> s8 s2 |
@@ -114,9 +104,9 @@ extendOff = \bassFigureExtendersOff
   \layout {
     \context {
       \Score
-      \override RehearsalMark #'break-align-symbols = #'(time-signature)
-      \override RehearsalMark #'self-alignment-X = #LEFT
-      \override TimeSignature #'break-align-anchor-alignment = #LEFT
+      \override RehearsalMark.break-align-symbols = #'(time-signature)
+      \override RehearsalMark.self-alignment-X = #LEFT
+      \override TimeSignature.break-align-anchor-alignment = #LEFT
     }
   }
 }