lilypond-user
[Top][All Lists]
Advanced

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

RE: Harmonic Analysis


From: Mark Stephen Mrotek
Subject: RE: Harmonic Analysis
Date: Sat, 8 Dec 2012 18:55:46 -0800

Mr. Nalesnik:

I see the difference in how the two voices of the "left" are defined from the 
two voices of the "right." If I make these changes shall I have to adjust 
anything in the area in which the pitches are entered?

Thank you!

Mark

-----Original Message-----
From: David Nalesnik [mailto:address@hidden 
Sent: Saturday, December 08, 2012 6:48 PM
To: Mark Stephen Mrotek
Cc: address@hidden
Subject: Re: Harmonic Analysis

On Sat, Dec 8, 2012 at 8:11 PM, Mark Stephen Mrotek <address@hidden> wrote:
> Hello:
>
>
>
> Following Mr. Nalesnik’s suggestions I followed the template at
>
> http://www.mail-archive.com/address@hidden/msg69861/rN.ly
>
> and corrected some grammar.
>
>
>
> I entered this as a test:
>
> analysis = \lyricmode {
>
>   \set stanza =  #'e:

Try:

\set stanza = #"e:"

Also, you need to explicitly create a Voice context called "leftTwo"
in order to use \lyricsto.  Right now, "leftTwo" is the name of the variable 
that contains your music, not the name of the context you want to attach the 
lyrics to.

Here's a working template:

analysis = \lyricmode {
  \set stanza =  #"e:"
  \markup \rN { v }
}

rightOne = {
  s1
}

rightTwo = {
  s1
}

leftOne = {
  s1
}

leftTwo = {
  c1
}

\score {
  \new PianoStaff  <<
    \new Staff = "right" << \rightOne \\ \rightTwo >>
    \new Staff = "left" <<
      \clef bass
      \new Voice {
        \leftOne
      }
      \new Voice = "leftTwo" {
        \leftTwo
      }
      >>
    \new Lyrics \lyricsto "leftTwo" { \analysis }
  >>
  \layout { }
}




reply via email to

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