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