Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > ffe16b32b9f5eec0add70c0a6bc8cec8 > files > 12126

lilypond-doc-2.12.2-3mdv2009.1.i586.rpm


\version "2.12.2"
% automatically converted from /home/lilydev/vc/gub/target/linux-x86/src/lilypond-localhost--home-lilydev-vc-lilypond-master/input/regression/musicxml/61i-Lyrics-Chords.xml

\header {
    texidoc = "Each note of a chord can have
          some lyrics attached. In this case, each note of the chord has lyrics 
          of the form \"Lyrics [123]\" attached, where each lyrics has a different 
          number attribute to distinguish them. These syllables should be 
          imported into three different stanzas and the timing should be 
          correct."
    }

\layout {
    \context { \Score
        autoBeaming = ##f
        }
    }
PartPOneVoiceOne =  \relative e'' {
    \clef "treble" \key c \major \time 4/4 <e c a>4 }

PartPOneVoiceOneLyricsOne =  \lyricmode { "Lyrics 1" }
PartPOneVoiceOneLyricsTwo =  \lyricmode { \skip4 }
PartPOneVoiceOneLyricsThree =  \lyricmode { \skip4 }

% The score definition
\new Staff <<
    \context Staff << 
        \context Voice = "PartPOneVoiceOne" { \PartPOneVoiceOne }
        \new Lyrics \lyricsto "PartPOneVoiceOne" \PartPOneVoiceOneLyricsOne
        \new Lyrics \lyricsto "PartPOneVoiceOne" \PartPOneVoiceOneLyricsTwo
        \new Lyrics \lyricsto "PartPOneVoiceOne" \PartPOneVoiceOneLyricsThree
        >>
    >>