lilypond-user
[Top][All Lists]
Advanced

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

Re: Horizontally centered notes


From: Caio Barros
Subject: Re: Horizontally centered notes
Date: Wed, 14 Feb 2018 18:34:01 -0200

What about

\version "2.19"

music = \relative {
  \tweak extra-spacing-width #'(-14 . 5) e'2 f g
}

\score {
  \new Staff {
    \time 3/2
    \clef "baritone^8" \music
  }
  \layout{
    \context {
      \Score
      \omit Clef
      \omit ClefModifier
      \omit Stem
      \omit TimeSignature
      \omit BarLine
      \override StaffSymbol.line-positions = #'(0)
      \override NoteHead.extra-spacing-width = #'(-5 . 5)
    }
    ragged-last = ##f
  }
}


That helps, yes. It's not optimal, since I have to judge the "centralization" by eye, but at least I can get a satisfactory output.
I also didn't know about \omit yet. Nice!

Caio

reply via email to

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