lilypond-user
[Top][All Lists]
Advanced

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

Re: Harmonic Analysis


From: David Nalesnik
Subject: Re: Harmonic Analysis
Date: Sat, 8 Dec 2012 20:48:29 -0600

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]