%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm]
\include "lilypond-book-preamble.ly"


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

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



\paper {
  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/printing-bar-numbers-using-modulo-bar-number-visible.ly"
\sourcefileline 0
%% DO NOT EDIT this file manually; it was automatically
%% generated from `Documentation/snippets/new/`.
%%
%% Make any changes in `Documentation/snippets/new/`,
%% then run `scripts/auxiliar/makelsr.pl --new`.
%%
%% This file is in the public domain.
%%
%% Note: this file works from version 2.23.7.

\version "2.23.13"

\header {
%% Translation of GIT committish: a3fd5364fc4f247579da0ed2bfea887ab37285c6
  texidocfr = "
Lorsque le reste de la division du numéro de la mesure courante par le
premier argument de @code{modulo-bar-number-visible} égale le deuxième
argument, LilyPond imprime le @code{BarNumber}.

Ceci permet d'imprimer le numéro de mesure à un intervalle donné, par
exemple :

@itemize
@item
@code{(modulo-bar-number-visible 3 2)} -> affichage à 2, 5, 8…
@item
@code{(modulo-bar-number-visible 4 2)} -> affichage à 2, 6, 10…
@item
@code{(modulo-bar-number-visible 3 1)} -> affichage à 3, 5, 7…
@item
@code{(modulo-bar-number-visible 5 2)} -> affichage à 2, 7, 12…
@end itemize
"

  doctitlefr = "Impression du numéro de mesure selon @code{modulo-bar-number-visible}"

  lsrtags = "rhythms"

  texidoc = "
If the remainder of the division of the current @code{BarNumber} by the
first argument of @code{modulo-bar-number-visible} equals its second
argument print the @code{BarNumber}.

Useful to print the @code{BarNumber} at certain distances, p.e:

@itemize
@item
@code{(modulo-bar-number-visible 3 2)} -> prints 2,5,8
@item
@code{(modulo-bar-number-visible 4 2)} -> prints 2,6,10
@item
@code{(modulo-bar-number-visible 3 1)} -> prints 3,5,7
@item
@code{(modulo-bar-number-visible 5 2)} -> prints 2,7,12
@end itemize
"

  doctitle = "Printing bar numbers using modulo-bar-number-visible"
} % begin verbatim


\layout {
  \context {
    \Score
    \override BarNumber.break-visibility = ##(#f #t #t)
    barNumberVisibility = #(modulo-bar-number-visible 3 2)
  }
}

\relative c' {
  c1 | d | e | f \break
  g1 | e | d | c
}



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