%% 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/preventing-final-mark-from-removing-final-tuplet.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.14.

\version "2.23.14"

\header {
%% Translation of GIT committish: f11513f36c131dab18338d6a3a729e24a927150d
  texidocja = "
楽譜の最後に @code{\\mark} を追加すると、最後にある連符が@c
表示されません。これは @code{TupletBracket.full-length-to-extent} を @code{#f}
にすることで対処できます。
"
  doctitleja = "最後にリハーサル記号を配置した際に連符が削除されないようにする"

%% Translation of GIT committish: a3fd5364fc4f247579da0ed2bfea887ab37285c6
  texidocfr = "
L'ajout d'une marque-repère en fin de pièce peut entraîner la perte de
la dernière indication de n-olet. La désactivation de
@code{TupletBracket.full-length-to-extent} pallie ce problème.
"

  doctitlefr = "Préservation de l'indication de n-olet lors d'un repère final"

%% Translation of GIT committish: 069c8e54d8eaf449262a180674330b31c8c723d9
  texidoces = "
Al añadir una marca de ensayo @code{mark} al final puede ocurrir que
se pierda una indicación de grupo especial colocado al final.  Se
puede solventar fijando @code{TupletBracket.full-length-to-extent}
al valor @code{false}.

"
  doctitlees = "Evitar que una marca de ensayo final suprima el corchete de un grupo de valoración especial"

%% Translation of GIT committish: 8ffecf6be17c6ec2ff87cf31873121a8cce29b09
  texidocca = "
En afegir una marca d'assaig @code{mark} al final pot succeir que es
perdi una indicació de grup especial col·locat al final.  Es pot
solucionar establint @code{TupletBracket #'full-length-to-extent}
al valor @code{false}.

"
  doctitleca = "Evitar que una marca de assaig final suprimeixi el corxet d'un grup de valoració especial"

  lsrtags = "rhythms"

  texidoc = "
The addition of a final @code{mark} can result in the loss of a final
tuplet marking.  This can be overcome by setting
@code{TupletBracket.full-length-to-extent} to @code{false}.
"

  doctitle = "Preventing final mark from removing final tuplet"
} % begin verbatim


% due to issue 2362 a long mark such as
%   \textEndMark "Composed Feb 2007 - Feb 2008"
% cannot be used here.

\new Staff {
   \set tupletFullLength = ##t
   \time 1/8
   \tuplet 3/2 8 { c'16 c' c' c' c' c' c' c' c' }
   \tweak direction #DOWN \textEndMark "1234"
}

\new Staff {
  \set tupletFullLength = ##t
  \override TupletBracket.full-length-to-extent = ##f

  \time 1/8
   \tuplet 3/2 8 { c'16 c' c' c' c' c' c' c' c' }
   \tweak direction #DOWN \textEndMark "1234"
}



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