Created
April 30, 2017 03:42
-
-
Save msikma/a00238a0a6155d080d8c8ca57870f360 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\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