lilypond-user
[Top][All Lists]
Advanced

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

multi-part piece: output for separate parts


From: benoit farley
Subject: multi-part piece: output for separate parts
Date: Tue, 03 May 2005 19:10:19 -0500

Hello,
 
I have a piece of music for 4 harps, and I would like to know how to produce outputs
for each separate part: one output set of files (pdf, ps, etc.) for Harp 1,
another set for Harp2, etc.  I could do it by commenting out all but one
part, but each time, I had to make sure to rename the output files, otherwise
I would loose them at the next turn. (I'm using jEdit)
 
Is there a better way to do this?  On the command line, maybe?
 
Thanks,
 
Benoit Farley
 
\score {
 \context StaffGroup
 <<
  \override Score.BarNumber #'break-visibility = #end-of-line-invisible
 \set Score.barNumberVisibility = #(every-nth-bar-number-visible 5)
 \override Score.BarNumber  #'print-function =
 #(make-stencil-boxer 0.1 0.25 0.25 Text_interface::print)
 \override Score.BarNumber #'font-size = #2
 \time 4/4
 
   \new PianoStaff <<
    \set PianoStaff.instrument = "Harp I    "
    \set PianoStaff.instr = "I    "
    \context Staff = uppera \uppera
    \context Staff = lowera \lowera 
    >>
 
    \new PianoStaff <<
     \set PianoStaff.instrument = "Harp II    "
     \set PianoStaff.instr = "II    "
     \context Staff = upperb \upperb
     \context Staff = lowerb \lowerb 
     >>
 
   \new Staff <<
     \set Staff.instrument = "Harp III"
     \set Staff.instr = "III"
     \context Staff \lowerc
     >>
 
   \new Staff <<
    \set Staff.instrument = "Harp IV"
     \set Staff.instr = "IV"
     \context Staff \lowerd
     >>
    
  >>

  \layout {
    linewidth = 455.244096\pt
    interscoreline = 0.8\cm
 }
  \midi {
   \tempo 4=108
  }
  }

reply via email to

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