X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fdead-notes.ly;h=9096803201868622d3544d982f7f10c9857376b0;hb=f75eceb27a4b630d4e898b1d93e3b051f969ff5e;hp=6abd1449118264bc18f3fb44510014d307373112;hpb=2055f35c47a045a50a01ff4dba8524322cfc3b48;p=lilypond.git diff --git a/input/regression/dead-notes.ly b/input/regression/dead-notes.ly index 6abd144911..9096803201 100644 --- a/input/regression/dead-notes.ly +++ b/input/regression/dead-notes.ly @@ -1,7 +1,8 @@ -\version "2.14.0" +\version "2.19.46" \header{ texidoc = "Muted notes (also called dead notes) are supported - within normal staves and tablature." + within normal staves and tablature. They are printed + correctly, even if another font for TabNoteHead is used. " } mynotes = \relative c,, { @@ -15,25 +16,49 @@ mynotes = \relative c,, { \bar "|." } -\context StaffGroup << - \context Staff { - \context Voice { % Warning: explicit voice instantiation is required - % to have deadNotesOff work properly - % when deadNotesOn comes at the beginning - % of the piece - \clef "bass_8" - \mynotes +\score { + \new StaffGroup << + \new Staff { + \new Voice { % Warning: explicit voice instantiation is required + % to have deadNotesOff work properly + % when deadNotesOn comes at the beginning + % of the piece + \clef "bass_8" + \mynotes + } } - } - \context TabStaff { - \context TabVoice { % Warning: explicit voice instantiation is - % required to have deadNotesOff work properly - % when deadNotesOn comes at the beginning - % of the piece - \set TabStaff.stringTunings = #bass-tuning - \mynotes + \new TabStaff + \with { + instrumentName = \markup \tiny "default-font" + }{ + \new TabVoice { % Warning: explicit voice instantiation is + % required to have deadNotesOff work properly + % when deadNotesOn comes at the beginning + % of the piece + \mynotes + } + } + \new TabStaff + \with { + \override TabNoteHead.font-name = #"Luxi Mono" + instrumentName = + \markup \tiny \center-column { "TabNoteHead-" "font:" "Luxi Mono" } + }{ + \new TabVoice { % Warning: explicit voice instantiation is + % required to have deadNotesOff work properly + % when deadNotesOn comes at the beginning + % of the piece + \mynotes + } + } + >> + \layout { + indent = 20 + \context { + \TabStaff + stringTunings = #bass-tuning } } ->> +}