lilypond-user
[Top][All Lists]
Advanced

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

Re: Using a tick as a bar line and vertically repositioning it


From: Thomas Morley
Subject: Re: Using a tick as a bar line and vertically repositioning it
Date: Tue, 14 Mar 2017 21:15:58 +0100

2017-03-14 19:57 GMT+01:00 Joseph N. Srednicki <address@hidden>:
> 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



reply via email to

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