summaryrefslogtreecommitdiff
path: root/Documentation/snippets/figured-bass-headword.ly
blob: 018a27b61cfede0130b916f8eca955a0b06738a0 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
%% DO NOT EDIT this file manually; it is automatically
%% generated from LSR http://lsr.dsi.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.19.2"

\header {
  lsrtags = "headword"

  texidoc = "
Figured bass headword

"
  doctitle = "Figured bass headword"
} % begin verbatim

% NR 2.7.3 Figured bass

% Arcangelo Corelli, 12 Sonate da Camera, Op. 2
% Sonata II, Allemanda
% measures 1 - 88
% Coded by Neil Puttock; modified by Carl Sorensen

extendOn = \bassFigureExtendersOn
extendOff = \bassFigureExtendersOff

\score {
  \new StaffGroup <<
    \new GrandStaff <<
      \new Staff = "violinoI" {
        \set Staff.instrumentName = \markup {
          \line { Violino I. }
        }
        \time 4/4
        \mark \markup { \italic Adagio. }
        \partial 8
        r16 a'16 |
        a'8. [ d''16 d''8.  e''16 ] cis''8 a'4 a''16 bes''16 |
        cis''8 d''16 ( e'' ) e''8.  d''16 d''4 r8 d''16 e''16 |
        f''8 f''4 g''16 ( f''16 ) e''8 e''4 f''16 ( e''16 ) |
        d''8.  d''16 g''16 ( f''16 ) e''16 ( d''16 ) cis''8
            cis''4 cis''16 cis''16 |
        d''8 d''8 c''8.  c''16 c''8 ( b'4 ) b'16 b'16 |
        c''8 c''8 bes'8.  bes'16 bes'8 ( a'4 ) a''16 a''16 |
        a''8 g''8 g''8.  g''16 g''8 ( f''8 ) r8 f''8 |
      }

      \new Staff = "violinoII" {
        \set Staff.instrumentName = \markup {
          \line { Violino II. }
        }
        \time 4/4
        \partial 8
        r16 f'16 |
        f'8.  g'16 g'4 a'4 r8 d''16 d''16 |
        e''8 a'8 cis''8.  d''16 d''4 r8 f''16 g''16 |
        a''8 a''8 d''8.  d''16 g'8 g'8 c''8.  c''16 |
        f'8.  f''16 bes''16 ( a''16 ) g''16 ( f''16 ) e''8 e''4 e''16 e''16 |
        a'8 fis''8 g''8 a''8 d''8 d''4 d''16 d''16 |
        g'8 e''8 f''8 g''8 c''8 c''4 cis''16 cis''16 |
        d''8 d''8 e''8.  e''16 e''8 a'8 r8 d''8 |
      }

    >>

    \new Staff = "violone" {
      \set Staff.instrumentName = \markup {
        \center-column {
          Violone,
          \line { e Cembalo. }
        }
      }
      \time 4/4
      \clef bass
      \partial 8
      r16 d16 |
      d4 bes,4 a,4 f4 |
      g8 f16 g16 a8 a,8 d4 d'4 ~ |
      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 |
      b,4 cis4 d4 r8 d'8 |
    }

    \new FiguredBass \figuremode {
      \set figuredBassAlterationDirection = #RIGHT
      \set figuredBassPlusDirection = #RIGHT
      \override BassFigureAlignment.stacking-dir = #DOWN
      s8 |
      s4 <6>4 <_+>4 <6>4 |
      <6 4\+ 2>8 <6>8 <_+> s8 s2 |
      <5>8 <6 4>8 <6 5>4 s4 <5>8 <6>8 |
      s4 <6 5 _-> <_+>2 |
      <6>8 <_+>8 <6>8 <6 5>8 <5 4>8 \extendOn <5 _!>8 \extendOff s4 |
      <6>4 <6->8 <6 5->8 <5 4->8 \extendOn <5 3>4 \extendOff <5 _+>8 |
      <7>8 <6>8 <5>4 <9 4>8 <8 3>8 s4 |
    }

  >>

  \layout {
    \context {
      \Score
      \override RehearsalMark.break-align-symbols = #'(time-signature)
      \override RehearsalMark.self-alignment-X = #LEFT
      \override TimeSignature.break-align-anchor-alignment = #LEFT
    }
  }
}