]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-a-figured-bass-above-or-below-the-notes.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "ancient-notation, contexts-and-engravers, chords"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 @w{@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
49 bass = {
50   \clef bass
51   g4 b, c d
52   e d8 c d2
53 }
54 continuo = \figuremode {
55   <_>4 <6>4 <5/>4
56   \override Staff.BassFigureAlignmentPositioning #'direction = #UP
57   %\bassFigureStaffAlignmentUp
58   < _+ >4 <6>
59   \set Staff.useBassFigureExtenders = ##t
60   \override Staff.BassFigureAlignmentPositioning #'direction = #DOWN
61   %\bassFigureStaffAlignmentDown
62   <4>4. <4>8 <_+>4
63 }
64 \score {
65   <<
66     \new Staff = bassStaff \bass
67     \context Staff = bassStaff \continuo
68   >>
69 }
70
71