Index talk:Childs own music book.djvu

From Wikisource
Jump to navigation Jump to search

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]