Re: Tabstaff and rests not showing

William Rehwinkel via LilyPond user discussion <[email protected]> Wed, 15 Jul 2026 00:40:54 -0400
Newsgroups gmane.comp.gnu.lilypond.general
Message-ID <[email protected]>
Dear Walt,

Try including this \layout block:

\version "2.26.0"

music = \fixed c' {
   c4 d e f | R1 | c4 r e f |
}

\new Staff \music
\new TabStaff \music

\layout {
   \context {
     \TabStaff
     \revert Rest.stencil
     \revert MultiMeasureRest.stencil
   }
}

I looked at 
https://lilypond.org/doc/latest/Documentation/internals/tabstaff which 
shows the things that get changed.

Does this work?
-William


On 7/15/26 12:31 AM, Walt North wrote:
> version "2.26.0"
> 
> music = \fixed c' {
>    c4 d e f | R1 | c4 r e f |
> }
> 
> \new Staff \music
> \new TabStaff \music
>