lilypond-user
[Top][All Lists]
Advanced

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

Re: 2 Voices | 1 Staff | Mensuration Lines | Lyrics


From: Jean Abou Samra
Subject: Re: 2 Voices | 1 Staff | Mensuration Lines | Lyrics
Date: Sat, 11 Feb 2023 22:33:11 +0100
User-agent: Evolution 3.46.3 (3.46.3-1.fc37)

Le samedi 11 février 2023 à 22:14 +0100, Valentin Petzel a écrit :

  1. Instead of using such a parallel global thing with \hide BarLine we can
    achieve the same effect by doing

\version "2.24.0"

\layout {
  \override Staff.BarLine.stencil =
  #(grob-transformer 'stencil
                     (lambda (grob orig)
                       (let ((type (ly:grob-property grob 'glyph)))
                         (if (equal? type "|")
                             empty-stencil
                             orig))))

I just remembered that LilyPond 2.24 has a dedicated bar type for that.

\layout {
  \context {
    \Score
    measureBarType = "-span|"
  }
}

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

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