I am using a custom markup command that allows inserting scores into markups.
It works great except when one score uses high notes the scores are not
aligned.

<http://lilypond.1069038.n5.nabble.com/file/n179568/shouldBeAligned.png> 

%=============================================
% WRITE SCORE
%
%=============================================
#(define-markup-command (writeScore layout props music) (ly:music?)
   (let ((score (ly:make-score music))
         (score-layout (ly:output-def-clone $defaultlayout)))
     ;; possibly, change some settings in the \layout block
     %(ly:output-def-set-variable! score-layout 'indent 0)
     ;; add the \layout block to the score
     (ly:score-add-output-def! score score-layout)
     (interpret-markup layout props (markup #:vcenter #:score score) )
     ))



\markup {
  "this should be aligned" \writeScore ##{  c' d' e' #} 
         "with this " \writeScore ##{  c'''' d'''' e'''' #} 
}





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Align-scores-in-markup-tp179568.html
Sent from the User mailing list archive at Nabble.com.

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to