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