I’m trying to display a piece of music with a title and composer, and it doesn’t show up with the final pdf. The music is displaying correctly, and editing the time signature works fine, but I can’t seem to get the title and composer to show up.
This is the final output:
Here is my code:
s.start_transcribing()
s.fork(FlutePart)
s.fork(TrumpetPart)
s.wait_for_children_to_finish()
performance = s.stop_transcribing()
performance.to_score(title="title", composer="composer").show()
Thanks!