]> git.donarmstrong.com Git - lilypond.git/blobdiff - 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
index b18718aa222dfc53139e91e245272f5cc97d401d..3e621e35d7bebb44a00fc19702c899ec7f5d4796 100644 (file)
@@ -1,12 +1,15 @@
-%% Do not edit this file; it is automatically
+%% DO NOT EDIT this file manually; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.12.2"
+\version "2.14.2"
 
 \header {
-  lsrtags = "chords, ancient-notation, contexts-and-engravers"
+  lsrtags = "ancient-notation, contexts-and-engravers, chords"
 
-%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
   texidoces = "
 
 Al escribir un bajo cifrado, podemos situar las cifras encima o debajo
@@ -14,7 +17,7 @@ de las notas del bajo, mediante la definiciĆ³n de la propiedad
 @code{BassFigureAlignmentPositioning #'direction} (exclusivamente
 dentro de un contexto @code{Staff}). Se puede elegir entre @code{#UP}
 (o @code{#1}, arriba), @code{#CENTER} (o @code{#0}, centrado) y
-@code{#DOWN} (o @code{#-1}, abajo).
+@code{#DOWN} (o @w{@code{#-1}}, abajo).
 
 Esta propiedad se puede cambiar tantas veces como queramos.  Utilice
 @code{\\once \\override} si no quiere que la sobreescritura se aplique
@@ -42,19 +45,20 @@ whole score.
   doctitle = "Adding a figured bass above or below the notes"
 } % begin verbatim
 
+
 bass = {
   \clef bass
   g4 b, c d
   e d8 c d2
 }
 continuo = \figuremode {
-  <_>4 <6>8
-  \once \override Staff.BassFigureAlignmentPositioning #'direction = #CENTER
-  <5/>8 <_>4
+  <_>4 <6>4 <5/>4
   \override Staff.BassFigureAlignmentPositioning #'direction = #UP
-  <_+>4 <6>
+  %\bassFigureStaffAlignmentUp
+  < _+ >4 <6>
   \set Staff.useBassFigureExtenders = ##t
   \override Staff.BassFigureAlignmentPositioning #'direction = #DOWN
+  %\bassFigureStaffAlignmentDown
   <4>4. <4>8 <_+>4
 }
 \score {