X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Faligning-marks-with-various-notation-objects.ly;h=8bfd4b76aad6cd3f60d5bc26fe9dc6644095e2ec;hb=13da8b27aabc5d5a752d00ed1e2b99ad20f0f264;hp=25dca108d84d973420f1bbad1f12a83729013c50;hpb=a7210078ea5ed650743536c8fcd8b7291322d0e7;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 25dca108d8..8bfd4b76aa 100644 --- a/Documentation/snippets/aligning-marks-with-various-notation-objects.ly +++ b/Documentation/snippets/aligning-marks-with-various-notation-objects.ly @@ -1,69 +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.16" +\version "2.17.6" \header { lsrtags = "text" -%% Translation of GIT committish: 1d589aa04c20d7711bf662618adbdd6d445db29d - 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}, @@ -88,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 @@ -103,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 @@ -114,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