Am 14.08.2015 um 14:58 schrieb MarcM:
the custom function helps for readability and reuse of score snippets.
\markup {
"this" \score { { c' d' e' } \layout { indent=0 } }
"should be aligned with this " \score { { c'''' d'''' e'''' }
\layout { indent=0 } }
}
%% This is more concise and readable
even more concise and without a headache:
musicA = { c' d' e' }
musicB = { c'''' d'''' e'''' }
\markup { "this" \writeMusic ##{ \musicA #}
\writeMusic \musicA
% or
\writeMusic #musicA
No need to switch back and forth between Scheme and LilyPond mode.
Yours, Simon
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user