Skip to content

Instantly share code, notes, and snippets.

@msikma
Created April 30, 2017 03:42
Show Gist options
  • Save msikma/a00238a0a6155d080d8c8ca57870f360 to your computer and use it in GitHub Desktop.
Save msikma/a00238a0a6155d080d8c8ca57870f360 to your computer and use it in GitHub Desktop.
\version "2.19.42"
% \semprePp
%
% Prints "sempre" followed by a \pp.
semprePp =
\tweak DynamicText.self-alignment-X #LEFT
\tweak DynamicText.X-extent #'(0 . 0)
\tweak DynamicText.X-offset #0
#(make-dynamic-script
(markup #:normal-text (#:italic "sempre")
#:dynamic "pp"))
% \sempreLegato
%
% Prints "sempre legato".
sempreLegato =
\tweak DynamicText.self-alignment-X #LEFT
\tweak DynamicText.X-extent #'(0 . 0)
\tweak DynamicText.X-offset #0
#(make-dynamic-script
(markup #:normal-text (#:italic "sempre legato")))
% \manoSinistra
%
% Prints "mano sinistra" (use left hand).
manoSinistra =
\tweak DynamicText.self-alignment-X #LEFT
\tweak DynamicText.X-extent #'(0 . 0)
\tweak DynamicText.X-offset #0
#(make-dynamic-script
(markup #:normal-text (#:italic "mano sinistra")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment