%% 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)),quote]
\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))
  line-width = 160\mm - 2.0 * 10.16\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/alternative-bar-numbering.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 = "
小節番号を付番する異なる方法が 2 つあり、繰り返しのある音楽に対して@c
有用です。
"
  doctitleja = "小節番号を変更する"

%% Translation of GIT committish: 2f3474d9af596d677ed5b7ce720ae4d0954a6b51
  texidocit = "
Si possono impostare due metodi alternativi di numerazione della battuta, utili
specialmente per le ripetizioni.

"
  doctitleit = "Numeri di battuta alternativi"

%% Translation of GIT committish: 1abe87de51b9b00a391da1be4cf4b5ebe4021ca9
  texidocfr = "
Un réglage de la propriété de contexte @code{alternativeNumberingStyle}
permet d'accéder à deux méthodes alternatives de gestion de la
numérotation des mesures en cas de reprises.
"

  doctitlefr = "Numérotation des mesures et alternatives"

%% Translation of GIT committish: 35d4cc1b78c4105643ca5fdcb44cb717578d6d4a
  texidoces = "
Fijando la propiedad de contexto @code{alternativeNumberingStyle},
se dispone de dos métodos alternativos adicionales para la
numeración de compases dentro de las repeticiones.

"
  doctitlees = "Numeración de compases alternativa"


%% Translation of GIT committish: ebe492ca408fb0d9abf80b94c56197eef8dc2f09

  texidocde = "Zwei alternative Methoden können eingestellt werden,
  die die Taktnummerierung beeinflussen, insbesondere bei Wiederholungen."

  doctitlede = "Alternative Taktnummerierung"

%% Translation of GIT committish: 8ffecf6be17c6ec2ff87cf31873121a8cce29b09
  texidocca = "
Es poden seleccionar dos mètodes alternatius per a la numeració de
compassos, especials quan hi ha repeticions.

"
  doctitleca = "Numeració de compassos alternativa"

  categories = "Editorial annotations, Staff notation, Tweaks and
                overrides"

  texidoc = "
Setting the @code{alternativeNumberingStyle} context property, two
additional methods are available for enumerating bar numbers in
repeats.
"

  doctitle = "Alternative bar numbering"
} % begin verbatim


music = \relative c' {
  \repeat volta 3 {
    c4 d e f |
    \alternative {
      \volta 1 { c4 d e f | c2 d \break }
      \volta 2 { f4 g a b | f4 g a b | f2 a | \break }
      \volta 3 { c4 d e f | c2 d } } }
  c1 \bar "|."
}

{
  \textMark \markup \large "default"
  \music
}

{
  \textMark \markup \large \typewriter "numbers"
  \set Score.alternativeNumberingStyle = #'numbers
  \music
}

{
  \textMark \markup \large \typewriter "numbers-with-letters"
  \set Score.alternativeNumberingStyle = #'numbers-with-letters
  \music
}

\layout {
  \context {
    \Score
    \override TextMark.Y-offset = #5
  }
}



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