File tree 2 files changed +17
-2
lines changed
2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,21 @@ noSignature = {
58
58
% ! after an ellipsis.
59
59
forceBarNumber = \once \override Score .BarNumber .break-visibility = # end-of-line-invisible
60
60
61
+ % ! Function: pDolce
62
+ % ! --- Prototype
63
+ % ! \pDolce
64
+ % ! ---
65
+ % ! Dynamic command for piano dolce.
66
+ % !
67
+ % ! Example:
68
+ % ! --- LilyPond
69
+ % ! c d e\pDolce f
70
+ % ! ---
71
+ pDolce = # (make-dynamic-script
72
+ (markup #:hspace 5
73
+ #:dynamic " p"
74
+ #:normal-text #:italic " dolce" ))
75
+
61
76
% ! Function: pizz
62
77
% ! --- Prototype
63
78
% ! \pizz
Original file line number Diff line number Diff line change @@ -129,15 +129,15 @@ opt-default-tagline = #(get-option 'defaultTagline #f)
129
129
# (define (format-mark-pdq mark context)
130
130
(markup
131
131
(#:box (#:pad-to-box '(-2 . 2 ) '(-2 . 2 ) (#:hcenter-in 4 (#:vcenter
132
- (#:bold (#:fontsize 3 (make-markalphabet-markup ( 1 - mark) )))))))))
132
+ (#:bold (#:fontsize 3 (make-markalphabet-markup mark)))))))))
133
133
134
134
% ! Function: format-mark-pdq-numeric
135
135
% ! Formats rehearsal marks with numbers instead of letters. The formatter puts every
136
136
% ! mark in a square box. The marks are printed quite large for better readability.
137
137
# (define (format-mark-pdq-numeric mark context)
138
138
(markup
139
139
(#:box (#:pad-to-box '(-2 . 2 ) '(-2 . 2 ) (#:hcenter-in 4 (#:vcenter
140
- (#:bold (#:fontsize 3 (number->string ( 1 - mark) )))))))))
140
+ (#:bold (#:fontsize 3 (number->string mark)))))))))
141
141
142
142
% !======================================================================================
143
143
% ! Section: PDQ Paper
You can’t perform that action at this time.
0 commit comments