lilypond-user
[Top][All Lists]
Advanced

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

RE: Getting rid of extra space at the break of the line [time signature


From: Andrew Bernard
Subject: RE: Getting rid of extra space at the break of the line [time signature change]?
Date: Tue, 22 Nov 2016 22:14:48 +1100

Hi Krzystof,

 

Is this what you require (based on the MWE you sent me personally)?

 

If so, it’s a matter of putting things in the right logical structural place.

 

Andrew

 

 

 

== snip

\version "2.19.50"

\language "deutsch"

 

 

global = {

  \key b \major

  \numericTimeSignature

  \time 3/4

}

 

trumpetBb = \relative c'' {

  \transposition b

  c4\f\<~ c8 g16 g c8 g |

  c4\ff\<~ c8 g16 g c8 g | \break

  c2.*2/20 \fff

}

 

up = \relative c'' {

  \global

  s1*3/4*2

  \time 3/4

  des,32

}

 

trumpetBbPart = \new Staff \with {

  instrumentName = "Trumpet in Bb"

  midiInstrument = "trumpet"

  \magnifyStaff #3/4

}

\trumpetBb

 

pianoPart = \new PianoStaff \with {

  instrumentName = "Piano"

} <<

  \new Staff = "up" { \up }

>> 

 

\score {

  <<

    \trumpetBbPart

    \pianoPart

  >>

  \layout {

    \context {

      \Staff

      \RemoveEmptyStaves

      \override TimeSignature.break-visibility = ##(#f #f #t)

    }

 

    \context {

      \Score

 

      \override VerticalAxisGroup.remove-first = ##t

 

    }

  }

  \midi { }

}

== snip

 

 


reply via email to

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