X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fprinting-a-repeat-sign-at-the-beginning-of-a-piece.ly;h=eb68ddfc3c24394e86b30f3859c1e8d3238285dc;hb=13da8b27aabc5d5a752d00ed1e2b99ad20f0f264;hp=5fd73738963407e5be620ceb1b8bc9949090e6d4;hpb=2bf520787e5668f22dcf0d5ab3faf74693376d6a;p=lilypond.git diff --git a/Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly b/Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly index 5fd7373896..eb68ddfc3c 100644 --- a/Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly +++ b/Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly @@ -1,68 +1,44 @@ -%% Do not edit this file; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it -%% 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.17.5 +\version "2.17.6" \header { lsrtags = "repeats, tweaks-and-overrides" -%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec - texidoces = " -Se puede imprimir una línea divisoria de la forma @code{|:} al -principio de la pieza, sobreescribiendo la propiedad correspondiente: - -" - doctitlees = "Imprimir puntos de repetición al prinicpio de la pieza" - - -%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Ein @code{|:}-Taktstrich kann auch zu Beginn eines Stückes ausgegeben werden, indem -man die entsprechende Eigenschaft verändert: - -" - doctitlede = "Ein Wiederholungszeichen zu Beginn eines Stückes ausgeben" - -%% Translation of GIT committish: a5bde6d51a5c88e952d95ae36c61a5efc22ba441 - texidocfr = " -Bien qu'allant à l'encontre des usages en matière de gravure, vous -imprimerez une barre de reprise (@code{|:}) en début de partition si -vous surchargez la propriété adéquate : - -" - doctitlefr = "Impression d'une barre de reprise en début de morceau" - - texidoc = " -A @code{|:} bar line can be printed at the beginning of a piece, by +A @code{.|:} bar line can be printed at the beginning of a piece, by overriding the relevant property: " doctitle = "Printing a repeat sign at the beginning of a piece" } % begin verbatim + + \relative c'' { - \once \override Score.BreakAlignment #'break-align-orders = + \once \override Score.BreakAlignment.break-align-orders = #(make-vector 3 '(instrument-name left-edge ambitus - span-bar breathing-sign clef key-signature time-signature staff-bar - custos - span-bar)) - \once \override Staff.TimeSignature #'space-alist = + custos)) + \once \override Staff.TimeSignature.space-alist = #'((first-note . (fixed-space . 2.0)) (right-edge . (extra-space . 0.5)) ;; free up some space between time signature ;; and repeat bar line (staff-bar . (extra-space . 1))) - \bar "|:" + \bar ".|:" c1 d1 d4 e f g } -