]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/es/notation/vocal.itely
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / es / notation / vocal.itely
index 1f2ec7fa8fbb64cfdca53663c58292bbb1ee2f26..79154f2d6c4c89835d9873f91558c0212da1541d 100644 (file)
@@ -1,14 +1,14 @@
 @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*-
 
 @ignore
-    Translation of GIT committish: 80340bdefc128536c79733d8c6f3467d91b01f72
+    Translation of GIT committish: bcd9d85bfc1dd6cc2dd3e98901b4df33fd6d0989
 
     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
@@ -312,7 +311,7 @@ contextos de voz.  Para ver más detalles, consulte @ref{Versos}.
 
 @item
 El texto se puede alinear independientemente de la duración de
-cualquier nota si las duraciones de de las sílabas se especifican
+cualquier nota si las duraciones de las sílabas se especifican
 explícitamente, y se escriben con @code{\lyricmode}.
 
 @lilypond[quote,ragged-right,verbatim]
@@ -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
@@ -1126,7 +1124,7 @@ elaboración de los ejemplos anteriores, o examinando las plantillas de
 
 @snippets
 @lilypondfile[verbatim,quote,texidoc,doctitle]
-{lyrics-old-spacing-settings.ly}
+{obtaining-2.12-lyrics-spacing-in-newer-versions.ly}
 
 @seealso
 Manual de aprendizaje:
@@ -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
 
@@ -2015,7 +2049,7 @@ muestra cómo producir dicha salida en LilyPond.
 
 @lilypond[ragged-right,quote,verbatim]
 melody = \relative c' {
-  c c c c | d d d d
+  c4 c c c | d d d d
 }
 
 text = \lyricmode {
@@ -2034,7 +2068,7 @@ text = \lyricmode {
 \markup {
   \fill-line {
     \hspace #0.1 % moves the column off the left margin;
-        % can be removed if space on the page is tight
+     % can be removed if space on the page is tight
      \column {
       \line { \bold "2."
         \column {
@@ -2042,7 +2076,7 @@ text = \lyricmode {
           "It has two lines."
         }
       }
-      \hspace #0.1 % adds vertical spacing between verses
+      \vspace #0.1 % adds vertical spacing between verses
       \line { \bold "3."
         \column {
           "This is verse three."
@@ -2050,17 +2084,15 @@ text = \lyricmode {
         }
       }
     }
-    \hspace #0.1  % adds horizontal spacing between columns;
-        % if they are still too close, add more " " pairs
-        % until the result looks good
-     \column {
+    \hspace #0.1 % adds horizontal spacing between columns;
+    \column {
       \line { \bold "4."
         \column {
           "This is verse four."
           "It has two lines."
         }
       }
-      \hspace #0.1 % adds vertical spacing between verses
+      \vspace #0.1 % adds vertical spacing between verses
       \line { \bold "5."
         \column {
           "This is verse five."
@@ -2069,11 +2101,12 @@ text = \lyricmode {
       }
     }
   \hspace #0.1 % gives some extra space on the right margin;
-      % can be removed if page space is tight
+  % can be removed if page space is tight
   }
 }
 @end lilypond
 
+
 @seealso
 Referencia de funcionamiento interno:
 @rinternals{LyricText},
@@ -2622,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> }
@@ -2663,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
 }