X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fadding-a-figured-bass-above-or-below-the-notes.ly;h=f1bc5c2a13a1a63fe6b96bf92be9187c18240834;hb=e9135d834819eba63b64ec711542480250b42b78;hp=cb03887b9190449485662f389b712bf4704fa03d;hpb=0cd61a3be7ca856b584973217944eea1b9cbedac;p=lilypond.git diff --git a/input/lsr/adding-a-figured-bass-above-or-below-the-notes.ly b/input/lsr/adding-a-figured-bass-above-or-below-the-notes.ly index cb03887b91..f1bc5c2a13 100644 --- a/input/lsr/adding-a-figured-bass-above-or-below-the-notes.ly +++ b/input/lsr/adding-a-figured-bass-above-or-below-the-notes.ly @@ -1,10 +1,28 @@ %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.11.38" +\version "2.13.1" \header { lsrtags = "chords, ancient-notation, contexts-and-engravers" + texidoces = " +Al escribir un bajo cifrado, existe una forma de especificar si +queremos que las cifras se sitúen encima o debajo 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). + +Como podemos ver, esta propiedad se puede cambiar tantas veces +como queramos. Utilice @code{\\once \\override} si no quiere que el +truco se aplique a toda la partitura. + +" + doctitlees = "Añadir un bajo cifrado encima o debajo de las notas" + + doctitlefr = "Ajout d'une basse chiffrée au-dessus ou au-dessous des notes" + texidoc = " When writing a figured bass, here's a way to specify if you want your figures to be placed above or below the bass notes, by defining the @@ -19,19 +37,26 @@ to the 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} + +bass = { + \clef bass + g4 b, c d + e d8 c d2 +} continuo = \figuremode { - < _ >4 < 6 >8 - \once \override Staff.BassFigureAlignmentPositioning #'direction = #CENTER - <5/> < _ >4 - \override Staff.BassFigureAlignmentPositioning #'direction = #UP - < _+ > < 6 > - \set Staff.useBassFigureExtenders = ##t - \override Staff.BassFigureAlignmentPositioning #'direction = #DOWN - < 4 >4. < 4 >8 < _+ >4 - } + <_>4 <6>8 + \once \override Staff.BassFigureAlignmentPositioning #'direction = #CENTER + <5/>8 <_>4 + \override Staff.BassFigureAlignmentPositioning #'direction = #UP + <_+>4 <6> + \set Staff.useBassFigureExtenders = ##t + \override Staff.BassFigureAlignmentPositioning #'direction = #DOWN + <4>4. <4>8 <_+>4 +} \score { - << \new Staff = bassStaff \bass - \context Staff = bassStaff \continuo >> + << + \new Staff = bassStaff \bass + \context Staff = bassStaff \continuo + >> }