%% 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/creating-a-delayed-turn.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 = "
下の音符が臨時記号を持つような遅れターンを作るには、いくつかのオーバライドが@c
必要です。@code{outside-staff-priority} プロパティを @code{#f} にセット@c
しなければ、@code{avoid-slur} プロパティよりも優先されてしまい、スラーの@c
内側に記号が入りません。分数 @code{2/3} と @code{1/3} は、水平位置を調整@c
しています。
"
  doctitleja = "遅れターンを作成する"

%% Translation of GIT committish: 2f3474d9af596d677ed5b7ce720ae4d0954a6b51
  texidocit = "
Creare un gruppetto ritardato, dove la nota più bassa del gruppetto usa
l'alterazione, richiede vari \override.  La proprietà
@code{outside-staff-priority} deve essere impostata su @code{#f}, perché
altrimenti questa avrebbe la precedenza sulla proprietà @code{avoid-slur}.
Cambiando la frazione @code{2/3} si aggiusta la posizione orizzontale.

"
  doctitleit = "Creare un gruppetto ritardato"

%% Translation of GIT committish: de1e42ce512f3690387cdd065109bddff1b7bd6d
  texidocfr = "
Obtenir un @emph{gruppetto} retardé et dans lequel la note la plus basse
est altérée requiert quelques surcharges. La propriété
@w{@code{outside-staff-priority}} doit être désactivée (@code{#f}) pour
éviter qu'elle prenne le pas sur la propriété @w{@code{avoid-slur}}.
L'ajustement du premier argument de @code{\\after} (il s'agit d'une
durée) permet de jouer sur le positionnement horizontal.
"

  doctitlefr = "Création d'un grupetto retardé"

%% Translation of GIT committish: cd3e2b0177d366d0a25b4c7628b26455e52175cd
  texidoces = "
La creación de un grupeto circular de anticipación entre dos
notas, donde la nota inferior del grupeto utiliza una alteración,
requiere varias sobreescrituras de propiedades.  La propiedad
@code{outside-staff-priority} se debe establecer al valor
@code{#f}, pues en caso contrario tendría prioridad sobre la
propiedad @code{avoid-slur}.  Cambiando el primer argumento de
@code{\\after} (que es una duración) puede ajustarse la posición
horizontal.

"
  doctitlees = "Crear un grupeto de anticipación"

%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
  texidocde = "
Einen Doppelschlag mit Vorhalt zu erstellen, wobei die untere Note das
Vorzeichen benutzt, erfordert einige Einstellungsänderungen.  Die
@code{outside-staff-priority}-Eigenschaft muss auf falsch (@code{#f})
gesetzt werden, weil sie sonst über die Eigenschaft
@code{avoid-slur property} dominieren würde.  Der Wert von @code{halign}
wird benutzt, um den Doppelschlag horizontal zu positionieren.
"

  doctitlede = "Einen  Doppelschlag mit Vorhalt erstellen"

%% Translation of GIT committish: 8ffecf6be17c6ec2ff87cf31873121a8cce29b09
  texidocca = "
La creació d'un grupet circular d'anticipació entre dues notes, on
la nota inferior del grupet utilitza una alteració, requereix
diverses sobreescriptures de propietats.  La propietat
@code{outside-staff-priority} es pot establir al valor @code{#f},
atès que en aquest cas tindria prioritat sobre la propietat
@code{avoid-slur property}.  Canviant les fraccions @code{2/3} i
@code{1/3} pot ajustar-se la posició horitzontal.

"
  doctitleca = "Crear un grupet d'anticipació"

  categories = "Editorial annotations, Expressive marks, Tweaks and
                overrides"

  texidoc = "
Creating a delayed turn, where the lower note of the turn uses the
accidental, requires several overrides. The
@code{outside-staff-priority} property must be set to @code{#f}, as
otherwise this would take precedence over the @code{avoid-slur}
property. Changing the first argument of @code{\\after} (which is a
duration) adjusts the horizontal position.
"

  doctitle = "Creating a delayed turn"
} % begin verbatim


\relative c'' {
  \after 2*2/3 \turn c2( d4) r |
  \after 4 \turn c4.( d8)
  \after 4
  {
    \once \set suggestAccidentals = ##t
    \once \override AccidentalSuggestion.outside-staff-priority = ##f
    \once \override AccidentalSuggestion.avoid-slur = #'inside
    \once \override AccidentalSuggestion.font-size = -3
    \once \override AccidentalSuggestion.script-priority = -1
    \once \hideNotes
    cis8\turn \noBeam
  }
  d4.( e8)
}



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