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