Skip to content

Commit

Permalink
feat: Add pizz and arco commands
Browse files Browse the repository at this point in the history
  • Loading branch information
codello committed Mar 17, 2024
1 parent 55adf61 commit 31f6f08
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions elements.ily
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,30 @@ noSignature = {
%! after an ellipsis.
forceBarNumber = \once \override Score.BarNumber.break-visibility = #end-of-line-invisible

%! Function: pizz
%! --- Prototype
%! \pizz
%! ---
%! Markup command that prints a pizzicato mark at the current note.
%!
%! Example:
%! --- LilyPond
%! c d e^\pizz f
%! ---
pizz = \markup { \upright "pizz." }

%! Function: arco
%! --- Prototype
%! \pizz
%! ---
%! Markup command that prints an arco mark at the current note.
%!
%! Example:
%! --- LilyPond
%! c d e^\arco f
%! ---
arco = \markup { \upright "arco" }

%! Function: staccsOn
%! --- Prototype
%! \staccsOn number
Expand Down
1 change: 1 addition & 0 deletions pdq.ily
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,7 @@ opt-default-tagline = #(get-option 'defaultTagline #f)
\override DynamicTextSpanner.font-size = #0
\override DynamicTextSpanner.style = #'none
\override DynamicLineSpanner.staff-padding = #1.5
\override TextScript.padding = #1
\override TextScript.font-shape = #'italic
}
}
Expand Down

0 comments on commit 31f6f08

Please sign in to comment.