On 10/21/2017 1:11 PM, Pieter Terpstra wrote:
Dear lilypond users,
How would you recommend to fix this?

Most kindly,

    Peter

Have an example here:
\version "2.18.2"

\relative c'' {
\key gis \minor
\time 2/4
<<  {
    % Voice "1"
    \teeny
    g16 ais b cis d e fis gis | eis, fis gis a eis!4
    } \\ {
   % Voice "2"
   g4 d' | eis,4 eis!
    } >>
}

Hello,

Which accidentals did you want to show, the larger one?
You could just do a few overrides I think, like this:
(see attached)

Is this what you meant?


\version "2.18.2"

\relative c'' {
\key gis \minor
\time 2/4
<<  {
   % Voice "1"
   \teeny
   \once \override Accidental #'stencil = ##f
   g16 ais b
   cis \once \override Accidental #'stencil = ##f
   d e fis gis
   \once \override Accidental #'stencil = ##f
   | eis, fis gis a \once \override Accidental #'stencil = ##f
   eis!4
   } \\ {
  % Voice "2"
  g4 d' | eis,4 eis!
   } >>
}


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to