Delta Between Two Patch Sets: input/regression/markup-note-dot.ly
Issue 328050043 :
Change \note markup command to get a duration
Left Patch Set: Actual issue 5156 patch
Right Patch Set: Run scripts/auxiliar/update-with-convert-ly.sh
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
Documentation/de/notation/text.itely
Documentation/es/notation/text.itely
Documentation/fr/notation/text.itely
Documentation/it/notation/text.itely
Documentation/ja/notation/text.itely
Documentation/notation/text.itely
Documentation/snippets/creating-metronome-marks-in-markup-mode.ly
Documentation/snippets/new/three-sided-box.ly
Documentation/snippets/non-default-tuplet-numbers.ly
Documentation/snippets/three-sided-box.ly
input/regression/markup-note.ly
input/regression/markup-note-dot.ly
input/regression/markup-note-grob-style.ly
input/regression/tuplet-number-kneed-beam-horizontal-fit.ly
input/regression/tuplet-text-different-numbers.ly
input/regression/tuplet-text-fraction-with-notes.ly
input/regression/tuplet-text-note-appended.ly
lily/parser.yy
python/convertrules.py
python/musicexp.py
scm/define-markup-commands.scm
LEFT RIGHT
(no file at all) 1 \version "2.19. 21 " 1 \version "2.19. 65 "
2 \header { 2 \header {
3 3
4 texidoc = " A dotted whole note displayed via the @code{\\note} 4 texidoc = " A dotted whole note displayed via the @code{\\note}
5 command must separate the note head and the dot. The dot avoids the upflag." 5 command must separate the note head and the dot. The dot avoids the upflag."
6 6
7 } 7 }
8 8
9 \relative { 9 \relative {
10 c'4^\markup { \note #" 1. " #1 } 10 c'4^\markup { \note { 1. } #1 }
11 c4^\markup { \note #" 2. " #1 } 11 c4^\markup { \note { 2. } #1 }
12 c4^\markup { \note #" 8. " #1 } 12 c4^\markup { \note { 8. } #1 }
13 } 13 }
LEFT RIGHT