lilypond-user
[Top][All Lists]
Advanced

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

Re: Lyric word spanning two notes


From: Stephen Torri
Subject: Re: Lyric word spanning two notes
Date: Tue, 13 Dec 2005 14:55:23 -0600

I am using lilypond 2.6.5. Here is my whole file:

\version "2.6.5"

global= {
        \time 2/2
}

%---------------------------
%   First guitar (regular)
%--------------------------
firstGuitar = \context Staff {
        \set Staff.instrument = "Guitar 1 "
        \context Voice = "GuitarOne" {
                \relative c
                {
                        \global
                        \key a \minor
                        % Am (measure 1)
                        d'4^"Am" a' f' d |

                        % Am F (measure 2)
                        a2
                        <f a c f>2\arpeggio^"F" |

                        % C (measure 3)
                        f4^"C" a f' c |

                        % Am (measure 4)
                        d,4^"Am" a' f' d |

                }
        }
}

%---------------------------
%   Lyrics
%---------------------------
words = \lyricmode { Let4 all mor -- tal | flesh2 keep | si2 -- lence, |
and4 with fear and }

%---------------------------
%   Second guitar (tablature)
%---------------------------
secondGuitar = \context Staff = "GuitarTwo" {
        \set Staff.instrument = "Guitar 2 "
        \context Voice = "GuitarTwo" {
                \relative c
                {
                        \global
                        \key a \minor
                        % Am (measure 1)
                        d'4 a' a' f |

                        % Am F (measure 2)
                        d2
                        <f, a c f>2\arpeggio |

                        % C (measure 3)
                        f4 a a' f |

                        % Am (measure 4)
                        d,4 a' a' f |


                }
        }
}

%---------------------------
%   Score
%---------------------------
\score {
    << \firstGuitar
    \lyricsto "GuitarOne" \new Lyrics \words
    \secondGuitar>>
    \layout {}
}

Stephen

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

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