lilypond-user
[Top][All Lists]
Advanced

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

Re: gridlayout of Bars with Clef


From: Torsten Hämmerle
Subject: Re: gridlayout of Bars with Clef
Date: Mon, 30 Apr 2018 06:36:06 -0700 (MST)

Orm Finnendahl-5 wrote
> 1. The systemStartDelimiter of the bars of the first row is drawn
>    across all staves.
> 
> 2. I can't find a straightforward way to add a full size clef on the
>    bars in the second and third row.


Hi Orm,

Scores can also be used within markup commands.

And all in all it's about several "mini scores" arranged on the page in a
certain way; so I think the most natural and flexible approach would be to
actually use separate mini scores embedded in a \markup environment.
That way, you'll have full markup possibilities for positioning them on the
page and you don't need to fake missing clefs, key signatures, ...

A *very* simple example, but that should give you an idea:

%%%%%%%%%
\version "2.19"

\layout { indent = 0 \context { \Staff \remove "Time_signature_engraver" } }

\markup {
  \override #'(line-width . 45)
  \column {
    \fill-line { \score { { c'1 } } \score { { g1 } } \score { { a1 } } }
    \fill-line { \score { { c'1 } } \score { { g1 } } \score { { a1 } } }
    \fill-line { \score { { c'1 } } \score { { g1 } } \score { { a1 } } }
    \fill-line { \score { { c'1 } } \score { { g1 } } \score { { a1 } } }
  }
}
%%%%%%%%%

<http://lilypond.1069038.n5.nabble.com/file/t3887/markup-mini-scores.png> 

HTH,
Torsten




--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html



reply via email to

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