LSR: Local update.
[lilypond/mpolesky.git] / Documentation / snippets / adding-a-figured-bass-above-or-below-the-notes.ly
blob46827e4131b8ae1ddfe4c9a9f228235f04b4fb32
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.10"
6 \header {
7 lsrtags = "chords, ancient-notation, contexts-and-engravers"
9 %% Translation of GIT committish: 341940d3830b59f93a80131471d622c2818afddb
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).
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.
24 doctitlees = "Añadir un bajo cifrado encima o debajo de las notas"
26 %% Translation of GIT committish: 7eb450e8e6c935410b8f3212cb53e5a731f4f33f
27 doctitlefr = "Ajout d'une basse chiffrée au-dessus ou au-dessous des notes"
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}).
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.
41 doctitle = "Adding a figured bass above or below the notes"
42 } % begin verbatim
44 bass = {
45 \clef bass
46 g4 b, c d
47 e d8 c d2
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
59 \score {
61 \new Staff = bassStaff \bass
62 \context Staff = bassStaff \continuo