]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/es/notation/vocal.itely
Doc-es: mark updated files, except texidocs.
[lilypond.git] / Documentation / es / notation / vocal.itely
index 6b500db22e9c03569ab8f7effcbab15064f7c11a..42b2ecda887d4e779fc6c8a738551a87249380f0 100644 (file)
@@ -1,14 +1,14 @@
 @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*-
 
 @ignore
-    Translation of GIT committish: a65e32f0ecbd7b9794a03894162cbe2d2501b934
+    Translation of GIT committish: 26a079ca2393d053315ef8dbef626c897dc9645a
 
     When revising a translation, copy the HEAD committish of the
     version that you are working on.  For details, see the Contributors'
     Guide, node Updating translation committishes..
 @end ignore
 
-@c \version "2.14.0"
+@c \version "2.16.0"
 
 @node Música vocal
 @section Música vocal
@@ -132,7 +132,6 @@ Por ejemplo:
 \lyricmode @{ Three4 blind mice,2 three4 blind mice2 @}
 @end example
 
-
 Existen dos métodos principales para especificar la colocación
 horizontal de las sílabas: mediante la indicación de la duración de
 cada sílaba explícitamente, como en el ejemplo anterior, o dejando que
@@ -722,6 +721,8 @@ escribiendo ligaduras de expresión sobre las notas de cada melisma.
 >>
 @end lilypond
 
+Observe que las ligaduras de fraseo no afectan a la creación de melismas.
+
 @item
 Se considera que las notas forman un melisma cuando se unen
 manualmente mediante barra, siempre y cuando el barrado automático
@@ -765,9 +766,6 @@ si están comprendidas entre @code{\melisma} y @code{\melismaEnd}.
 >>
 @end lilypond
 
-Observe que este método no se puede usar para indicar dos melismas si
-el primero va seguido inmediatamente por el otro.
-
 @item
 Se puede definir un melisma enteramente dentro de la letra escribiendo
 un carácter de barra baja suelto, @code{_}, por cada nota adicional
@@ -1209,18 +1207,6 @@ Para hacer que el texto evite también las líneas divisorias, use
 @}
 @end example
 
-@c TODO Create and add lsr example of lyricMelismaAlignment
-@c It's used like this to center-align all lyric syllables,
-@c even when notes are tied. -td
-
-@ignore
-\layout
-{
-     \context { \Score lyricMelismaAlignment = #0 }
-}
-@end ignore
-
-
 @node Letra y repeticiones
 @unnumberedsubsubsec Letra y repeticiones
 @translationof Lyrics and repeats
@@ -1374,6 +1360,54 @@ Se pueden añadir más estrofas de una manera similar:
 }
 @end lilypond
 
+@cindex alignBelowContext
+@funindex alignBelowContext
+
+Sin embargo, si esta construcción se inserta dentro de un contexto de
+varios pentagramas tal como un @code{ChoirStaff}, la letra de los
+versos segundo y tercero aparecerán debajo del pentagrama inferior.
+
+Para posicionarlos correctamente utilice @code{alignBelowContext}:
+
+@lilypond[verbatim,quote]
+\score {
+  <<
+    \new Staff {
+      \new Voice = "melody" {
+        \relative c'' {
+         a4 a a a
+         \repeat volta 3 { b4 b b b }
+          c4 c c c
+       }
+      }
+    }
+    \new Lyrics = "firstVerse" \lyricsto "melody" {
+      Not re -- peat -- ed.
+      <<
+        { The first time words.        }
+       \new Lyrics = "secondVerse"
+        \with { alignBelowContext = #"firstVerse" } {
+         \set associatedVoice = "melody"
+         Sec -- ond time words.
+       }
+       \new Lyrics = "thirdVerse"
+        \with { alignBelowContext = #"secondVerse" } {
+         \set associatedVoice = "melody"
+         The third time words.
+       }
+      >>
+      The end sec -- tion.
+    }
+    \new Voice = "harmony" {
+      \relative c' {
+        f4 f f f \repeat volta 2 { g8 g g4 g2 } a4 a8. a16 a2
+      }
+    }
+  >>
+}
+@end lilypond
+
+
 
 @c TODO positioning a common line of lyrics
 
@@ -2621,7 +2655,10 @@ pianoRH = \relative c'' {
   c4. g8
   % position name of cue-ing instrument just before the cue notes,
   % and above the staff
-  s1*0^\markup { \right-align { \tiny "Flute" } }
+  \new CueVoice {
+    \override InstrumentSwitch #'self-alignment-X = #RIGHT
+    \set instrumentCueName = "Flute"
+  }
   \cueDuring "flute" #UP { g4 bes4 }
 }
 pianoLH = \relative c { c4 <c' e> e, <g c> }
@@ -2662,7 +2699,11 @@ clarinet = \relative c' {
 pianoRH = \relative c'' {
   \transposition c'
   % position name of cue-ing instrument below the staff
-  s1*0_\markup { \right-align { \tiny "Clar." } }
+  \new CueVoice {
+    \override InstrumentSwitch #'self-alignment-X = #RIGHT
+    \override InstrumentSwitch #'direction = #DOWN
+    \set instrumentCueName = "Clar."
+  }
   \cueDuring "clarinet" #DOWN { c4. g8 }
   g4 bes4
 }