Re: optional transposition triggered by an external file?

2013-07-30 Thread Marc Hohl
Am 30.07.2013 02:30, schrieb David Rogers: Marc Hohl m...@hohlart.de writes: [...] I need a way to define an optional variable that controls (if defined) the transposition so I can say, for example: \begin{appendix} \chapter{For Bb instruments} \begin{lilypond} #(define transposeTo d)

Re: optional transposition triggered by an external file?

2013-07-30 Thread David Kastrup
Marc Hohl m...@hohlart.de writes: \begin{appendix} \chapter{For Bb instruments} \begin{lilypond} #(define transposeTo d) \include{A.ly} \end{lilypond} Rather \include A.ly That's exactly what I want to avoid. My idea boils down to allow for something like transposeTo = transposeTo OR

Re: optional transposition triggered by an external file?

2013-07-30 Thread Marc Hohl
Am 30.07.2013 09:56, schrieb David Kastrup: Marc Hohl m...@hohlart.de writes: \begin{appendix} \chapter{For Bb instruments} \begin{lilypond} #(define transposeTo d) \include{A.ly} \end{lilypond} Rather \include A.ly Of course, silly me. That's exactly what I want to avoid. My idea boils

Re: optional transposition triggered by an external file?

2013-07-30 Thread Wim van Dommelen
On 30 Jul 2013, at 08:46 , Marc Hohl wrote: transposeTo = transposeTo OR c In the past I've used a very simple construct: notes = { ... } music = { \tag Bassoon \notes \tag BCl \transpose bes, c' { \notes } } instrument = Bassoon % could be Bassoon or BCl (bassclarinet) in

Re: optional transposition triggered by an external file?

2013-07-30 Thread Marc Hohl
Am 30.07.2013 16:30, schrieb Wim van Dommelen: On 30 Jul 2013, at 08:46 , Marc Hohl wrote: transposeTo = transposeTo OR c In the past I've used a very simple construct: notes = { ... } music = { \tag Bassoon \notes \tag BCl \transpose bes, c' { \notes } } instrument = Bassoon

optional transposition triggered by an external file?

2013-07-29 Thread Marc Hohl
Hello list, for my current project I have some scores located in individual files: A.ly B.ly C.ly which can be compiled independently, and a latex file containing calls like this \lilypondfile{A.ly} [... some text ...] \lilypondfile{B.ly} [... even more text ...] \lilypondfile{C.ly} This

Re: optional transposition triggered by an external file?

2013-07-29 Thread David Rogers
Marc Hohl m...@hohlart.de writes: Hello list, for my current project I have some scores located in individual files: A.ly B.ly C.ly which can be compiled independently, and a latex file containing calls like this \lilypondfile{A.ly} [... some text ...] \lilypondfile{B.ly} [...