lilypond-user
[Top][All Lists]
Advanced

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

Re: A little help


From: Valentin Petzel
Subject: Re: A little help
Date: Sun, 27 Feb 2022 10:19:19 +0100

Hello,

Doing it your way you can simply use

\new Dynamics \with {
        \consists Stem_engraver
        \consists Note_heads_engraver
        \override NoteHead.stencil = #point-stencil
        alignAboveContext = "giu"}

which requires a bit less tuning than getting a Staff to behave not like a 
Staff. But I’d rather do something like

tactus = \markup \path #0.15 #'((moveto 0 1) (lineto 0 -1))
giu = \new Staff = "giu" {
  \relative c' {
    <<
      {b4 a g f}
      \new Dynamics \with { alignAboveContext = "giu" }
      {\repeat unfold 4 s4-\tactus}
    >>
  }
}

which does also allow something like

giu = \new Staff = "giu" {
  \relative c' {
    <<
      {b4 a g f}
      {\repeat unfold 4 s4^\tactus}
    >>
  }
}

Cheers,
Valentin

Am Samstag, 26. Februar 2022, 18:16:23 CET schrieb Rip _Mus:
> Hello everyone,
> I have prepared a minimal example (attached) to explain my problem.
> In a PianoStaff, transiently, I insert a new staff above the left hand to
> create a kind of "tactus" reference (widely used in contemporary music).
> I wonder how I can do to decrease the excessive distance between the
> extreme staves, in order to make everything more compact.
> I'm looking at the chapters related to vertical spacing, but I just can't
> get out of them.
> 
> 
> Thanks and greetings to all
> 
> Rip_mus

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


reply via email to

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