%% 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-beam-thickness-and-spacing.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 = "
連桁を太くしたり細くしたりするには、@code{Beam.beam-thickness} プロパティを@c
変更します。連桁と連桁の距離を調節するには、@code{Beam.length-fraction}
プロパティを変更します。
"
  doctitleja = "連桁の太さとスペーシングを変更する"

%% Translation of GIT committish: 1abe87de51b9b00a391da1be4cf4b5ebe4021ca9
  texidocfr = "
L'épaisseur des ligatures se gère au niveau de la propriété
@code{beam-thickness} de l'objet graphique @code{Beam}. L'ajustement de
l'espace entre les ligatures est géré par la propriété
@code{length-fraction}.
"

  doctitlefr = "Modification de l'épaisseur et de l'écartement des ligatures"

%% Translation of GIT committish: 35d4cc1b78c4105643ca5fdcb44cb717578d6d4a
  texidoces = "
Para hacer que las barras sean más gruesas o más delgadas, altere
la propiedad @code{beam-thickness} del objeto gráfico @code{Beam}.
Para ajustar el espaciado entre las barras, altere la propiedad
@code{length-fraction}.

"

  doctitlees = "Cambiar el grosor y el espaciado de las barras"

  categories = "Tweaks and overrides"

  texidoc = "
To make beams thicker or thinner, alter the @code{beam-thickness}
property of the @code{Beam} grob. To adjust the spacing between beams,
alter @code{length-fraction}.
"

  doctitle = "Changing beam thickness and spacing"
} % begin verbatim


\relative f' {
  \time 1/8
  \override Beam.beam-thickness = #0.4
  \override Beam.length-fraction = #0.8
  c32 c c c
  \revert Beam.beam-thickness  % 0.48 is default thickness
  \revert Beam.length-fraction  % 1.0 is default spacing
  c32 c c c
  \override Beam.beam-thickness = #0.6
  \override Beam.length-fraction = #1.3
  c32 c c c
}



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