]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/multi-measure-rest-markup.ly
489895c8b30b7af4f15f2831d48dd7673a441eae
[lilypond.git] / Documentation / snippets / multi-measure-rest-markup.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "text, rhythms"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13 texidoces = "
14 Los elementos de marcado aplicados a un silencio multicompás se
15 centran encima o debajo de éste.  Los elementos de marcado extensos
16 que se adjuntan a silencios multicompás no producen la expansión del
17 compás.  Para expandir un silencio multicompás de forma que quepa todo
18 el marcado, utilice un silencio de separación con un marcado aplicado
19 antes del silencio multicompás.
20
21 Observe que el silencio separador produce la inserción de un compás.
22 El texto aplicado a un siencio sparador de esta forma se alinea por la
23 izquierda a la posición en que la nota estaría situada dentro del
24 compás, pero si la longitud del compás está determinada por la
25 longitud del texto, éste aparecerá centrado.
26
27 "
28
29 doctitlees = "Marcado de silencios multicompás"
30
31
32 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
33   texidocde = "Textbeschriftungen, die an Mehrtaktpausen gehängt wird,
34 wird über oder unter der Pause zentriert.  Lange Beschriftungen
35 lassen den Takt nicht breiter werden.  Um eine Mehrtaktpause einer
36 Beschriftung anzupassen, muss eine unsichtbare Pause mit der
37 Beschriftung direkt vor der Mehrtaktpause eingesetzt werden.
38
39 Man sollte beachten, dass unsichtbare Pausen automatische Taktstriche
40 nach sich ziehen.  Text, der an eine unsichtbare Pause gehängt wird,
41 ist links ausgerichtet an der Position, wo die Pause erscheinen
42 würde.  Wenn aber die Länge des Taktes durch die Länge des Textes
43 bestimmt wird, sieht es so aus, als ob der Text zentriert gesetzt
44 ist."
45
46   doctitlede = "Textbeschriftung und Mehrtaktpausen"
47
48
49
50 %% Translation of GIT committish: 4da4307e396243a5a3bc33a0c2753acac92cb685
51   texidocfr = "
52 Lorsque du texte est attaché à un silence multi-mesures, il sera centré
53 dans la mesure, au-dessus ou en dessous de la portée.  Afin d'étirer la
54 mesure dans le cas ou ce texte est relativement long, il suffit
55 d'insérer un silence invisible auquel on attache le texte en question,
56 avant le silence multi-mesures.
57
58 Rappelez-vous qu'un silence invisible génère une barre de mesure.  Le
59 texte attaché à ce silence invisible sera alors aligné sur la gauche de
60 là où serait positionnée la note.  Cependant, si la taille de la mesure
61 est déterminée par la longueur du texte, il apparaîtra comme centré.
62
63 "
64   doctitlefr = "Ajout de texte à un silence multi-mesures"
65
66   texidoc = "
67 Markups attached to a multi-measure rest will be centered above or
68 below it.  Long markups attached to multi-measure rests do not cause
69 the measure to expand.  To expand a multi-measure rest to fit the
70 markup, use a spacer rest with an attached markup before the
71 multi-measure rest.
72
73 Note that the spacer rest causes a bar line to be inserted.  Text
74 attached to a spacer rest in this way is left-aligned to the position
75 where the note would be placed in the measure, but if the measure
76 length is determined by the length of the text, the text will appear to
77 be centered.
78
79 "
80   doctitle = "Multi-measure rest markup"
81 } % begin verbatim
82
83
84 \relative c' {
85   \compressFullBarRests
86   \textLengthOn
87   s1*0^\markup { [MAJOR GENERAL] }
88   R1*19
89   s1*0_\markup { \italic { Cue: ... it is yours } }
90   s1*0^\markup { A }
91   R1*30^\markup { [MABEL] }
92   \textLengthOff
93   c4^\markup { CHORUS } d f c
94 }