]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/figured-bass-headword.ly
190cec94a01d36f36ac62a1f6d899fc3b13902b1
[lilypond.git] / Documentation / snippets / figured-bass-headword.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.18.0"
8
9 \header {
10   lsrtags = "headword"
11
12   texidoc = "
13 Figured bass headword
14
15 "
16   doctitle = "Figured bass headword"
17 } % begin verbatim
18
19 % NR 2.7.3 Figured bass
20
21 % Arcangelo Corelli, 12 Sonate da Camera, Op. 2
22 % Sonata II, Allemanda
23 % measures 1 - 88
24 % Coded by Neil Puttock; modified by Carl Sorensen
25
26 extendOn = \bassFigureExtendersOn
27 extendOff = \bassFigureExtendersOff
28
29 \score {
30   \new StaffGroup <<
31     \new GrandStaff <<
32       \new Staff = "violinoI" {
33         \set Staff.instrumentName = \markup {
34           \line { Violino I. }
35         }
36         \time 4/4
37         \mark \markup { \italic Adagio. }
38         \partial 8
39         r16 a'16 |
40         a'8. [ d''16 d''8.  e''16 ] cis''8 a'4 a''16 bes''16 |
41         cis''8 d''16 ( e'' ) e''8.  d''16 d''4 r8 d''16 e''16 |
42         f''8 f''4 g''16 ( f''16 ) e''8 e''4 f''16 ( e''16 ) |
43         d''8.  d''16 g''16 ( f''16 ) e''16 ( d''16 ) cis''8
44             cis''4 cis''16 cis''16 |
45         d''8 d''8 c''8.  c''16 c''8 ( b'4 ) b'16 b'16 |
46         c''8 c''8 bes'8.  bes'16 bes'8 ( a'4 ) a''16 a''16 |
47         a''8 g''8 g''8.  g''16 g''8 ( f''8 ) r8 f''8 |
48       }
49
50       \new Staff = "violinoII" {
51         \set Staff.instrumentName = \markup {
52           \line { Violino II. }
53         }
54         \time 4/4
55         \partial 8
56         r16 f'16 |
57         f'8.  g'16 g'4 a'4 r8 d''16 d''16 |
58         e''8 a'8 cis''8.  d''16 d''4 r8 f''16 g''16 |
59         a''8 a''8 d''8.  d''16 g'8 g'8 c''8.  c''16 |
60         f'8.  f''16 bes''16 ( a''16 ) g''16 ( f''16 ) e''8 e''4 e''16 e''16 |
61         a'8 fis''8 g''8 a''8 d''8 d''4 d''16 d''16 |
62         g'8 e''8 f''8 g''8 c''8 c''4 cis''16 cis''16 |
63         d''8 d''8 e''8.  e''16 e''8 a'8 r8 d''8 |
64       }
65
66     >>
67
68     \new Staff = "violone" {
69       \set Staff.instrumentName = \markup {
70         \center-column {
71           Violone,
72           \line { e Cembalo. }
73         }
74       }
75       \time 4/4
76       \clef bass
77       \partial 8
78       r16 d16 |
79       d4 bes,4 a,4 f4 |
80       g8 f16 g16 a8 a,8 d4 d'4 ~ |
81       d'8 c'8 b4 c'8 c'16 bes16 a4 |
82       bes8 bes16 a16 g4 a8 a,4 a16 g16 |
83       fis8 d8 e8 fis8 g8 g,4 g16 f16 |
84       e8 c8 d8 e8 f8 f,4 a,8 |
85       b,4 cis4 d4 r8 d'8 |
86     }
87
88     \new FiguredBass \figuremode {
89       \set figuredBassAlterationDirection = #RIGHT
90       \set figuredBassPlusDirection = #RIGHT
91       \override BassFigureAlignment.stacking-dir = #DOWN
92       s8 |
93       s4 <6>4 <_+>4 <6>4 |
94       <6 4\+ 2>8 <6>8 <_+> s8 s2 |
95       <5>8 <6 4>8 <6 5>4 s4 <5>8 <6>8 |
96       s4 <6 5 _-> <_+>2 |
97       <6>8 <_+>8 <6>8 <6 5>8 <5 4>8 \extendOn <5 _!>8 \extendOff s4 |
98       <6>4 <6->8 <6 5->8 <5 4->8 \extendOn <5 3>4 \extendOff <5 _+>8 |
99       <7>8 <6>8 <5>4 <9 4>8 <8 3>8 s4 |
100     }
101
102   >>
103
104   \layout {
105     \context {
106       \Score
107       \override RehearsalMark.break-align-symbols = #'(time-signature)
108       \override RehearsalMark.self-alignment-X = #LEFT
109       \override TimeSignature.break-align-anchor-alignment = #LEFT
110     }
111   }
112 }