lilypond-user
[Top][All Lists]
Advanced

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

Réf. : Re: changing time signature


From: Jean-marc LEGRAND
Subject: Réf. : Re: changing time signature
Date: Tue, 7 Sep 2004 08:33:30 +0200




You're right (as usual !). The issue is actually :

\version "2.0.1"
\score      {
      \notes {
            \time 2/2
            {
a'1
a1
a\breve*1/2
\time 3/4
a2.
a2.
\bar "|."
            }
            }
\paper {}
\header {}
}

without any \property Score.timing = ##f

Thanks a lot !


                                                                                
                                                      
                      Mats Bengtsson                                            
                                                      
                      <mats.bengtsson@         Pour :   Jean-marc LEGRAND 
<address@hidden>                               
                      s3.kth.se>               cc :     address@hidden          
                                               
                                               Objet :  Re: changing time 
signature                                                   
                      06/09/2004 18:01                                          
                                                      
                                                                                
                                                      
                                                                                
                                                      






Jean-marc LEGRAND wrote:
>
>
>
> Hi list, ands thanks again for your support !
>
> My new problem is with time signature changes. Here's my .ly, with lily2.0.1 
> on XP :
>
> \version "2.0.1"
> \score      {
>       \notes {
>             \time 2/2
>             {
> a'1
> a1
> \once \property Score.timing = ##f
> a\breve
> \bar "||"
> \time 3/4
> a2.
> a2.
> \bar "|."
>             }
>             }
> \paper {}
> \header {}
> }
>
> The pb is that after the \breve and \bar "||", it seems that "automatic 
> barnlining" is off. I have
> next 2 dotted half notes without barline between.

I'm not sure exactly how \once works in this context. I would
rather try to set and then reset the property explicitly:

\property Score.timing = ##f
a\breve
\bar "||"
\property Score.timing = ##t
\time 3/4

Another possibility is to fool LilyPond into thinking that the
a\breve only lasts for a bar by saying a\breve*1/2 The printout
will still be correct.

    /Mats







reply via email to

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