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: Ivanov Dmitry
Subject: Re: How to hide fingering in the output
Date: Sun, 25 Jun 2017 18:54:38 +0300

> move it to a layout block:
>
> \layout {  \omit Fingering }

Great. Would it be better to move:

\once \override Staff.TimeSignature #'stencil = ##f
\override Staff.Clef #'stencil = ##f

to the layout block as well? Or keep it as is?

On 6/25/17, Richard Shann <address@hidden> wrote:
> 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]