lilypond-user
[Top][All Lists]
Advanced

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

Re: Positioning of a tiny voice


From: David Kastrup
Subject: Re: Positioning of a tiny voice
Date: Sat, 08 Feb 2020 00:15:29 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

Noeck <address@hidden> writes:

> Hi,
>
> I would like to add small notes into an already populated staff.
> It is the right hand of a piano staff and I don’t want real voices with
> their shifts. The tiny font size distinguishes the "upper" voice
> already. It should have the least impact possible on the "music" voice.
>
> Here is one example measure:
>
>
> \version "2.19.84"
>
> upper = \relative {
>   \tiny
>   \stemUp
>   s4 b''
> }
>
> music = \relative {
>   \key e \minor
>   \time 2/4
>   b'8 <b, e g>16 c' <b, e g b>8 <b e g>16 b'
> }
>
> \new Staff << \upper \music >>
>
>
> How to move the b'' exactly on top of the chord below?
> What to do about this warning?
>
> warning: this Voice needs a \voiceXx or \shiftXx setting
>   b'8 <b, e g>16 c' <
>                      b, e g b>8 <b e g>16 b'

You could try

\version "2.19.84"

upper = \relative {
  \tiny
  \stemUp
  s4 b''
}

music = \relative {
  \key e \minor
  \time 2/4
  b'8 <b, e g>16 c' <b, e g b>8 <b e g>16 b'
}

\new Staff << \new Voice \with { \override NoteColumn.ignore-collision = ##t } 
\upper
              \new Voice \music >>

-- 
David Kastrup

reply via email to

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