lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: shift accidental


From: Jean Abou Samra
Subject: Re: shift accidental
Date: Thu, 11 Aug 2022 16:51:13 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.12.0



Le 11/08/2022 à 16:47, Orm Finnendahl a écrit :
Hi,

  below is a snippet and attached a pdf which shows the f sharp
accidental in the lower voice on the downbeat of bar 2 too far away
from the notehead. The distance seems to be related to the tied note
in the upper voice. Although the accidental is not repeated there, it
is taken into account for the placement of the accidental in the lower
voice. How can I fix it? I'm sure this has come up before but I
couldn't find anything in the LSR and google couldn't help with my
search terms either.

--
Orm

8<-------------------------------------------------------------------
\version "2.23.11"

<< {
   cis''1 ~ cis''2
} \\ {
   s2 a'4 g'4 fis'2
} >>
8<-------------------------------------------------------------------


See https://lists.gnu.org/archive/html/lilypond-user/2021-04/msg00188.html

You need to do

\version "2.23.11"

<< {
  cis''1 ~ \single \omit Accidental cis''2
} \\ {
  s2 a'4 g'4 fis'2
} >>


or the equivalent

\version "2.23.11"

<< {
  cis''1 ~ \tweak Accidental.stencil ##f cis''2
} \\ {
  s2 a'4 g'4 fis'2
} >>


Best,
Jean





reply via email to

[Prev in Thread] Current Thread [Next in Thread]