lilypond-user
[Top][All Lists]
Advanced

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

Re: double bar number


From: bb
Subject: Re: double bar number
Date: Sat, 7 Apr 2018 17:00:56 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0

Thank you! That does the job! I tried something else but had no success. Now I know one first has to

    \remove "Bar_number_engraver"

in the \Score, than add the new one.

I rdeduced the lines, obviously the code is still working? Great! Thanks!

\version "2.18.2"

chordsone = \chordmode { c1:7  f1:7 c1:7 }
>   \relative c {
    \override Score.BarNumber.break-visibility = #all-visible
    \clef "bass_8"
    c,4 g' c, ges' | f c' f, des |c g' c, as' |
  }


harmonies = \chordmode { b2.:min fis2:min7 | }
\layout {
  \context {
    \Score
    \remove "Bar_number_engraver"
  }
  \context {
    \Staff
    \consists "Bar_number_engraver"
    \override BarNumber.break-visibility = #all-visible
  }
}

\score {
  <<
    \new ChordNames { \chordsone }
    \new Staff { \one }
  >>
}



Am 07.04.2018 um 15:25 schrieb Andrew Bernard:
That prints the numbers high - I think the OP wants to avoid that.

Have a look at this from the list, a possible answer.

https://lists.gnu.org/archive/html/lilypond-user/2017-06/msg00382.html

Andrew



On 7 April 2018 at 23:22, Knute Snortum <address@hidden> wrote:
Try this:

\version "2.19.80"
chordsone = \chordmode { c1:7  f1:7 c1:7 }
>
  \relative c {
    \override Score.BarNumber.break-visibility = #all-visible
    \clef "bass_8"
    c,4 g' c, ges' | f c' f, des |c g' c, as' |
  }

\score  {
  <<
    \new ChordNames { \chordsone }
    \new Staff
    \one
  >>
}



_______________________________________________
lilypond-user mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/lilypond-user


reply via email to

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