lilypond-user
[Top][All Lists]
Advanced

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

Re: How to hide fingering in the output


From: Richard Shann
Subject: Re: How to hide fingering in the output
Date: Sun, 25 Jun 2017 15:59:44 +0100

On Sun, 2017-06-25 at 17:34 +0300, Ivanov Dmitry wrote:
> I have a problem with several voices:
> 
> \version "2.18.2"
> \language "english"
> \paper {
>   indent = 0
> }
> \new Staff  \relative f''{
>   \time 2/4
>   \once \override Staff.TimeSignature #'stencil = ##f
>   \override Staff.Clef #'stencil = ##f
>   \omit Fingering
>   \relative g'' {  <<
>       \new Voice \relative c''{
>         \voiceOne
>         c2_2_[]
>       }
>       \new Voice \relative g''{
>         \voiceTwo
>         \override Fingering.direction = #UP
>         g8-4^[ e-3~ e e]
>       }
>   >> }
> }
> 
> This produces fingering. How can I remove it?

move it to a layout block:

\version "2.18.2"
\language "english"
\paper {
  indent = 0
}
\layout {  \omit Fingering }
\new Staff  \relative f''{
  \time 2/4
  \once \override Staff.TimeSignature #'stencil = ##f
  \override Staff.Clef #'stencil = ##f
 
  \relative g'' {  <<
      \new Voice \relative c''{
        \voiceOne
        c2_2_[]
      }
      \new Voice \relative g''{
        \voiceTwo
        \override Fingering.direction = #UP
        g8-4^[ e-3~ e e]
      }
  >> }
}

Richard





reply via email to

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