lilypond-user
[Top][All Lists]
Advanced

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

Re: MIDI repetition


From: Erik Sandberg
Subject: Re: MIDI repetition
Date: Thu, 15 Jan 2004 23:11:03 +0100
User-agent: KMail/1.5.4

On Thursday 15 January 2004 20.55, Alberto Manuel Brandão Simões wrote:
> In the other hand, to unfold them makes the paper output to be unfolded
> too :(
>

There is a dirty trick:
1. Put your notes in their own file (say notes.ly, which puts all the notes of 
your score into the variable YourNotes).
2. Instead of repeat "unfold" 2, use a variable for "unfold" in this file. 
Like
repeat \foo 2
3. In the file with your \score definitions, do two separate score blocks for 
paper & midi, including the notes.ly twice with different definitions of foo:

foo = "times"
\include "notes.ly"
\score {
\YourNotes
\paper {..}
}
foo = "unfold"
\include "notes.ly"
\score {
\YourNotes
\midi {tempo 4=100}
}

Hope it works,
Erik





reply via email to

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