From: lilypond-user <[email protected]>
on behalf of Carl Sorensen <[email protected]>
Date: Thursday, April 22, 2021 at 4:24 PM
To: Gianmaria Lari <[email protected]>, Valentin Petzel
<[email protected]>, Aaron Hill <[email protected]>
Cc: lilypond-user <[email protected]>
Subject: Re: combining chords in chords
If the only purpose for using tags is to generate different octaves in the midi
and the display, it would be much easier to just change the octavation of the
clef.
{
\override Staff.ClefModifier.transparent = ##t
\clef "treble_8" c1
}
This displays c as c’ in the score, and plays it as c in the midi.
It’s probably better to set the stencil to ##f:
{
\override Staff.ClefModifier.stencil = ##f
\clef "treble_8" c1
}