lilypond-user
[Top][All Lists]
Advanced

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

Re: Removing a MIDI track


From: José Luis Cruz
Subject: Re: Removing a MIDI track
Date: Wed, 12 Nov 2003 19:04:05 +0100

A 11/11/03 18:07:07
address@hidden (Jeffery B. Rancier) escribió:

> José Luis Cruz <address@hidden> writes:
> 
> > There's a simpler -and better- way to do this.
> >
> > Just have 2 score blocks, one with paper output and the other with
> > only midi output. Don't include the chord track in the score with
> > midi output. And that's all.
> 
> I don't know much about lilypond yet, but I'd hate to try and
> maintain two sources of a very large piece.  That seems like alot of
> maintenence if changes need to be made, plus the accompanying
> resources.


nonono, i didn't mean to have 2 sources. I think that didn't expressed
well...

You must have two score blocks in the SAME source. You don't need to
have separate sources. And you don't need to write the music more than
once. I'll give you an example. This is all a single source,
(example.ly):

----------BEGINING OF EXAMPLE.LY--------------------------
\header{}
\paper{}

melodyOne = \notes\relative c''{ a4 b c d g f2}
melodyTwo = \notes{c,2 e, d,1}
harmony = \chords{a2:min c e4 f2}


\score{
        <<
                \context ChordNames \harmony
                \context Staff \melodyOne
                \context Staff \melodyTwo
        >>
        \paper{}

}

\score{
        <<
                \context Staff \melodyOne
                \context Staff \melodyTwo
        >>
        \midi{}
}
-------------------END OF EXAMPLE.LY---------------------




reply via email to

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