%% 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/changing-the-ambitus-gap.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: a8a85e19654e46d725563e6deba44083ef137a2c
  texidocja = "
音域表示において、デフォルトの符頭と線との隙間を変更することができます。
"
  doctitleja = "音域の隙間を変更する"

%% Translation of GIT committish: 2f3474d9af596d677ed5b7ce720ae4d0954a6b51
  texidocit = "
È possibile cambiare le impostazioni predefinite dell'intervallo tra le
teste di nota dell'ambitus e la linea che le collega.

"
  doctitleit = "Modifica dell'intervallo dell'ambitus"

%% Translation of GIT committish: de1e42ce512f3690387cdd065109bddff1b7bd6d
  texidocfr = "
L'affichage d'un @emph{ambitus} peut s'affiner pour répondre à vos
préférences en matière d'esthétique.
"

  doctitlefr = "Réglage de l'affichage d'un ambitus"

%% Translation of GIT committish: 6f7a4f8fe0e6b95080adc1f386faddca3933d988
  texidoces = "
Es posible ajustar la separación predeterminada entre
las notas de la indicación de tesitura y la línea que las une.

"
  doctitlees = "Modificación de la separación en las indicaciones de tesitura"

%% Translation of GIT committish: 8ffecf6be17c6ec2ff87cf31873121a8cce29b09
  texidocca = "
És possible ajustar la separació predeterminada entre les notes de la
indicació de tessitura i la línia que les uneix.

"
  doctitleca = "Modificació de la separació en les indicacions de tessitura"

  categories = "Pitches"

  texidoc = "
It is possible to change the default gap between the ambitus noteheads
and the line joining them.
"

  doctitle = "Changing the ambitus gap"
} % begin verbatim


\layout {
  \context {
    \Voice
    \consists "Ambitus_engraver"
  }
}

\new Staff {
  \time 2/4
  % Default setting
  c'4 g''
}

\new Staff {
  \time 2/4
  \override AmbitusLine.gap = 0
  c'4 g''
}

\new Staff {
  \time 2/4
  \override AmbitusLine.gap = 1
  c'4 g''
}

\new Staff {
  \time 2/4
  \override AmbitusLine.gap = 1.5
  c'4 g''
}



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