[EMAIL PROTECTED] writes:
> Does lilypond have some form of conditionals (at the source level)?

In lily 1.7 , identifiers and Scheme are thoroughly integrated, so you
could use

#(define with-tablature #t)

bottomLine = \context Staff {  .. }
tablature = \context TabStaff  { .. }

\score {
  #(ly:export (if with-tablature
                  (sequential-music (list bottomLine tablature))
                  bottomLine))                             
                  
}

-- 

Han-Wen Nienhuys   |   [EMAIL PROTECTED]   |   http://www.cs.uu.nl/~hanwen 


_______________________________________________
Bug-lilypond mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to