]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/lyric-combine-new.ly
* input/: Convert ly files that still had \property. Fixes make
[lilypond.git] / input / regression / lyric-combine-new.ly
index e075cd7785fef2ecdf239af9d37434813640615c..d2a8546e0753c5e5e6b5c07a9687f7b1d38e6991 100644 (file)
@@ -1,30 +1,33 @@
+\version "2.1.22"
 \header {
 
-    texidoc = "With the newaddlyrics mechanism, individual lyric lines
-    can be associated with one melody line. For each lyric line, can
-    be tuned whether to follow melismata or not."
+    texidoc = "With the @code{\\lyricsto} mechanism, individual lyric
+    lines can be associated with one melody line. For each lyric line,
+    can be tuned whether to follow melismata or not."
     
 }
 
 \score {
 <<
     \notes \context Voice = "bla" \relative c'' {
-       c2( d4) e4 ( c2 d4) e4 
+       \autoBeamOff
+       c2( d4) e8[ c b c] f4
     }
-    \newaddlyrics "bla" \lyrics \new LyricsVoice { bla ab blob blob }
-    \newaddlyrics "bla"
-    \lyrics \new LyricsVoice {
+    \lyricsto "bla" \lyrics \new Lyrics { bla ab blob blob }
+    \lyricsto "bla" \lyrics \new Lyrics {
        bla 
 
-       \property LyricsVoice . ignoreMelismata = ##t
+       \set ignoreMelismata = ##t
        
        blob
 
        %% note: effect of ignoreMelismata delayed one time step.
-       \property LyricsVoice . ignoreMelismata \unset
+       \unset ignoreMelismata 
        blob
        
        blob
     }
-    >>
+    
+    \lyricsto "bla" \lyrics \new Lyrics { nes ted lyrics voice with more words than no tes } >>
+
     }