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