Here's a little snippet which does what I want. If there's a standard
way to do this let me know.
-Jay
\version "2.11.49"
#(define (adjust-note mus key currkey)
(cond ((eq? (ly:music-property mus 'name) 'NoteEvent)
(ly:music-transpose mus (car currkey)))
((and
If I have a section like:
\relative c'
{
\time 4/4
\transposition f
c e g c |
\transposition ees
c, e g c |
\transposition d
c, e g c |
}
Is there an easy way to change it all to the same key for printing?
Something like '\normalizeTransposition f \music' would be equivalent to:
\