%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm,paper-height=845.047\pt,paper-width=597.508\pt,papersize='(cons (* 597.508 pt) (* 845.047 pt))]
\include "lilypond-book-preamble.ly"


% ****************************************************************
% Start cut-&-pastable-section
% ****************************************************************

#(ly:set-option 'eps-box-padding 3.000000)



\paper {
  #(set-paper-size '(cons (* 597.508 pt) (* 845.047 pt)))
  indent = 0\mm
  line-width = 160\mm
  % offset the left padding, also add 1mm as lilypond creates cropped
  % images with a little space on the right
  line-width = #(- line-width (* mm  3.000000) (* mm 1))
}

\layout {
  
}




% ****************************************************************
% ly snippet:
% ****************************************************************
\sourcefilename "snippets/adding-a-figured-bass-above-or-below-the-notes.ly"
\sourcefileline 0
%% DO NOT EDIT this file manually; it was automatically
%% generated from the LilyPond Wiki
%% (https://wiki.lilypond.community).
%%
%% Make any changes in the Wiki itself, or in
%% `Documentation/snippets/new/`, then run
%% `scripts/auxiliar/makelsr.pl`.
%%
%% This file is in the public domain.

\version "2.24.0"

\header {
%% Translation of GIT committish: f11513f36c131dab18338d6a3a729e24a927150d
  texidocja = "
通奏低音を記述する際、@code{BassFigureAlignmentPositioning.direction}
プロパティを定義することで (@code{Staff} コンテキストである必要があります)、@c
数字を音符の上または下に配置することができます。セットできる選択肢は
@code{#UP} (または @code{#1}), @code{#CENTER} (または @code{#0}),
@code{#DOWN} (または @code{#-1}) です。

このプロパティはいつでも変更することができます。@c
楽譜全体に変更を適用したくない場合は、@code{\\once \\override} を@c
使用してください。
"
  doctitleja = "通奏低音を音符の上か下に追加する"

%% Translation of GIT committish: c043783aac6c35926d633aa2daf60ed4f2e7ca7a
  texidocfr = "
Une ligne de basse chiffrée peut se positionner au-dessus ou en dessous
d'une partie de basse à l'aide des commandes
@code{\\bassFigureStaffAlignmentDown} et
@code{\\bassFigureStaffAlignmentUp}. Une modification temporaire du
positionnement s'obtient en faisant précéder la commande d'un
@code{\\once}.

La commande @code{\\bassFigureStaffAlignmentNeutral} réinitialise le
positionnement des chiffrages à sa valeur par défaut.
"

  doctitlefr = "Ajout d'une basse chiffrée au-dessus ou au-dessous des notes"

%% Translation of GIT committish: af28c5f89c915fdf795739a1e2dd437c726d7f61
  texidoces = "
Al escribir un bajo cifrado, podemos situar las cifras encima o
debajo de las notas del bajo mediante las instrucciones
@code{\\bassFigureStaffAlignmentDown} y
@code{\\bassFigureStaffAlignmentUp}.  Anteponemos @code{\\once} a
la instrucción si queremos modificar solo la cifra siguiente.

La instrucción @code{\\bassFigureStaffAlignmentNeutral} reinicia
la dirección del bajo cifrado a su valor predeterminado.

"
  doctitlees = "Añadir un bajo cifrado encima o debajo de las notas"

%% Translation of GIT committish: 8ffecf6be17c6ec2ff87cf31873121a8cce29b09
  texidocca = "
En escriure un baix xifrat, podem ubicar les xifres a sobre a o a
sota de les notes del baix, mitjançant la definició de la propietat
@code{BassFigureAlignmentPositioning #'direction} (exclusivament
dins d'un context @code{Staff}). es pot escollir entre @code{#UP}
(o @code{#1}, a sobre), @code{#CENTER} (o @code{#0}, centraat) i
@code{#DOWN} (o @w{@code{#-1}}, a sota).

Aquesta propietat es pot canviar tantes vegades com volem.  Utilitzeu
@code{\\once \\override} si no voleu que la sobreescriptura s'apliqui
a tota la partitura.
"
  doctitleca = "Afegir un baix xifrat a sobre o a sota de les notes"

  categories = "Ancient notation, Chords"

  texidoc = "
When writing figured bass, you can place the figures above or below the
bass notes by using the commands @code{\\bassFigureStaffAlignmentDown}
and @code{\\bassFigureStaffAlignmentUp}. Prepend @code{\\once} to the
command if you want to modify only the next figured bass.

The command @code{\\bassFigureStaffAlignmentNeutral} resets the
direction of figured bass to the default value.
"

  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>4 <5/>4
  \bassFigureStaffAlignmentUp
  <_+>4 <6> |
  \set Staff.useBassFigureExtenders = ##t
  \bassFigureStaffAlignmentDown
  <4>4. <4>8 <_+>4
}

\score {
  <<
    \new Staff = bassStaff \bass
    \context Staff = bassStaff \continuo
  >>
}



% ****************************************************************
% end ly snippet
% ****************************************************************
