Hi Stefan,
> Turns out I left out
> \consists "Script_engraver"
> in my previous attempts, which probably explains why the markup was not shown.
For sure. :)
> I do not need the "global" part, not sure why it is needed, also seems to
> work without that
I just prefer the readability and maint
OK,
thanks a lot!
Turns out I left out
\consists "Script_engraver"
in my previous attempts, which probably explains why the markup was not
shown.
For me this worked (I do not need the "global" part, not sure why it is
needed, also seems to work without that)
%%% SNIPPET BEGINS
\version
Hi Stefan,
> 1. How can I add the text "4x" over the repeat sign in bar 4?
> 2. How would I attach a \fermata to the last chord?
> 3. How can I add markup-text to the chords?
Here are some ideas that might point you in the right direction?
%%% SNIPPET BEGINS
\version "2.25.1"
\layout {
\cont
On Mon, Jun 23, 2025 at 1:32 PM Stefan E. Mueller
wrote:
> Hi,
>
> I have this minimal example of a line of chords:
>
> ##
> #(define-bar-line ".|:" ".|:" ".|:" ".|:")
> <<
> \new ChordNames \with
> {
>\override BarLine.bar-extent = #'(-2 . 2)
>
Xavier
Thanks a lot for refining my hypothesis to correct code! This helps me
understand how to handle specific attributes in a nested list!
Am 13.05.2022 um 10:14 schrieb Xavier Scheuer:
On Fri, 13 May 2022 at 09:25, Mario Bolognani
wrote:
>
> Any idea on how to obtain this kind of expressive
Thanks Xavier, it is a simpler proposal even if the result may not be
satisfactory…
Best
Mario Bolognani
Inviato da iPhone
> Il giorno 13 mag 2022, alle ore 10:14, Xavier Scheuer
> ha scritto:
>
>
> On Fri, 13 May 2022 at 09:25, Mario Bolognani
> wrote:
> >
> > Any idea on how to obtai
Many thanks Richard for your suggestion. I’ll try to understand.
Best
Mario
Inviato da iPhone
> Il giorno 13 mag 2022, alle ore 14:58, Richard Shann
> ha scritto:
>
> On Fri, 2022-05-13 at 14:06 +0200, Stephan Schöll wrote:
>> I'm wondering if we need 340 lines of Scheme code or if we could
On Fri, 2022-05-13 at 14:06 +0200, Stephan Schöll wrote:
> I'm wondering if we need 340 lines of Scheme code or if we could /
> why we can't use the TrillSpanner and just eliminate the "tr" prefix
> and leave the wiggy line,
yes, that's good if you want exactly that wiggley line - the 340 lines
of
I'm wondering if we need 340 lines of Scheme code or if we could / why
we can't use the TrillSpanner and just eliminate the "tr" prefix and
leave the wiggy line, something based on (but not working since I don't
understand Scheme lists thoroughly):
\relative c'' {
\once \override TrillSpanner.b
On Fri, 13 May 2022 at 09:25, Mario Bolognani
wrote:
>
> Any idea on how to obtain this kind of expressive marks?
>
> Many thanks for any useful suggestion
Hello,
I would probably use a TrillSpanner without "tr." left text.
\relative c'' {
\override TrillSpanner.bound-details.left.text = #'()
On Fri, 2022-05-13 at 09:12 +0200, Mario Bolognani wrote:
> Any idea on how to obtain this kind of expressive marks?
There is a thread about this which I was involved in, the code that
resulted is here in Denemo's source LilyPond files:
http://git.savannah.gnu.org/gitweb/?p=denemo.git;a=blob;f=ac
On 20 July 2011 12:01, Andrea wrote:
>
> Hi Xavier,
>
> I didn't think it was that easy! This command will come handy many
> times, thank you so much!
Yeah, LilyPond is a great software, isn't it? ;-D
Cheers,
Xavier
--
Xavier Scheuer
___
lilypond-
On 20 July 2011 11:03, Jayaratna wrote:
>
> Dear members,
>
> I need to print parentheses around a Staccatissimo mark. I found how to
> create dynamics with parentheses in Lilypond snippets. I think it's very
> similar with other expressive marks, but can't find how to do it.
Simply use the \par
On 01/26/2011 03:39 AM, James Lowe wrote:
Paul
-Original Message-
From: Paul Scott [mailto:waterho...@ultrasw.com]
Sent: 26 January 2011 04:45
To: James Lowe
Cc: lilypond-user@gnu.org
Subject: Re: expressive marks inside slurs
On 01/25/2011 01:48 PM, James Lowe wrote:
Paul
Paul
> -Original Message-
> From: Paul Scott [mailto:waterho...@ultrasw.com]
> Sent: 26 January 2011 04:45
> To: James Lowe
> Cc: lilypond-user@gnu.org
> Subject: Re: expressive marks inside slurs
>
> On 01/25/2011 01:48 PM, James Lowe wrote:
> > Paul
2011/1/26 Paul Scott :
> On 01/25/2011 01:48 PM, James Lowe wrote:
>>
>> Paul
>>
>> -Original Message-
>> From: Paul Scott
>> Date: Tue, 25 Jan 2011 11:36:23 -0700
>> To: "lilypond-user@gnu.org"
>> Subject: expressive marks inside slurs
>>
>>
>>>
>>> 2.13.46:
>>>
>>> I've been searching the
On 01/25/2011 01:48 PM, James Lowe wrote:
Paul
-Original Message-
From: Paul Scott
Date: Tue, 25 Jan 2011 11:36:23 -0700
To: "lilypond-user@gnu.org"
Subject: expressive marks inside slurs
2.13.46:
I've been searching the documentation and the web for a while trying to
get accents,
Paul
-Original Message-
From: Paul Scott
Date: Tue, 25 Jan 2011 11:36:23 -0700
To: "lilypond-user@gnu.org"
Subject: expressive marks inside slurs
>2.13.46:
>
>I've been searching the documentation and the web for a while trying to
>get accents, etc. inside slurs.
>
>1. What draws accen
Mats Bengtsson wrote :
I would rather recommend the following setting:
\override Script #'quantize-position = ##f
(or perhaps \override Score.Script #'quantize-position = ##f
to make sure that it applies also to the temporary Voice contexts
created when you use the <<{...} \\ {...} >> construct.)
Germain G. Ivanoff-Trinadtzaty wrote:
Thanks to Neil Thornock, I've worked it out :
1) In the following snippet, I'd like the accents to be placed above
the staff :
{
d'1-> d'2-> a'-> a'1->
}
{
\override Script #'direction = #UP
d'1-> d'2-> a'-> a'1->
}
2) Here I want all the accents be ali
Thanks to Neil Thornock, I've worked it out :
1) In the following snippet, I'd like the accents to be placed above the
staff :
{
d'1-> d'2-> a'-> a'1->
}
{
\override Script #'direction = #UP
d'1-> d'2-> a'-> a'1->
}
2) Here I want all the accents be aligned (horizontally), outside (above)
t
Dear all,
1) In the following snippet, I'd like the accents to be placed
above the staff :
{
d'1-> d'2-> a'-> a'1->
}
have you tried
{
d'1^> d'2^> a'^> a'1^>
}
?
Not suitable for my general purpose.
G.
___
lilypond-user mailing list
lilypond-
On 10.03.2009, at 20:05, Germain G. Ivanoff-Trinadtzaty wrote:
Dear all,
1) In the following snippet, I'd like the accents to be placed
above the staff :
{
d'1-> d'2-> a'-> a'1->
}
have you tried
{
d'1^> d'2^> a'^> a'1^>
}
?
___
lilypond-user
> 1) In the following snippet, I'd like the accents to be placed above the
> staff :
> {
> d'1-> d'2-> a'-> a'1->
> }
First off, articulations are Script objects, so only Script overrides
will have any effect. See if perusing this page lends any clues:
http://lilypond.org/doc/v2.12/Documentation
24 matches
Mail list logo