lilypond-user
[Top][All Lists]
Advanced

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

Re: Lilypond meter bug?


From: Klaus Blum
Subject: Re: Lilypond meter bug?
Date: Thu, 3 Nov 2016 03:34:52 -0700 (MST)

Hi mclaren, 

your second issue is easy to solve: 
- Don't put the /\paper/ block into a /\layout/ block.
- The /indent/ statement must be inside the /\paper/ block.
- /set-default-paper-size/ must be before that block.

I you don't want the time signatures outside the staves, it's much easier to
completely get rid of the TimeLine stuff: 

%
--------------------------------------------------------------------------------------
\version "2.18.2"

\header {
  tagline = ""  % removed
}

\layout {
  \context {
    \Score
    \remove "Default_bar_line_engraver"
    \override TupletNumber.text = #tuplet-number::calc-fraction-text
  }
  \context {
    \Staff
    \consists "Default_bar_line_engraver"
  }
}

{
  <<
    \new Staff {
      \clef "treble"
      \relative c''
      {
        \set Staff.timeSignatureFraction = 5/8
        \scaleDurations 8/5 { c8 d f e b c d16 f e8  b c d16 f e8 b c16 d f8  
}
      }
    }
    \new Staff {
      \clef "treble"
      \relative c''
      {
        \set Staff.timeSignatureFraction = 9/8
        \scaleDurations 8/9 { c8 d f e b c d16 f e8  b c[ d16 f e8 b c16 d
f8 e b c] d f e b16 c d8 f e b16 c  d8  }
      }
    }
    \new Staff {
      \clef "treble"
      \relative c''
      {
        \set Staff.timeSignatureFraction = 11/8
        \scaleDurations 8/11 { e8 b c d16 f e8 b c d16 f e8 b c16 d f8 e b c
d f e b16 c d8 f e b16 c d8 f e16 b c8 d f e b c d   }
      }
    }
    \new Staff {
      \clef "treble"
      \relative c''
      {
        \set Staff.timeSignatureFraction = 13/8
        \scaleDurations 8/13 { e8 b c d16 f a,8 b8 e8 b c d16 f e8 b c16 d
f8 e b c d f e b16 c d8 f e b16 c d8 f, e16 b' c8 d f e b c d b g e c  }
      }
    }
  >>
}

#(set-default-paper-size "a4" 'landscape)
\paper  {
  indent=0
}
%
--------------------------------------------------------------------------------------

Cheers, 
Klaus



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Lilypond-meter-bug-tp196031p196038.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

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