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