Index talk:Childs own music book.djvu

Latest comment: 10 years ago by AdamBMorgan in topic Formatting notes

Formatting notes edit

Song titles should be centered and enlarged:

{{center|{{x-larger|TITLE}}}}

Technically, the musical scores in this book are piano staves, and should be written as:

<score vorbis="1" midi="1">
\relative c'' {
  \new PianoStaff <<
    \new Staff {
      ...
    }
    \new Staff {
      \clef "bass"
      ...
    }
  >>
}
</score>

However, I am having problems adding the lyrics correctly with that system (the example in the LilyPond manual causes an error on Wikisource). In the meantime, the following format works and is good enough:

<score vorbis="1" midi="1">
\relative c'' {
  <<
    \new Staff { 
      ...
    }
    \addlyrics {
      ...
    }
    \addlyrics {
      ...
    }
    \new Staff {
      \clef "bass"
      ...
    }
  >>
}
</score>

- AdamBMorgan (talk) 19:21, 22 May 2013 (UTC)Reply