X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchanging-form-of-multi-measure-rests.ly;h=3e4c3fcb2ec041040c56a48a24786f6690916c2a;hb=a013f6616bc50b9e89639d811dc77f62b5afb58d;hp=1c3937d9597d394a98f4d99a6c1107356f68ec14;hpb=e49d6df0e5302762e33717571c408615d74f705d;p=lilypond.git diff --git a/Documentation/snippets/changing-form-of-multi-measure-rests.ly b/Documentation/snippets/changing-form-of-multi-measure-rests.ly index 1c3937d959..3e4c3fcb2e 100644 --- a/Documentation/snippets/changing-form-of-multi-measure-rests.ly +++ b/Documentation/snippets/changing-form-of-multi-measure-rests.ly @@ -1,48 +1,16 @@ -%% DO NOT EDIT this file manually; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it -%% Make any changes in LSR itself, or in Documentation/snippets/new/ , -%% and then run scripts/auxiliar/makelsr.py -%% -%% This file is in the public domain. -\version "2.12.2" +% 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.19.20 + +\version "2.19.20" \header { lsrtags = "rhythms, tweaks-and-overrides" -%% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d - doctitlees = "Cambiar la forma de los silencios multicompás" - texidoces = " -Si hay diez compases de silencio o menos, se imprime en el pentagrama -una serie de silencios de breve y longa (conocidos en alemán como -@qq{Kirchenpausen}, «silencios eclesiásticos»); en caso contrario se -muestra una barra normal. Este número predeterminado de diez se -puede cambiar sobreescribiendo la propiedad @code{expand-limit}: - -" - - -%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Wenn zehn oder weniger Pausentakte vorkommen, wird eine Reihe von Longa- -und Brevispausen (auch Kirchenpausen genannt) gesetzt, bei mehr Takten -wird eine Line mit der Taktanzahl ausgegeben. Der vorgegebene Wert von -zehn kann geändert werden, indem man die @code{expand-limit}-Eigenschaft -setzt: -" - doctitlede = "Die Erscheinung von Pausentakten ändern" - - - -%% Translation of GIT committish: 4da4307e396243a5a3bc33a0c2753acac92cb685 -texidocfr = " -Dans le cas où ce silence dure moins de dix mesures, LilyPond imprime sur -la portée des @qq{ silences d'église } -- @emph{Kirchenpause} en -allemand -- et qui sont une simple suite de rectangles. La propriété -@code{expand-limit} permet d'obtenir un silence unique : - -" - doctitlefr = "Modifier l'apparence d'un silence multi-mesures" - texidoc = " If there are ten or fewer measures of rests, a series of longa and breve rests (called in German @qq{Kirchenpausen} - church rests) is @@ -54,9 +22,11 @@ default number of ten may be changed by overriding the doctitle = "Changing form of multi-measure rests" } % begin verbatim + \relative c'' { - \compressFullBarRests - R1*2 | R1*5 | R1*9 - \override MultiMeasureRest #'expand-limit = #3 - R1*2 | R1*5 | R1*9 + \compressMMRests { + R1*2 | R1*5 | R1*9 + \override MultiMeasureRest.expand-limit = #3 + R1*2 | R1*5 | R1*9 + } }