X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Faligning-marks-with-various-notation-objects.ly;h=fbb21f1f324b8486d52285d65da70c6e6341dc49;hb=f80f8678b39c5bc7da16668d4052514b8d07b281;hp=fa12277de1085c4a7e78bdcd0d03e766c52c3151;hpb=6019a1e8f0301c1c3bf86ccc92178d820f9c3784;p=lilypond.git diff --git a/Documentation/snippets/aligning-marks-with-various-notation-objects.ly b/Documentation/snippets/aligning-marks-with-various-notation-objects.ly index fa12277de1..fbb21f1f32 100644 --- a/Documentation/snippets/aligning-marks-with-various-notation-objects.ly +++ b/Documentation/snippets/aligning-marks-with-various-notation-objects.ly @@ -1,67 +1,14 @@ -%% Do not edit this file; it is automatically +%% 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.13.29" +\version "2.17.15" \header { lsrtags = "text" -%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b - texidoces = " -Si están especificadas, las marcas de texto se pueden alinear con -objetos de notación distintos a las líneas divisorias. Entre estos -objetos se encuentran @code{ambitus}, @code{breathing-sign}, -@code{clef}, @code{custos}, @code{staff-bar}, @code{left-edge}, -@code{key-cancellation}, @code{key-signature} y @code{time-signature}. - -En estos casos, las marcas de texto se centran horizontalmente sobre -el objeto, aunque esto se puede cambiar, como se muestra en la segunda -línea de este ejemplo (en una partitura con varios pentagramas, se -debe hacer este ajuste para todos los pentagramas). - -" - doctitlees = "Alinear marcas con varios objetos de notación" - -%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Wenn angegeben, können Textzeichen auch an anderen Objekten als Taktstrichen -ausgerichtet werden. Zu diesen Objekten gehören @code{ambitus}, -@code{breathing-sign}, @code{clef}, @code{custos}, @code{staff-bar}, -@code{left-edge}, @code{key-cancellation}, @code{key-signature} und -@code{time-signature}. - -In diesem Fall werden die Zeichen horizontal über dem Objekt zentriert. -Diese Ausrichtung kann auch geändert werden, wie die zweite Zeile -des Beispiels zeigt. In einer Partitur mit vielen Systemen sollte -diese Einstellung für alle Systeme gemacht werden. - -" - - doctitlede = "Zeichen an verschiedenen Notationsobjekten ausrichten" -%% Translation of GIT committish: 548ef200973bd3d46ea75c5498461d9e5f168334 - texidocfr = " -Les indications textuelles peuvent s'aligner par rapport à d'autres -objets que des barres de mesure, tels que @code{ambitus}, -@code{breathing-sign}, @code{clef}, @code{custos}, @code{staff-bar}, -@code{left-edge}, @code{key-cancellation}, @code{key-signature}, ou -@code{time-signature}. - - - -Par défaut, les indications textuelles sont alignées avec le milieu -des objets de notation. Bien entendu, vous pouvez modifier les -propriétés des objets en question pour obtenir un autre -résultat comme l'illustre la deuxième ligne de l'exemple. Dans le cas -de portées multiples, ces réglages doivent être faits pour chacune -d'entre elles. - - - -" - doctitlefr = "Alignement des indications par rapport à divers objets -de notation" - - texidoc = " If specified, text marks may be aligned with notation objects other than bar lines. These objects include @code{ambitus}, @@ -86,14 +33,14 @@ be done for all the staves). e1 % the RehearsalMark will be centered above the Clef - \override Score.RehearsalMark #'break-align-symbols = #'(clef) + \override Score.RehearsalMark.break-align-symbols = #'(clef) \key a \major \clef treble - \mark "↓" + \mark \markup { \char ##x2193 } e1 % the RehearsalMark will be centered above the TimeSignature - \override Score.RehearsalMark #'break-align-symbols = #'(time-signature) + \override Score.RehearsalMark.break-align-symbols = #'(time-signature) \key a \major \clef treble \time 3/4 @@ -101,7 +48,7 @@ be done for all the staves). e2. % the RehearsalMark will be centered above the KeySignature - \override Score.RehearsalMark #'break-align-symbols = #'(key-signature) + \override Score.RehearsalMark.break-align-symbols = #'(key-signature) \key a \major \clef treble \time 4/4 @@ -112,20 +59,20 @@ be done for all the staves). e1 % the RehearsalMark will be aligned with the left edge of the KeySignature - \once \override Score.KeySignature #'break-align-anchor-alignment = #LEFT + \once \override Score.KeySignature.break-align-anchor-alignment = #LEFT \mark \markup { \char ##x2193 } \key a \major e1 % the RehearsalMark will be aligned with the right edge of the KeySignature - \once \override Score.KeySignature #'break-align-anchor-alignment = #RIGHT + \once \override Score.KeySignature.break-align-anchor-alignment = #RIGHT \key a \major \mark \markup { \char ##x2193 } e1 % the RehearsalMark will be aligned with the left edge of the KeySignature % and then shifted right by one unit. - \once \override Score.KeySignature #'break-align-anchor = #1 + \once \override Score.KeySignature.break-align-anchor = #1 \key a \major \mark \markup { \char ##x2193 } e1