]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-a-figured-bass-above-or-below-the-notes.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[lilypond.git] / input / lsr / adding-a-figured-bass-above-or-below-the-notes.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "chords, ancient-notation, contexts-and-engravers"
7  texidoc = "
8 When writing a figured bass, here's a way to specify if you want your
9 figures to be placed above or below the bass notes, by defining the
10 @code{BassFigureAlignmentPositioning #'direction} property (exclusively
11 in a @code{Staff} context). Choices are @code{#UP} (or @code{#1}),
12 @code{#CENTER} (or @code{#0}) and @code{#DOWN} (or @code{#-1}).
13
14 As you can see here, this property can be changed as many times as you
15 wish. Use @code{\\once \\override} if you don't want the tweak to apply
16 to the whole score. 
17 " }
18 % begin verbatim
19 bass = { \clef bass g4 b, c d e d8 c d2}
20 continuo = \figuremode {
21          < _ >4 < 6 >8   
22    \once \override Staff.BassFigureAlignmentPositioning #'direction = #CENTER
23          <5/>  < _ >4 
24    \override Staff.BassFigureAlignmentPositioning #'direction = #UP
25          < _+ > < 6 >
26    \set Staff.useBassFigureExtenders = ##t
27    \override Staff.BassFigureAlignmentPositioning #'direction = #DOWN
28          < 4 >4. < 4 >8 < _+ >4
29        } 
30 \score {
31     << \new Staff = bassStaff \bass 
32     \context Staff = bassStaff \continuo >>
33 }
34