2017-03-14 19:57 GMT+01:00 Joseph N. Srednicki <jnsredni...@verizon.net>:
> Hello:
>
>
>
> Can someone help with an answer that I cannot find by searching the Lilypond
> documentation?
>
>
>
> In some plainsong settings in the Hymnal 1982, a vertical tick represents a
> bar line.
>
>
>
> See the following tiny example.
>
>
>
> \version "2.19.54"
>
> \relative c {
>
>   \time 2/4
>
>   c' c \bar"'" |
>
>   c c \bar "|."
>
> }
>
>
>
> In this example, the tick appears on the f line about middle c.
>
>
>
> How would I code this so that I can vertically position the tick appear in
> the middle line of the staff and make it bold?


You can't without redefining make-tick-bar-line.
Does below already fits your needs?

\relative c {

  \time 2/4
  c' c
  \once \override Staff.BarLine.hair-thickness = 15
  \once \override Staff.BarLine.bar-extent = #'(-1 . 1)
  \bar "|"
  c c \bar "|."

}

Cheers,
  Harm

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

Reply via email to