Hello!
I have a question that bothers me. Can I put a label in a markup
function/add-toc-item! ? I'll explain:
I have scores, that obviously use a \header {} block. I use a custom
scoreTitleMarkup, that obviously manages each piece's title markup and
also calls add-toc-item! that puts an item
I noted on the page
http://lilypond.org/doc/v2.19/Documentation/notation/paper-size-and-automatic-scaling#index-Papierformat
> \paper {
> #(set-paper-size "tabliod")
> }
Should that not be "tabloid"?
Kind regards
Bernhard
--
spitzhalde9
D-79853 lenzkirch
bernhard.kle...@gmx.net
www.b-kleine.
On Fri, Feb 7, 2020 at 4:28 AM Aaron Hill wrote:
> I have applied this logic to your code and made some changes [1].
>
> [1]: http://lilybin.com/bt0t2d/11
>
>
That's great, Aaron!
Now we have a very robust method for *easy* spacing *complex* vertical
layouts.
I would not even consider this a "
Bernhard Kleine writes:
> I noted on the page
> http://lilypond.org/doc/v2.19/Documentation/notation/paper-size-and-automatic-scaling#index-Papierformat
>
>> \paper {
>> #(set-paper-size "tabliod")
>> }
> Should that not be "tabloid"?
>
Fixed in master already. Looks like I need to do one las
Hi all,
Here’s the brainstorm I’ve currently got going:
Issue #34, a.k.a. the grace note bug, is one of Lilypond’s longest-standing and
most newbie-unfriendly issues. It doesn’t appear in single-staff scores,
obviously — only in multi-staff scores where one staff has a grace note [in the
note
Kieren MacMillan writes:
> Hi all,
>
> Here’s the brainstorm I’ve currently got going:
>
> Issue #34, a.k.a. the grace note bug, is one of Lilypond’s
> longest-standing and most newbie-unfriendly issues. It doesn’t appear
> in single-staff scores, obviously — only in multi-staff scores where
> on
Am Fr., 7. Feb. 2020 um 14:46 Uhr schrieb Kieren MacMillan
:
>
> Hi all,
>
> Here’s the brainstorm I’ve currently got going:
>
> Issue #34, a.k.a. the grace note bug, is one of Lilypond’s longest-standing
> and most newbie-unfriendly issues. It doesn’t appear in single-staff scores,
> obviously —
My knowledge of lilypond is not good enough...
I tried to understand the examples in the guide of lilypond but the chapter
is not clear enough for me.
I am in difficult...
Please someone can help me? 🙏🏻
Thank you all
Il giorno ven 7 feb 2020 alle 07:11 Aaron Hill
ha scritto:
> On 2020-02-06 10
On Fri, Feb 07, 2020 at 09:06:19PM +0100, Marco Bagolin wrote:
> My knowledge of lilypond is not good enough...
> I tried to understand the examples in the guide of lilypond but the chapter
> is not clear enough for me.
> I am in difficult...
Hi Marco,
If you add the code below to your score, doe
Dear Marco,
is this close to what you want?
%%
\version "2.19.84"
\paper {
print-first-page-number = ##t
oddHeaderMarkup = \markup \null
evenHeaderMarkup = \markup \null
oddFooterMarkup = \markup \fill-line {
\line {
\on-the-fly \print-pa
… and if you want this footer on every page, you can have it shorter:
oddFooterMarkup = \markup \fill-line {
\line {
\fromproperty #'page:page-number-string
"–"
\fromproperty #'header:title
}
}
Best,
Joram
Hi,
I would like to add small notes into an already populated staff.
It is the right hand of a piano staff and I don’t want real voices with
their shifts. The tiny font size distinguishes the "upper" voice
already. It should have the least impact possible on the "music" voice.
Here is one example
Hi Joram,
> How to move the b'' exactly on top of the chord below?
> What to do about this warning?
Does this workaround/hack suit your needs?
%%%
\version "2.19.83"
upper = \relative {
\tiny
\stemUp
s4 b''
}
music = \relative {
\key e \minor
\time 2/4
b'8 16 c' 8 16 b'
}
\new Staff {
> Does this workaround/hack suit your needs?
Hi Kieren,
unfortunately not, because the "music" voice should behave like a
\oneVoice. But the following works for me:
\new Staff <<
{ \oneVoice \music } \\ { \voiceThree \shiftOff \upper } >>
Why did you use \voices 1,2 in your example?
And I’d
Hi Joram,
> the following works for me:
> \new Staff <<
> { \oneVoice \music } \\ { \voiceThree \shiftOff \upper } >>
Glad you found a solution!
> Why did you use \voices 1,2 in your example?
Bad coding… Here’s a better snippet (including your \oneVoice fix):
%%%
\version "2.19.83"
upper = \
Noeck writes:
> Hi,
>
> I would like to add small notes into an already populated staff.
> It is the right hand of a piano staff and I don’t want real voices with
> their shifts. The tiny font size distinguishes the "upper" voice
> already. It should have the least impact possible on the "music"
Kieren MacMillan writes:
> Hi Joram,
>
>> the following works for me:
>> \new Staff <<
>> { \oneVoice \music } \\ { \voiceThree \shiftOff \upper } >>
>
> Glad you found a solution!
>
>> Why did you use \voices 1,2 in your example?
>
> Bad coding… Here’s a better snippet (including your \oneVoice
17 matches
Mail list logo