X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchanging-form-of-multi-measure-rests.ly;h=3e4c3fcb2ec041040c56a48a24786f6690916c2a;hb=a4d5b4cb836982819d7dead138ed3cc86997b5f4;hp=fbf079f6ab8b402415d3d4735ffb71fd2ed39a46;hpb=4cadb44485b704de34192cfdd9ed9fbb4dfa0dee;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 fbf079f6ab..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.14.0" +% 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: 2d548a99cb9dba80f2ff035582009477cd37eceb - 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 + } }