Re: double bar number

2018-04-07 Thread bb
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 }
one =
  \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  > wrote:
>
> Try this:
>
> \version "2.19.80"
> chordsone = \chordmode { c1:7  f1:7 c1:7 }
> one = 
>   \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
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: double bar number

2018-04-07 Thread bb
Thak you! But this is not the solution. I want the bar numbers just
above the note lines, separated from the chord names. Jazz players
complain the bar numbers neighboring the chord names as in Jazz
harmonies there sometimes are strange names of complicated chords.

Regards


Am 07.04.2018 um 15:22 schrieb Knute Snortum:
>
> \version "2.19.80"
> chordsone = \chordmode { c1:7  f1:7 c1:7 }
> one = 
>   \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
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: double bar number

2018-04-07 Thread 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  wrote:

> Try this:
>
> \version "2.19.80"
> chordsone = \chordmode { c1:7  f1:7 c1:7 }
> one =
>   \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
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: double bar number

2018-04-07 Thread Knute Snortum
Try this:

\version "2.19.80"
chordsone = \chordmode { c1:7  f1:7 c1:7 }
one =
  \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
  >>
}



---
Knute Snortum
(via Gmail)

On Sat, Apr 7, 2018 at 4:25 AM, bb  wrote:

> I want bar numbers for every bar and a low bar number position to avoid
> interference with the chord names. My first attempt shows two bar
> numbers one over the other. I do not want the second, the upper bar
> number. I cannot find a solution. Thanks for help.
>
> \version "2.19.80"
> chordsone = \chordmode { c1:7  f1:7 c1:7 }
> one = {
> \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
>  >>
> }
>   \layout {\context {
> \Staff
> \consists "Bar_number_engraver"
>   }}
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


double bar number

2018-04-07 Thread bb
I want bar numbers for every bar and a low bar number position to avoid
interference with the chord names. My first attempt shows two bar
numbers one over the other. I do not want the second, the upper bar
number. I cannot find a solution. Thanks for help.

\version "2.19.80"
chordsone = \chordmode { c1:7  f1:7 c1:7 }
one = {
\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
 >>
}
  \layout {\context {
    \Staff
    \consists "Bar_number_engraver"
  }}


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user