lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: re: Score Problems


From: Valentin Villenave
Subject: Re: re: Score Problems
Date: Tue, 28 Aug 2007 22:00:47 +0200

2007/8/28, Jay Hamilton <address@hidden>:

> It didn't now I get error logs telling me that
> example;
> C:/Documents and Settings/Frybyte/Desktop/Hamilton/Tunnel/Tunnel.ly:25:43: 
> warning: Brace found at end of lyric.  Did you forget a space?

This is weird. I didn't get such a message when compiling your file.
However, you forgot a capital L in the \reedLyrics identifier.

You do not have to use so many << >> ; since you enclose your whole
\score block with a single << ... >> LilyPond already knows this music
is to be polyphonic.

The Lyrics are to associated with a Voice context. The way you did it,
you named your Staff contexts but not the Voice contexts inside them.

Here's your file, with the corrections I just mentioned. Otherwise,
you're doing just fine.

Regards,
Valentin


\version "2.10.25"
\header {
 title = "Tunnel Piece"
 composer = "Jay Hamilton"
   copyright = \markup { \tiny \override #'(baseline-skip . 0.5)
\center-align
       {  "CC lic 2.5 some rights reserved Jay Hamilton 1989"
   "see http://creativecommons.org/licenses/by-nd/2.5/";
              } }
}

fluteMusic =
\relative c'' {
\set Staff.instrumentName = "Singer I"
\set Staff.shortInstrumentName = "I."
\set Staff.midiInstrument = "flute"
\time 9/4
\tempo 4 = 75
\key f \major
#(set-global-staff-size 19)
\override Staff.TimeSignature #' style = #' ()
g4 r g r g r g g r
\bar "|."
}
fluteLyrics = \lyricmode  {
bum bum bum bum bump
 }


reedMusic =
\relative c'' {
\set Staff.instrumentName = "Singer II"
\set Staff.shortInstrumentName = "II."
\set Staff.midiInstrument = "clarinet"
\override Staff.TimeSignature #' style = #' ()
g4 r g r g r g g r
}

reedLyrics = \lyricmode  {
bum bum bum bum bump
 }


marimbaMusic =
\relative c'' {
\set Staff.instrumentName = "Singer III"
\set Staff.shortInstrumentName = "III."
\set Staff.midiInstrument = "Alto Sax"
\override Staff.TimeSignature #' style = #' ()
g4 r g r g r g g r
}
marimbaLyrics = \lyricmode  {
bum bum bum bum bump
 }

violinoneMusic =
\relative c''{
\set Staff.instrumentName = "Singer IV"
\set Staff.shortInstrumentName = "IV."
\set Staff.midiInstrument = "oboe"
\override Staff.TimeSignature #' style = #' ()
g r g r g r g g r
}
violinoneLyrics = \lyricmode  {
bum bum bum bum bump
 }


violintwoMusic =
\relative c'{
\set Staff.instrumentName = "Singer V"
\set Staff.shortInstrumentName = "V"
\set Staff.midiInstrument = "Cello"
\clef bass
\override Staff.TimeSignature #' style = #' ()
g r g r g r g g r
}
violintwoLyrics = \lyricmode {
bum bum bum bum bump
}


\score {<<

  \new Voice = "flute"  \fluteMusic
  \new Lyrics \lyricsto flute \fluteLyrics

  \new Voice = "reed"  \reedMusic
  \new Lyrics \lyricsto reed \reedLyrics

  \new Voice = "marimba"  \marimbaMusic
  \new Lyrics \lyricsto marimba \marimbaLyrics

  \new Voice = "violinone"  \violinoneMusic
  \new Lyrics \lyricsto violinone \violinoneLyrics

  \new Voice = "violintwo"  \violintwoMusic
  \new Lyrics \lyricsto violintwo \violintwoLyrics

>>
\layout { }

}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]