]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/figured-bass-headword.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / figured-bass-headword.ly
index 58a6e54b30cf717d2df61a96b034d21e24742aa7..190cec94a01d36f36ac62a1f6d899fc3b13902b1 100644 (file)
@@ -1,31 +1,22 @@
-% Do not edit this file; it is automatically
-% generated from Documentation/snippets/new
-% This file is in the public domain.
-%% Note: this file works from version 2.12.0
-\version "2.13.10"
-#(set-global-staff-size 15)
-\paper{
-  ragged-right=##f
-  line-width=16\cm
-  indent=1.5\cm
-}
-
-\layout {
-  \context { \Score
-    \override PaperColumn #'keep-inside-line = ##t
-    \override NonMusicalPaperColumn #'keep-inside-line = ##t
-  }
-}
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.18.0"
 
-% NR 2.7.3 Figured bass
+\header {
+  lsrtags = "headword"
 
+  texidoc = "
+Figured bass headword
 
-\header {
-  lsrtags = "headwords"
-  texidoc = ""
-  doctitle = "headword"
+"
+  doctitle = "Figured bass headword"
 } % begin verbatim
 
+% NR 2.7.3 Figured bass
 
 % Arcangelo Corelli, 12 Sonate da Camera, Op. 2
 % Sonata II, Allemanda
@@ -36,14 +27,10 @@ extendOn = \bassFigureExtendersOn
 extendOff = \bassFigureExtendersOff
 
 \score {
-
   \new StaffGroup <<
-
     \new GrandStaff <<
-
       \new Staff = "violinoI" {
         \set Staff.instrumentName = \markup {
-          \hcenter-in #11
           \line { Violino I. }
         }
         \time 4/4
@@ -62,7 +49,6 @@ extendOff = \bassFigureExtendersOff
 
       \new Staff = "violinoII" {
         \set Staff.instrumentName = \markup {
-          \hcenter-in #11
           \line { Violino II. }
         }
         \time 4/4
@@ -81,11 +67,9 @@ extendOff = \bassFigureExtendersOff
 
     \new Staff = "violone" {
       \set Staff.instrumentName = \markup {
-        \hcenter-in #13 {
-          \center-column {
-            Violone,
-            \line { e Cembalo. }
-          }
+        \center-column {
+          Violone,
+          \line { e Cembalo. }
         }
       }
       \time 4/4
@@ -104,8 +88,7 @@ extendOff = \bassFigureExtendersOff
     \new FiguredBass \figuremode {
       \set figuredBassAlterationDirection = #RIGHT
       \set figuredBassPlusDirection = #RIGHT
-      \override VerticalAxisGroup #'minimum-Y-extent = #'()
-      \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 |
@@ -121,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
     }
   }
 }