]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-a-figured-bass-above-or-below-the-notes.ly
Doc-es: pre-merge update of texidoc committishes.
[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.13.1"
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   texidoc = "
27 When writing a figured bass, here's a way to specify if you want your
28 figures to be placed above or below the bass notes, by defining the
29 @code{BassFigureAlignmentPositioning #'direction} property (exclusively
30 in a @code{Staff} context). Choices are @code{#UP} (or @code{#1}),
31 @code{#CENTER} (or @code{#0}) and @code{#DOWN} (or @code{#-1}).
32
33 As you can see here, this property can be changed as many times as you
34 wish. Use @code{\\once \\override} if you don't want the tweak to apply
35 to the whole score. 
36
37 "
38   doctitle = "Adding a figured bass above or below the notes"
39 } % begin verbatim
40
41 bass = {
42   \clef bass
43   g4 b, c d
44   e d8 c d2
45 }
46 continuo = \figuremode {
47   <_>4 <6>8
48   \once \override Staff.BassFigureAlignmentPositioning #'direction = #CENTER
49   <5/>8 <_>4
50   \override Staff.BassFigureAlignmentPositioning #'direction = #UP
51   <_+>4 <6>
52   \set Staff.useBassFigureExtenders = ##t
53   \override Staff.BassFigureAlignmentPositioning #'direction = #DOWN
54   <4>4. <4>8 <_+>4
55 }
56 \score {
57   <<
58     \new Staff = bassStaff \bass
59     \context Staff = bassStaff \continuo
60   >>
61 }
62