Re: Tie not appearing

2020-09-12 Thread Claire Meyer
Thank you very much, Aaron ! It works.

Cheers,
Claire

On Sat, Sep 12, 2020 at 12:35 AM Aaron Hill 
wrote:

> On 2020-09-11 3:25 pm, Claire Meyer wrote:
> > Hi,
> >
> > I've got a problem with a tie not appearing. My problematic bar is as
> > follows :
> >
> > upperHighB = \relative c'' {
> > d8   bes |
> > }
>
> Try forcing the Tie downwards:
>
> ...   ...
>
>
> -- Aaron Hill
>
>


Re: Tie not appearing

2020-09-11 Thread Aaron Hill

On 2020-09-11 3:25 pm, Claire Meyer wrote:

Hi,

I've got a problem with a tie not appearing. My problematic bar is as
follows :

upperHighB = \relative c'' {
d8   bes |
}


Try forcing the Tie downwards:

...   ...


-- Aaron Hill



Tie not appearing

2020-09-11 Thread Claire Meyer
Hi,

I've got a problem with a tie not appearing. My problematic bar is as
follows :

%%
%% VERSION
%%

\version "2.20.0"


%%
%% THEME B
%%

upperHighB = \relative c'' {
d8   bes |
}

upperLowB = \relative c' {
f2 |
}


%
%% STAVES
%

global = {
\time 2/4
\key c \minor
}

upper = {
\global
\clef "treble"

<<
\new Voice { \voiceOne \upperHighB }
\new Voice { \voiceTwo \upperLowB }
>>
}



%% SCORE


\score {
\new Staff = "piano upper" \upper
}

The two aes should be tied together, but the tie doesn't appear :(

What am I doing wrong ?

Many thanks in advance,
Claire