]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/aligning-marks-with-various-notation-objects.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / lsr / aligning-marks-with-various-notation-objects.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 %% Note: this file works from version 2.12.0
4 \version "2.13.1"
5
6 \header {
7 %% Translation of GIT committish: 70f455b078620f842672c64c66d87a08158a24ac
8   texidoces = "
9 Si están especificadas, las marcas de texto se pueden alinear con
10 objetos de notación distintos a las líneas divisorias.  Entre estos
11 objetos se encuentran @code{ambitus}, @code{breathing-sign},
12 @code{clef}, @code{custos}, @code{staff-bar}, @code{left-edge},
13 @code{key-cancellation}, @code{key-signature} y @code{time-signature}.
14
15 En estos casos, las marcas de texto se centran horizontalmente sobre
16 el objeto, aunque esto se puede cambiar, como se muestra en la segunda
17 línea de este ejemplo (en una partitura con varios pentagramas, se
18 debe hacer este ajuste para todos los pentagramas).
19
20 "
21   doctitlees = "Alinear marcas con varios objetos de notación"
22
23 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
24   texidocde = "
25 Wenn angegeben, können Textzeichen auch an anderen Objekten als Taktstrichen
26 ausgerichtet werden.  Zu diesen Objekten gehören @code{ambitus},
27 @code{breathing-sign}, @code{clef}, @code{custos}, @code{staff-bar},
28 @code{left-edge}, @code{key-cancellation}, @code{key-signature} und
29 @code{time-signature}.
30
31 In diesem Fall werden die Zeichen horizontal über dem Objekt zentriert.
32 Diese Ausrichtung kann auch geändert werden, wie die zweite Zeile
33 des Beispiels zeigt.  In einer Partitur mit vielen Systemen sollte
34 diese Einstellung für alle Systeme gemacht werden.
35
36 "
37
38   doctitlede = "Zeichen an verschiedenen Notationsobjekten ausrichten"
39
40   lsrtags = "text"
41   texidoc = "If specified, text marks may be aligned with notation
42 objects other than bar lines.  These objects include @code{ambitus},
43 @code{breathing-sign}, @code{clef}, @code{custos}, @code{staff-bar},
44 @code{left-edge}, @code{key-cancellation}, @code{key-signature}, and
45 @code{time-signature}.
46
47 In such cases, text marks will be horizontally centered above the
48 object.  However this can be changed, as demonstrated on the second
49 line of this example (in a score with multiple staves, this setting
50 should be done for all the staves)."
51   doctitle = "Aligning marks with various notation objects"
52 } % begin verbatim
53
54
55 \relative c' {
56   e1
57   
58   % the RehearsalMark will be centered above the Clef
59   \override Score.RehearsalMark #'break-align-symbols = #'(clef)
60   \key a \major
61   \clef treble
62   \mark "↓"
63   e1
64   
65   % the RehearsalMark will be centered above the TimeSignature
66   \override Score.RehearsalMark #'break-align-symbols = #'(time-signature)
67   \key a \major
68   \clef treble
69   \time 3/4
70   \mark "↓"
71   e2.
72   
73   % the RehearsalMark will be centered above the KeySignature
74   \override Score.RehearsalMark #'break-align-symbols = #'(key-signature)
75   \key a \major
76   \clef treble
77   \time 4/4
78   \mark "↓"
79   e1
80
81   \break
82   e1
83   
84   % the RehearsalMark will be aligned with the left edge of the KeySignature
85   \once \override Score.KeySignature #'break-align-anchor-alignment = #LEFT
86   \mark "↓"
87   \key a \major
88   e1
89   
90   % the RehearsalMark will be aligned with the right edge of the KeySignature
91   \once \override Score.KeySignature #'break-align-anchor-alignment = #RIGHT
92   \key a \major
93   \mark "↓"
94   e1
95   
96   % the RehearsalMark will be aligned with the left edge of the KeySignature
97   % and then shifted right by one unit.
98   \once \override Score.KeySignature #'break-align-anchor = #1
99   \key a \major
100   \mark "↓"
101   e1
102 }