Skip to content

Commit 31f6f08

Browse files
committed
feat: Add pizz and arco commands
1 parent 55adf61 commit 31f6f08

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

elements.ily

+24
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,30 @@ noSignature = {
5858
%! after an ellipsis.
5959
forceBarNumber = \once \override Score.BarNumber.break-visibility = #end-of-line-invisible
6060

61+
%! Function: pizz
62+
%! --- Prototype
63+
%! \pizz
64+
%! ---
65+
%! Markup command that prints a pizzicato mark at the current note.
66+
%!
67+
%! Example:
68+
%! --- LilyPond
69+
%! c d e^\pizz f
70+
%! ---
71+
pizz = \markup { \upright "pizz." }
72+
73+
%! Function: arco
74+
%! --- Prototype
75+
%! \pizz
76+
%! ---
77+
%! Markup command that prints an arco mark at the current note.
78+
%!
79+
%! Example:
80+
%! --- LilyPond
81+
%! c d e^\arco f
82+
%! ---
83+
arco = \markup { \upright "arco" }
84+
6185
%! Function: staccsOn
6286
%! --- Prototype
6387
%! \staccsOn number

pdq.ily

+1
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,7 @@ opt-default-tagline = #(get-option 'defaultTagline #f)
461461
\override DynamicTextSpanner.font-size = #0
462462
\override DynamicTextSpanner.style = #'none
463463
\override DynamicLineSpanner.staff-padding = #1.5
464+
\override TextScript.padding = #1
464465
\override TextScript.font-shape = #'italic
465466
}
466467
}

0 commit comments

Comments
 (0)