lyrics and repeat

2008-08-31 Thread Grammostola Rosea
Hi, I want to add lyrics to a song with a repeat in it. So part one of the song is repeated ones and I want to add lyrics on both parts. Here's my score, with lyrics only for the first part yet... global = { \key f \major \tempo 4=76 \time 4/4 } chordNames = \chordmode { \global f2 a:m

Re: lyrics and repeat

2008-08-31 Thread Dominic Neumann
To add more lines of lyrics easily add another \addlyrics { ... } after the first. It doesn´t matter if there´s a repeat in the notes - LilyPond typesets the lyrics as you see them on the paper. Hope this helps Dominic 2008/8/31 Grammostola Rosea <[EMAIL PROTECTED]>: > Hi, > > I want to add lyr

Re: lyrics and repeat

2008-08-31 Thread Grammostola Rosea
Dominic Neumann wrote: To add more lines of lyrics easily add another \addlyrics { ... } after the first. It doesn´t matter if there´s a repeat in the notes - LilyPond typesets the lyrics as you see them on the paper. But I don't use \addlyrics here, but: verse = \lyricmode { % Lyrics fo

Re: lyrics and repeat

2008-08-31 Thread Joseph Haig
2008/8/31 Grammostola Rosea <[EMAIL PROTECTED]>: > Dominic Neumann wrote: >> >> To add more lines of lyrics easily add another \addlyrics { ... } >> after the first. >> It doesn´t matter if there´s a repeat in the notes - LilyPond typesets >> the lyrics as you see them on the paper. >> >> >> > > Bu

Re: lyrics and repeat

2008-09-01 Thread Grammostola Rosea
Joseph Haig wrote: You want to add: versetwo = \lyricmode { % Second line of words here } and then later, where you have: \new Staff { \melody } \addlyrics { \verse } you want: \new Staff { \melody } \addlyrics { \verse } \addlyrics { \versetwo } Note that the lyrics are not part of the s

Re: lyrics and repeat

2008-09-01 Thread Grammostola Rosea
Grammostola Rosea wrote: Joseph Haig wrote: You want to add: versetwo = \lyricmode { % Second line of words here } and then later, where you have: \new Staff { \melody } \addlyrics { \verse } you want: \new Staff { \melody } \addlyrics { \verse } \addlyrics { \versetwo } Note that the ly

Re: lyrics and repeat

2008-09-01 Thread Dominic Neumann
There was a similar question some days ago. Do the answers help you? http://www.mail-archive.com/lilypond-user@gnu.org/msg39370.html Dominic 2008/9/1 Grammostola Rosea <[EMAIL PROTECTED]>: > Grammostola Rosea wrote: >> >> Joseph Haig wrote: >>> >>> You want to add: >>> >>> versetwo = \lyricmode {

Re: lyrics and repeat

2008-09-01 Thread Grammostola Rosea
Dominic Neumann wrote: There was a similar question some days ago. Do the answers help you? http://www.mail-archive.com/lilypond-user@gnu.org/msg39370.html Dominic 2008/9/1 Grammostola Rosea <[EMAIL PROTECTED]>: Grammostola Rosea wrote: Joseph Haig wrote: You want to add: ver

Re: lyrics and repeat

2008-09-01 Thread Grammostola Rosea
Grammostola Rosea wrote: Dominic Neumann wrote: There was a similar question some days ago. Do the answers help you? http://www.mail-archive.com/lilypond-user@gnu.org/msg39370.html Dominic 2008/9/1 Grammostola Rosea <[EMAIL PROTECTED]>: Grammostola Rosea wrote: Joseph Haig wrote:

Re: lyrics and repeat

2008-09-01 Thread James E. Bailey
Am 01.09.2008 um 12:48 schrieb Grammostola Rosea: Isn't there a D.S. al Coda feature in Lilypond? No, you put in the symbols where you want them, and the performers interpret them. http://kainhofer.com/~lilypond/Documentation/user/lilypond/Text-marks.html#Text-marks ___

Re: lyrics and repeat

2008-09-01 Thread Grammostola Rosea
Grammostola Rosea wrote: Dominic Neumann wrote: There was a similar question some days ago. Do the answers help you? http://www.mail-archive.com/lilypond-user@gnu.org/msg39370.html Dominic 2008/9/1 Grammostola Rosea <[EMAIL PROTECTED]>: Grammostola Rosea wrote: Joseph Haig wrote:

Re: lyrics and repeat

2008-09-01 Thread Risto Vääräniemi
Hi, 2008/9/1 Grammostola Rosea <[EMAIL PROTECTED]>: > Can someone tell me why D.S. is not at the end of the bar, but on the > beginning? How do I change that? You are using it as a \mark and it is now attached to the next bar line. You could try: r2 ^\markup "D.S.". > Why isn't the second coda

Re: lyrics and repeat

2008-09-01 Thread Grammostola Rosea
Risto Vääräniemi wrote: If I have understood correctly, for Lilypond the D.S. and codas are just "text" and you cannot loop music i.e. MIDI with them. They are just visual aids for the real performer as James already pointed out. Therefore, you don't need to contain the D.S. or coda parts inside

Re: lyrics and repeat

2008-09-01 Thread James E. Bailey
Am 01.09.2008 um 16:42 schrieb Grammostola Rosea: Can someone tell me why D.S. is not at the end of the bar, but on the beginning? How do I change that? Why isn't the second coda sign not displayed? Thanks in advance. http://kainhofer.com/~lilypond/Documentation/user/lilypond/Text-marks.

Re: lyrics and repeat

2008-09-01 Thread James E. Bailey
Am 01.09.2008 um 17:27 schrieb Grammostola Rosea: Risto Vääräniemi wrote: If I have understood correctly, for Lilypond the D.S. and codas are just "text" and you cannot loop music i.e. MIDI with them. They are just visual aids for the real performer as James already pointed out. Therefore, you

Re: lyrics and repeat

2008-09-01 Thread Grammostola Rosea
James E. Bailey wrote: http://kainhofer.com/~lilypond/Documentation/user/lilypond/Repeats-in-MIDI.html#Repeats-in-MIDI That's one I actually forget rather regularly. Hopefully when it it's re

Re: lyrics and repeat

2008-09-01 Thread Grammostola Rosea
Grammostola Rosea wrote: James E. Bailey wrote: http://kainhofer.com/~lilypond/Documentation/user/lilypond/Repeats-in-MIDI.html#Repeats-in-MIDI That's one I actually forget rather regularly.