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