%% 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/chords-with-stretched-fingering-for-fretboards-and-tabvoice.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: c043783aac6c35926d633aa2daf60ed4f2e7ca7a
  texidocfr = "
Il peut arriver que le doigté d'un accord soit assez étendu. Sauf
mention contraire, la valeur de la propriété de contexte
@code{maximumFretStretch} est cependant fixée à 4, ce qui peut générer
un avertissement « Pas de corde pour la hauteur… » et la note est omise.
On peut régler @code{maximumFretStretch} sur une valeur appropriée ou
assigner explicitement leur numéro de corde à toutes les notes d'un
accord afin de palier ce problème.
"

  doctitlefr = "Accords avec doigté espacé pour @code{FretBoards} et @code{TabVoice}"

%% Translation of GIT committish: 70abecb938c2bb752967bd56b7402dd8129838a5
  texidoces = "
A veces se requieren acordes con digitación ampliada o estirada.
Sin embargo, si no se especifica lo contrario, la propiedad de
contexto @code{maximumFretStretch} viene establecida al
valor@tie{}4, lo que puede dar lugar a una advertencia @qq{No hay
ninguna cuerda para la nota ...} y la nota se omite.  Podemos
fijar @code{maximumFretStretch} a un valor adecuado o asignar
explícitamente números de cuerda para todas las notas del acorde,
para corregir esto.

"

  doctitlees = "Acordes con digitaciones ampliadas para diagramas de trastes y tablaturas"

  categories = "Chords, Fretted strings, Specific notation"

  texidoc = "
Sometimes chords with a stretched fingering are required. If not
otherwise specified the context property @code{maximumFretStretch} is
set to value@tie{}4, though, resulting in a warning about @qq{No string
for pitch ...}, and the note is omitted. You may set
@code{maximumFretStretch} to an approppriate value or explicitly assign
string numbers to all notes of a chord to fix that.
"

  doctitle = "Chords with stretched fingering for FretBoards and TabVoice"
} % begin verbatim


% The code below prints two warnings for the second chord,
% which may be omitted by uncommenting the following line.
%
% #(for-each (lambda (x) (ly:expect-warning "No string for pitch")) (iota 2))

mus = {
  <c' bes'>
  <c'\2 bes'>
  \set maximumFretStretch = 5
  <c' bes'>
  <c'\2 bes'\1>
}

<<
  \new FretBoards \mus
  \new TabVoice \mus
>>



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