]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-a-figured-bass-above-or-below-the-notes.ly
Merge branch 'master' of carldsorensen@git.sv.gnu.org:/srv/git/lilypond into ralph
[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.12.0"
4
5 \header {
6   lsrtags = "chords, ancient-notation, contexts-and-engravers"
7
8   texidoces = "
9 Al escribir un bajo cifrado, existe una forma de especificar si
10 queremos que las cifras se sitúen encima o debajo de las notas del
11 bajo, mediante la definición de la propiedad
12 @code{BassFigureAlignmentPositioning #'direction} (exclusivamente
13 dentro de un contexto @code{Staff}). Se puede elegir entre
14 @code{#UP} (o @code{#1}, arriba), @code{#CENTER} (o @code{#0},
15 centrado) y @code{#DOWN} (o @code{#-1}, abajo).
16
17 Como podemos ver, esta propiedad se puede cambiar tantas veces
18 como queramos.  Utilice @code{\\once \\override} si no quiere que el
19 truco se aplique a toda la partitura.
20
21 "
22   doctitlees = "Añadir un bajo cifrado encima o debajo de las notas"
23   
24   doctitlefr = "Ajout d'une basse chiffrée au-dessus ou au-dessous des notes"
25   
26
27   texidoc = "
28 When writing a figured bass, here's a way to specify if you want your
29 figures to be placed above or below the bass notes, by defining the
30 @code{BassFigureAlignmentPositioning #'direction} property (exclusively
31 in a @code{Staff} context). Choices are @code{#UP} (or @code{#1}),
32 @code{#CENTER} (or @code{#0}) and @code{#DOWN} (or @code{#-1}).
33
34 As you can see here, this property can be changed as many times as you
35 wish. Use @code{\\once \\override} if you don't want the tweak to apply
36 to the whole score. 
37
38 "
39   doctitle = "Adding a figured bass above or below the notes"
40 } % begin verbatim
41
42 bass = { \clef bass g4 b, c d e d8 c d2}
43 continuo = \figuremode {
44          < _ >4 < 6 >8   
45    \once \override Staff.BassFigureAlignmentPositioning #'direction = #CENTER
46          <5/>  < _ >4 
47    \override Staff.BassFigureAlignmentPositioning #'direction = #UP
48          < _+ > < 6 >
49    \set Staff.useBassFigureExtenders = ##t
50    \override Staff.BassFigureAlignmentPositioning #'direction = #DOWN
51          < 4 >4. < 4 >8 < _+ >4
52        } 
53 \score {
54     << \new Staff = bassStaff \bass 
55     \context Staff = bassStaff \continuo >>
56 }
57