Re: lyric problems with latest development version(s)

2014-10-02 Thread Noeck
 Is anyone else finding that melismas are not working in = v2.19.14 as they 
 did in = v2.19.13?
 Specifically, ties seem to no longer force melismas.

Hi Kieren,

do you have a minimal example showing the problem ? That would make it
easier for others to look into it (you know). Especially if it wasn’t
changed on purpose.

Cheers,
Joram

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


lyric problems with latest development version(s)

2014-10-01 Thread Kieren MacMillan
Hi,

Is anyone else finding that melismas are not working in = v2.19.14 as they did 
in = v2.19.13?
Specifically, ties seem to no longer force melismas.

Thanks,
Kieren.

___

Kieren MacMillan, composer
www:  http://www.kierenmacmillan.info
email:  i...@kierenmacmillan.info


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: lyric problems with latest development version(s)

2014-10-01 Thread Kieren MacMillan
Answering my own question (I think…?):
It looks like one must explictly add \new Voice if one uses \addlyrics — is 
that a known “enhancement”?

Thanks,
Kieren.
___

Kieren MacMillan, composer
www:  http://www.kierenmacmillan.info
email:  i...@kierenmacmillan.info


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lyric problems

2005-11-13 Thread Mats Bengtsson

Quoting Erik Sandberg [EMAIL PROTECTED]:

I would suggest that you use \lyricsto, and avoid the \\ syntax. 
Somethign

like:


 \new Staff \context Voice = melody {
   .. f'2 ...  \context Voice = other { \voiceOne \tiny g ... } \context
Voice=melody { \voiceTwo g,2 ... }  \oneVoice r4 ...
 }

 \lyricsto melody { Al ... }




Which can be slightly simplified into:


 \new Staff \context Voice = melody {
   .. f'2 ...  \context Voice = other { \voiceOne \tiny g ... } { 
\voiceTwo g,2 ... }  \oneVoice r4 ...

 }

 \lyricsto melody { Al ... }




  /Mats



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Lyric problems

2005-11-12 Thread Seng Liang
Hi, I'm using Lilypond 2.7.12 for Windows 98 and I am having some lyric 
difficulties. Here is the file:

\version 2.7.12

\relative c' {
\set Staff.instrument=Soprano
\clef treble  #(set-accidental-style 'modern) 
\key f \major 
\time 2/4
 \autoBeamOff  \override Score.RehearsalMark #'padding = #2.5 
 f'2 g, c a' f  { \tiny g c f,4 } \\ { \normalsize g,2 c f,4 }  r4  
\bar .|.  }
  
 \addlyrics { Al -- le -- lu -- ja,  al -- le -- lu -- ja. }

I would like to know why are the lyrics in bar 6 to 8 missing? 
For these bars, there are no changes in melisma and note durations, the only 
difference is the pitch between these two voices.
Therefore, how can I make the words le, lu and ja appear only once 
respectively on the notes g2 c2 and f4?
Thank you.




___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lyric problems

2005-11-12 Thread Erik Sandberg
On Saturday 12 November 2005 11.53, Seng Liang wrote:
 Hi, I'm using Lilypond 2.7.12 for Windows 98 and I am having some lyric
 difficulties. Here is the file:

 \version 2.7.12

 \relative c' {
 \set Staff.instrument=Soprano
 \clef treble  #(set-accidental-style 'modern)
 \key f \major
 \time 2/4
  \autoBeamOff  \override Score.RehearsalMark #'padding = #2.5
  f'2 g, c a' f  { \tiny g c f,4 } \\ { \normalsize g,2 c f,4 }  r4
 \bar .|.  }

  \addlyrics { Al -- le -- lu -- ja,  al -- le -- lu -- ja. }

 I would like to know why are the lyrics in bar 6 to 8 missing?

The lyrics are aligned to the notes from one voice. The problem is that
 \\  create new voices implicitly (named 1 and 2), and the f'2 etc. 
belong to the default voice .

I would suggest that you use \lyricsto, and avoid the \\ syntax. Somethign 
like:


  \new Staff \context Voice = melody {
.. f'2 ...  \context Voice = other { \voiceOne \tiny g ... } \context 
Voice=melody { \voiceTwo g,2 ... }  \oneVoice r4 ...
  }

  \lyricsto melody { Al ... }


-- 
Erik


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user