X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fsetting-the-double-repeat-default-for-volte.ly;fp=Documentation%2Fsnippets%2Fsetting-the-double-repeat-default-for-volte.ly;h=feba3e29c253a4603fe0766f7c84e1c0c1807824;hb=e90f0536f9be39ada0bef0aeb0d275dec3b2fb5b;hp=0000000000000000000000000000000000000000;hpb=a8c9e8a7ca320ab0df5fd32e717fd62cd7635ce6;p=lilypond.git diff --git a/Documentation/snippets/setting-the-double-repeat-default-for-volte.ly b/Documentation/snippets/setting-the-double-repeat-default-for-volte.ly new file mode 100644 index 0000000000..feba3e29c2 --- /dev/null +++ b/Documentation/snippets/setting-the-double-repeat-default-for-volte.ly @@ -0,0 +1,49 @@ +% DO NOT EDIT this file manually; it is automatically +% generated from Documentation/snippets/new +% Make any changes in Documentation/snippets/new/ +% and then run scripts/auxiliar/makelsr.py +% +% This file is in the public domain. +%% Note: this file works from version 2.14.0 +\version "2.14.0" +\header { +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c + + texidoces = " + +Existen tres estilos distintos de repeticiones dobles para la primera +y segunda vez, que se pueden ajustar utilizando +@code{doubleRepeatType}. + +" + + doctitlees = "Establecer el tipo de repetición doble predeterminado para la primera y segunda vez" + +%% Translation of GIT committish: 158658dc75b6f6553e77ff53119ac802eb91f50c + texidocfr = "LilyPond dispose de trois styles de barre différents +pour indiquer une succession de reprises. Vous devez opter pour un + style par défaut, à l'aide de la propriété @code{doubleRepeatType}. + +" + + doctitlefr = "Succession de reprise et style de barre par défaut" + + + lsrtags = "repeats" + texidoc = "There are three different styles of double repeats for +volte, that can be set using @code{doubleRepeatType}." + + doctitle = "Setting the double repeat default for volte" +} % begin verbatim + + + +\relative c'' { + \repeat volta 1 { c1 } + \set Score.doubleRepeatType = #":|:" + \repeat volta 1 { c1 } + \set Score.doubleRepeatType = #":|.|:" + \repeat volta 1 { c1 } + \set Score.doubleRepeatType = #":|.:" + \repeat volta 1 { c1 } +}