Re: (No subject)

2024-04-21 Thread David Wright
On Sun 21 Apr 2024 at 18:45:35 (+0200), Hans Aikema wrote:
> > On 21 Apr 2024, at 17:58, Gian Paolo Renello wrote:
> > 
> > I read as you suggested but didn't find the way. Here is hte piece of score 
> > code:
> >  
> > \score{
> > \new StaffGroup <<
> > \new Staff \with {
> > midiInstrument = "choir aahs"
> > instrumentName = "Soprani"
> > } { \soprano }
> > \addlyrics {\sopranoVerse_sup}
> > \addlyrics { \sopranoVerse_ru }
> > \addlyrics { \sopranoVerse }
> >  
> 
> You can’t use the \addlyrics shortcut when you want to place the lyrics above 
> the staff. You’ll have to use the \new Lyrics construct (as shown in the 
> notation manual) for those lyrics.

I have no problem using \addlyrics above the staff. The attached
shows an example, with verses 1 and 2 aligned to the soprano,
and verses 3, 4 and 5 to the alto, tenor and bass respectively.

(You wouldn't do it like this for a strophic hymn, but if you exclude
verse 2, it illustrates a layout for a 4-part non-homophonic composition.)

> \addlyrics is very limited in customisation power, it’s a shorthand for 
> creating the new Lyrics to the preceding voice (the music in between the 
> braces ( {\soprano} ) implicitly creates an unnamed voice.

But its placement can refer to the staves, as you appeared to say earlier:

> > The preferred way is by coding the '\with { alignAboveContext = “ > the staff>” }` to the Lyrics assigned to the Solo in your piece.

Cheers,
David.
\version "2.24.0"
\language english
\header {
  tagline = ##f
}
global = {
  \key g \major
  \time 4/4
  \partial 2
  s2 s1 s2
  s2 s1 s2
  \bar "" \break
}

soprano = \relative {
  d'4 fs g4. g8 g[( fs]) g[( a]) a4 g
  g4 b d4. b8 b[( a]) g[( fs]) g2
}

alto = \relative {
  d'4 c d4. d8 d4 d8[( fs]) fs4 g4
  d4 g g4. g8 e4 d d2
}

tenor = \relative {
  b4 a g4. b8 b[( a]) b[( c]) c4 b
  b4 g g4. d'8 d[( c]) b[( a]) b2
}

bass = \relative {
  g,4 a b4. g8 d'4 d d g
  g4 e b4. g8 c4 d g,2
}

texti = \lyricmode {
  \set stanza = "1."
  Once in roy -- al Da -- vid’s Ci -- ty
  Stood a low -- ly cat -- tle __ shed,
}

textii = \lyricmode {
  \set stanza = "2."
  He came down to earth from hea -- ven
  Who is God and Lord of __ all,
}

textiii = \lyricmode {
  \set stanza = "3."
  And through all his won -- drous child -- hood
  He would hon -- our and o -- bey,
}

textiv = \lyricmode {
  \set stanza = "4."
  For he is our child -- hood’s pat -- tern,
  Day by day like us __ he __ grew;
}

textv = \lyricmode {
  \set stanza = "5."
  And our eyes at last shall see him
  Through his own re -- deem -- ing love,
}

\score {
  \new ChoirStaff <<
\new Staff = streb <<
  \clef treble \global
  \new Voice { \voiceOne \soprano }
  \addlyrics \with { alignAboveContext = streb } { \texti }
  \addlyrics { \textii }
  \new Voice { \voiceTwo \alto }
  \addlyrics { \textiii }
>>
\new Staff = sbass <<
  \clef bass \global
  \new Voice { \voiceOne \tenor }
  \addlyrics \with { alignAboveContext = sbass } { \textiv }
  \new Voice { \voiceTwo \bass }
  \addlyrics { \textv }
>>
  >>
  \layout {
indent = 0
\context {
  \Staff
  \omit TimeSignature
}
  }
}


once.pdf
Description: Adobe PDF document


Re: (No subject)

2024-04-21 Thread Xavier Scheuer
On Sun, 21 Apr 2024 at 20:44, Gian Paolo Renello 
wrote:
>
> Your right, thanks.  I noticed it and changed as well in my code, but the
problem won't solve (see previous mail about the context)

Hello,

The Lyrics should come after the \new Voice = "sopranoVoice".
If you get an error please send a minimal example of code showing the issue.

Kind regards,
Xavier


Re: (No subject)

2024-04-21 Thread Gian Paolo Renello
Your right, thanks.  I noticed it and changed as well in my code, but the problem won't solve (see previous mail about the context) GP21.04.2024, 19:12, "Hans Aikema" :Fixing up my reply... spotted that I had a difference between the name I gave to the staff and the reference to it in the alignAboveContext. Both have now been synchronised to "sopranoStaff" belowOn 21 Apr 2024, at 18:46, Hans Aikema  wrote:On 21 Apr 2024, at 17:58, Gian Paolo Renello  wrote:I read as you suggested but didn't find the way. Here is hte piece of score code: \score{    \new StaffGroup <<        \new Staff \with {            midiInstrument = "choir aahs"            instrumentName = "Soprani"        } { \soprano }        \addlyrics {\sopranoVerse_sup}        \addlyrics { \sopranoVerse_ru }        \addlyrics { \sopranoVerse } You can’t use the \addlyrics shortcut when you want to place the lyrics above the staff. You’ll have to use the \new Lyrics construct (as shown in the notation manual) for those lyrics.\score{    \new StaffGroup <<        \new Staff = "sopranoStaff" \with {            midiInstrument = "choir aahs"            instrumentName = "Soprani"        } { \new Voice = "sopranoVoice" { \soprano } }        \new Lyrics \with { alignAboveContext = "sopStaff" } { \lyricsto "sopranoVoice" \sopranoVerse_sup }        \new Lyrics \lyricsto "sopranoVoice" \sopranoVerse_ru        \new Lyrics \lyricsto "sopranoVoice" \sopranoVerseShould do the trick if I didn’t mess up the syntax (cannot validate as you provided only the opening snippet, but the transition from \addlyrics to \new Lyrics is required to specify the alignAboveContext)\addlyrics is very limited in customisation power, it’s a shorthand for creating the new Lyrics to the preceding voice (the music in between the braces ( {\soprano} ) implicitly creates an unnamed voice. In order to be able to use the \new Lyrics you also need to explicitly create the voice and give it a name to be able to reference it using the \lyricstoall the three texts are printed under soprano staff. But what i need is \sopranoVerse_sup printed over the soprano staff since there are two voices (sop I and II) and the don't sing  the same text. Amy idea? the alignabovecontext Staff won't work inside \addlyrics tx for your attention Gian Paolo11.04.2024, 18:54, "Hans Aikema" :On 11 Apr 2024, at 16:59, Gian Paolo Renello  wrote:Hi, i have a question:ho can i add a 5th voice (for soprano) in a SATB choral work. The 4 voices are all under the staff. I need the fifth one to be over the Soprano staff while the second soprano voices sings the part under the staff. See attached image. Thank you.There are some examples on lyrics placement documented at https://lilypond.org/doc/v2.24/Documentation/notation/techniques-specific-to-lyricsFor your score you would put two voices (Solo and Sopranos) in the Sopranos staff https://lilypond.org/doc/v2.24/Documentation/notation/multiple-voices#single_002dstaff-polyphonyand put the lyrics attached to the Solo above that staff, and the lyrics attached to the Sopranos below it. The location of each lyric can be controlled individually as documented on that page at https://lilypond.org/doc/v2.24/Documentation/notation/techniques-specific-to-lyrics#placing-lyrics-verticallyThe preferred way is by coding the '\with { alignAboveContext = “” }` to the Lyrics assigned to the Solo in your piece.HTHHans

Re: (No subject)

2024-04-21 Thread Gian Paolo Renello
this part of code: \new Staff = "sopranoStaff" \with {            midiInstrument = "choir aahs"            instrumentName = "Soprani"        } { \new Voice = "sopranoVoice" { \soprano } } works well, but the second part:  \new Lyrics \with { alignAboveContext = "sopStaff" } { \lyricsto "sopranoVoice" \sopranoVerse_sup }        \new Lyrics \lyricsto "sopranoVoice" \sopranoVerse_ru        \new Lyrics \lyricsto "sopranoVoice" \sopranoVerse give me always the same errorthat is unable to find the context  Voice = sopranoVoice\new Lyrics \with { alignAboveContext = "sopranoStaff" } { \lyricsto "sopranoVoice" \sopranoVerse_sup } and the same for  the context Voice = sopranoVoicefor all the \liricsto the other verses... \new Lyrics \lyricsto "sopranoVoice" \sopranoVerse_ru so the verses for soprano wont show... Gian Paolo21.04.2024, 19:12, "Hans Aikema" :Fixing up my reply... spotted that I had a difference between the name I gave to the staff and the reference to it in the alignAboveContext. Both have now been synchronised to "sopranoStaff" belowOn 21 Apr 2024, at 18:46, Hans Aikema  wrote:On 21 Apr 2024, at 17:58, Gian Paolo Renello  wrote:I read as you suggested but didn't find the way. Here is hte piece of score code: \score{    \new StaffGroup <<        \new Staff \with {            midiInstrument = "choir aahs"            instrumentName = "Soprani"        } { \soprano }        \addlyrics {\sopranoVerse_sup}        \addlyrics { \sopranoVerse_ru }        \addlyrics { \sopranoVerse } You can’t use the \addlyrics shortcut when you want to place the lyrics above the staff. You’ll have to use the \new Lyrics construct (as shown in the notation manual) for those lyrics.\score{    \new StaffGroup <<        \new Staff = "sopranoStaff" \with {            midiInstrument = "choir aahs"            instrumentName = "Soprani"        } { \new Voice = "sopranoVoice" { \soprano } }        \new Lyrics \with { alignAboveContext = "sopStaff" } { \lyricsto "sopranoVoice" \sopranoVerse_sup }        \new Lyrics \lyricsto "sopranoVoice" \sopranoVerse_ru        \new Lyrics \lyricsto "sopranoVoice" \sopranoVerseShould do the trick if I didn’t mess up the syntax (cannot validate as you provided only the opening snippet, but the transition from \addlyrics to \new Lyrics is required to specify the alignAboveContext)\addlyrics is very limited in customisation power, it’s a shorthand for creating the new Lyrics to the preceding voice (the music in between the braces ( {\soprano} ) implicitly creates an unnamed voice. In order to be able to use the \new Lyrics you also need to explicitly create the voice and give it a name to be able to reference it using the \lyricstoall the three texts are printed under soprano staff. But what i need is \sopranoVerse_sup printed over the soprano staff since there are two voices (sop I and II) and the don't sing  the same text. Amy idea? the alignabovecontext Staff won't work inside \addlyrics tx for your attention Gian Paolo11.04.2024, 18:54, "Hans Aikema" :On 11 Apr 2024, at 16:59, Gian Paolo Renello  wrote:Hi, i have a question:ho can i add a 5th voice (for soprano) in a SATB choral work. The 4 voices are all under the staff. I need the fifth one to be over the Soprano staff while the second soprano voices sings the part under the staff. See attached image. Thank you.There are some examples on lyrics placement documented at https://lilypond.org/doc/v2.24/Documentation/notation/techniques-specific-to-lyricsFor your score you would put two voices (Solo and Sopranos) in the Sopranos staff https://lilypond.org/doc/v2.24/Documentation/notation/multiple-voices#single_002dstaff-polyphonyand put the lyrics attached to the Solo above that staff, and the lyrics attached to the Sopranos below it. The location of each lyric can be controlled individually as documented on that page at https://lilypond.org/doc/v2.24/Documentation/notation/techniques-specific-to-lyrics#placing-lyrics-verticallyThe preferred way is by coding the '\with { alignAboveContext = “” }` to the Lyrics assigned to the Solo in your piece.HTHHans

Re: (No subject)

2024-04-21 Thread Hans Aikema
Fixing up my reply... spotted that I had a difference between the name I gave to the staff and the reference to it in the alignAboveContext. Both have now been synchronised to "sopranoStaff" belowOn 21 Apr 2024, at 18:46, Hans Aikema  wrote:On 21 Apr 2024, at 17:58, Gian Paolo Renello  wrote:I read as you suggested but didn't find the way. Here is hte piece of score code: \score{    \new StaffGroup <<        \new Staff \with {            midiInstrument = "choir aahs"            instrumentName = "Soprani"        } { \soprano }        \addlyrics {\sopranoVerse_sup}        \addlyrics { \sopranoVerse_ru }        \addlyrics { \sopranoVerse } You can’t use the \addlyrics shortcut when you want to place the lyrics above the staff. You’ll have to use the \new Lyrics construct (as shown in the notation manual) for those lyrics.\score{    \new StaffGroup <<        \new Staff = "sopranoStaff" \with {            midiInstrument = "choir aahs"            instrumentName = "Soprani"        } { \new Voice = "sopranoVoice" { \soprano } }        \new Lyrics \with { alignAboveContext = "sopStaff" } { \lyricsto "sopranoVoice" \sopranoVerse_sup }        \new Lyrics \lyricsto "sopranoVoice" \sopranoVerse_ru        \new Lyrics \lyricsto "sopranoVoice" \sopranoVerseShould do the trick if I didn’t mess up the syntax (cannot validate as you provided only the opening snippet, but the transition from \addlyrics to \new Lyrics is required to specify the alignAboveContext)\addlyrics is very limited in customisation power, it’s a shorthand for creating the new Lyrics to the preceding voice (the music in between the braces ( {\soprano} ) implicitly creates an unnamed voice. In order to be able to use the \new Lyrics you also need to explicitly create the voice and give it a name to be able to reference it using the \lyricstoall the three texts are printed under soprano staff. But what i need is \sopranoVerse_sup printed over the soprano staff since there are two voices (sop I and II) and the don't sing  the same text. Amy idea? the alignabovecontext Staff won't work inside \addlyrics tx for your attention Gian Paolo11.04.2024, 18:54, "Hans Aikema" :On 11 Apr 2024, at 16:59, Gian Paolo Renello  wrote:Hi, i have a question:ho can i add a 5th voice (for soprano) in a SATB choral work. The 4 voices are all under the staff. I need the fifth one to be over the Soprano staff while the second soprano voices sings the part under the staff. See attached image. Thank you.There are some examples on lyrics placement documented at https://lilypond.org/doc/v2.24/Documentation/notation/techniques-specific-to-lyricsFor your score you would put two voices (Solo and Sopranos) in the Sopranos staff https://lilypond.org/doc/v2.24/Documentation/notation/multiple-voices#single_002dstaff-polyphonyand put the lyrics attached to the Solo above that staff, and the lyrics attached to the Sopranos below it. The location of each lyric can be controlled individually as documented on that page at https://lilypond.org/doc/v2.24/Documentation/notation/techniques-specific-to-lyrics#placing-lyrics-verticallyThe preferred way is by coding the '\with { alignAboveContext = “” }` to the Lyrics assigned to the Solo in your piece.HTHHans

Re: (No subject)

2024-04-21 Thread Hans Aikema


> On 21 Apr 2024, at 17:58, Gian Paolo Renello  wrote:
> 
> I read as you suggested but didn't find the way. Here is hte piece of score 
> code:
>  
> \score{
> \new StaffGroup <<
> \new Staff \with {
> midiInstrument = "choir aahs"
> instrumentName = "Soprani"
> } { \soprano }
> \addlyrics {\sopranoVerse_sup}
> \addlyrics { \sopranoVerse_ru }
> \addlyrics { \sopranoVerse }
>  

You can’t use the \addlyrics shortcut when you want to place the lyrics above 
the staff. You’ll have to use the \new Lyrics construct (as shown in the 
notation manual) for those lyrics.

\score{
\new StaffGroup <<
\new Staff = "sopranoStaff" \with {
midiInstrument = "choir aahs"
instrumentName = "Soprani"
} { \new Voice = "sopranoVoice" { \soprano } }
\new Lyrics \with { alignAboveContext = "sopStaff" } { \lyricsto 
"sopranoVoice" \sopranoVerse_sup }
\new Lyrics \lyricsto "sopranoVoice" \sopranoVerse_ru
\new Lyrics \lyricsto "sopranoVoice" \sopranoVerse

Should do the trick if I didn’t mess up the syntax (cannot validate as you 
provided only the opening snippet, but the transition from \addlyrics to \new 
Lyrics is required to specify the alignAboveContext)

\addlyrics is very limited in customisation power, it’s a shorthand for 
creating the new Lyrics to the preceding voice (the music in between the braces 
( {\soprano} ) implicitly creates an unnamed voice. In order to be able to use 
the \new Lyrics you also need to explicitly create the voice and give it a name 
to be able to reference it using the \lyricsto


> all the three texts are printed under soprano staff. But what i need is 
> \sopranoVerse_sup printed over the soprano staff since there are two voices 
> (sop I and II) and the don't sing  the same text.
>  
> Amy idea? the alignabovecontext Staff won't work inside \addlyrics
>  
> tx for your attention
>  
> Gian Paolo
> 
> 
> 11.04.2024, 18:54, "Hans Aikema" :
> 
> 
> On 11 Apr 2024, at 16:59, Gian Paolo Renello  > wrote:
> 
> Hi, i have a question:
> ho can i add a 5th voice (for soprano) in a SATB choral work. The 4 voices 
> are all under the staff. I need the fifth one to be over the Soprano staff 
> while the second soprano voices sings the part under the staff. See attached 
> image. Thank you.
> 
> There are some examples on lyrics placement documented at 
> https://lilypond.org/doc/v2.24/Documentation/notation/techniques-specific-to-lyrics
>  
> 
> 
> For your score you would put two voices (Solo and Sopranos) in the Sopranos 
> staff 
> https://lilypond.org/doc/v2.24/Documentation/notation/multiple-voices#single_002dstaff-polyphony
> 
> and put the lyrics attached to the Solo above that staff, and the lyrics 
> attached to the Sopranos below it. The location of each lyric can be 
> controlled individually as documented on that page at 
> https://lilypond.org/doc/v2.24/Documentation/notation/techniques-specific-to-lyrics#placing-lyrics-vertically
> 
> The preferred way is by coding the '\with { alignAboveContext = “ staff>” }` to the Lyrics assigned to the Solo in your piece.
> 
> 
> HTH
> 
> Hans
> 



Re: (No subject)

2024-04-21 Thread Gian Paolo Renello
I read as you suggested but didn't find the way. Here is hte piece of score code: \score{    \new StaffGroup <<        \new Staff \with {            midiInstrument = "choir aahs"            instrumentName = "Soprani"        } { \soprano }        \addlyrics {\sopranoVerse_sup}        \addlyrics { \sopranoVerse_ru }        \addlyrics { \sopranoVerse } all the three texts are printed under soprano staff. But what i need is \sopranoVerse_sup printed over the soprano staff since there are two voices (sop I and II) and the don't sing  the same text. Amy idea? the alignabovecontext Staff won't work inside \addlyrics tx for your attention Gian Paolo11.04.2024, 18:54, "Hans Aikema" :On 11 Apr 2024, at 16:59, Gian Paolo Renello  wrote:Hi, i have a question:ho can i add a 5th voice (for soprano) in a SATB choral work. The 4 voices are all under the staff. I need the fifth one to be over the Soprano staff while the second soprano voices sings the part under the staff. See attached image. Thank you.There are some examples on lyrics placement documented at https://lilypond.org/doc/v2.24/Documentation/notation/techniques-specific-to-lyricsFor your score you would put two voices (Solo and Sopranos) in the Sopranos staff https://lilypond.org/doc/v2.24/Documentation/notation/multiple-voices#single_002dstaff-polyphonyand put the lyrics attached to the Solo above that staff, and the lyrics attached to the Sopranos below it. The location of each lyric can be controlled individually as documented on that page at https://lilypond.org/doc/v2.24/Documentation/notation/techniques-specific-to-lyrics#placing-lyrics-verticallyThe preferred way is by coding the '\with { alignAboveContext = “” }` to the Lyrics assigned to the Solo in your piece.HTHHans

Re: Special notation question

2024-04-21 Thread Thomas Morley
Am So., 21. Apr. 2024 um 17:43 Uhr schrieb Xavier Mayeur :

> Hello,
>
> In a \time 3/2 score, how can I write the following snippet in Lilypond?
>
>
>
> I wonder how to create the 'g' note with that special appearance and with
> the right duration...
>
> --
> Cordialement,
>
> Xavier MAYEUR
> Bruxelles
>
>
{
  \tweak duration-log 1
  g''8
  %% or
  \override NoteHead.duration-log = 1
  g''8
}

Cheers,
  Harm


Re: Special notation question

2024-04-21 Thread William Rehwinkel via LilyPond user discussion

Dear Xavier,

I think this is called "void notation". I write it in the following way 
(including an example of how to write whole notes), but it is very 
time-consuming, and perhaps someone else has an easier way to 
automatically write music like this.


Thanks,
-William

% 
\version "2.25.7"

\relative b'' {
  \time 3/2
  \scaleDurations 2/1 {
  \override NoteHead.duration-log = #1
  b4 a4. g8 | \once\revert NoteHead.duration-log f1*1/2 e4 |

}}
% 

On 4/21/24 11:13, Xavier Mayeur wrote:

Hello,

In a \time 3/2 score, how can I write the following snippet in Lilypond?

I wonder how to create the 'g' note with that special appearance and 
with the right duration...


--
Cordialement,

Xavier MAYEUR
Bruxelles



--
William Rehwinkel - Oberlin College and Conservatory '24

will...@williamrehwinkel.net

PGP key: https://ftp.williamrehwinkel.net/pubkey.txt


OpenPGP_signature.asc
Description: OpenPGP digital signature


Special notation question

2024-04-21 Thread Xavier Mayeur

Hello,

In a \time 3/2 score, how can I write the following snippet in Lilypond?

I wonder how to create the 'g' note with that special appearance and 
with the right duration...


--
Cordialement,

Xavier MAYEUR
Bruxelles


Re: Bend

2024-04-21 Thread Thomas Richter
I guess what you are looking for is the brassBend glyph defined in SMuFL 
compliant fonts like Bravura or Ekmelos 
 with codepoint 
U+E5E3.  And it is one of the few musical symbols which is also defined 
in Unicode with codepoint U+1D189.





\version "2.24.0"

#(define-markup-command (brassBend layout props) ()
  #:properties ((font-size 0))
  (interpret-markup layout
    (cons
  `((font-name . "Ekmelos")
    (font-size . ,(+ font-size 5)))
  props)
    (ly:wide-char->utf-8 #xE5E3)))

{ c'' ^ \markup \brassBend }



Thomas


Am 20.04.2024 um 22:39 schrieb gehent...@gmail.com:

Hello friends,

I thought this was recently covered, but I haven't been able to find
what I need.

I'm looking for an articulation to add that will indicate a note is
supposed to bend down, before bending back up again. Usually I see it
looking something like an upside-down fermata, without the dot. I can
do this in Musescore easily, but I've never found a satisfactory bend
like this in Lilypond. I have a script for a scoop, and I know about
\bendBefore, but not this one.

Thanks!

Brian



Re: Bend

2024-04-21 Thread Thomas Richter

I guess what you are looking for is the brassBend glyph (U+E5E3) in



Am 20.04.2024 um 22:39 schrieb gehent...@gmail.com:

Hello friends,

I thought this was recently covered, but I haven't been able to find
what I need.

I'm looking for an articulation to add that will indicate a note is
supposed to bend down, before bending back up again. Usually I see it
looking something like an upside-down fermata, without the dot. I can
do this in Musescore easily, but I've never found a satisfactory bend
like this in Lilypond. I have a script for a scoop, and I know about
\bendBefore, but not this one.

Thanks!

Brian






Re: LilyPond 2.25.15

2024-04-21 Thread Ya Gloops
 Great !!!Thanks for fixing the guile 3 bug on Windows...
GillesLe samedi 20 avril 2024 à 18:18:24 UTC+2, Jonas Hahnfeld via LilyPond 
user discussion  a écrit :  
 
 We are happy to announce the release of LilyPond 2.25.15. This is
termed a development release, but these are usually reliable for
testing new features and recent bug fixes. However, if you require
stability, we recommend using version 2.24.3, the current stable
release.
Please refer to the Installing section in the Learning Manual for
instructions how to set up the provided binaries:
https://lilypond.org/doc/v2.25/Documentation/learning/installing
  

Re: PianoPedalBracket.to-barline doesn't always work as expected

2024-04-21 Thread Kieren MacMillan
Hi Werner,

>> Might I suggest that “to-barline” is potentially
>> misleading/confusing…?
> I suggest you file an issue.

https://gitlab.com/lilypond/lilypond/-/issues/6709

Cheers,
Kieren.
__

My work day may look different than your work day. Please do not feel obligated 
to read or respond to this email outside of your normal working hours.




Re: Bend

2024-04-21 Thread Lukas-Fabian Moser
Hi Brian,

if you know \bendBefore, you're probably referring to the semi-finished
improved bendAfter/bendBefore pair that I reposted recently. This supports
an arbitrary contour for the bend line by giving a list of tone relations.
See the examples that come with it.

I'll not be at my computer for the rest of the day (German time zone), but
maybe this pointer is already helpful?

Lukas

 schrieb am Sa., 20. Apr. 2024, 22:39:

> Hello friends,
>
> I thought this was recently covered, but I haven't been able to find
> what I need.
>
> I'm looking for an articulation to add that will indicate a note is
> supposed to bend down, before bending back up again. Usually I see it
> looking something like an upside-down fermata, without the dot. I can
> do this in Musescore easily, but I've never found a satisfactory bend
> like this in Lilypond. I have a script for a scoop, and I know about
> \bendBefore, but not this one.
>
> Thanks!
>
> Brian
>
>


Re: Bend

2024-04-21 Thread gehentogo
After searching unicode, I think I may have found a character that
works even better. ^"‿", or ^\markup { ‿ }.

On Sun, Apr 21, 2024 at 8:41 AM  wrote:
>
> Hey Paul,
>
> \lheel is what I had in mind, except it looks more like a "U," while I
> am used to seeing something a bit flatter. I'm surprised there isn't
> something for this as it's not so uncommon in jazz.
>
> But, I might have found something that kind of works: instead of
> ^\lheel (^ ensures it is above the note), I am using ^"◡". After a
> quick google search, I found out there is ascii code for the lower
> half of a circle. I feel like this is a good, 90% solution.
>
> Cheers,
>
> Brian
>
> On Sat, Apr 20, 2024 at 11:59 PM waterhorsemusic
>  wrote:
> >
> > Not perfect but \lheel works.
> >
> > HTH,
> >
> > Paul
> >
> >
> >
> >
> > Sent from my Galaxy
> >
> >
> >  Original message 
> > From: gehent...@gmail.com
> > Date: 4/20/24 1:39 PM (GMT-07:00)
> > To: lilypond-user@gnu.org
> > Subject: Bend
> >
> > Hello friends,
> >
> > I thought this was recently covered, but I haven't been able to find
> > what I need.
> >
> > I'm looking for an articulation to add that will indicate a note is
> > supposed to bend down, before bending back up again. Usually I see it
> > looking something like an upside-down fermata, without the dot. I can
> > do this in Musescore easily, but I've never found a satisfactory bend
> > like this in Lilypond. I have a script for a scoop, and I know about
> > \bendBefore, but not this one.
> >
> > Thanks!
> >
> > Brian
> >



Re: Bend

2024-04-21 Thread gehentogo
Hey Paul,

\lheel is what I had in mind, except it looks more like a "U," while I
am used to seeing something a bit flatter. I'm surprised there isn't
something for this as it's not so uncommon in jazz.

But, I might have found something that kind of works: instead of
^\lheel (^ ensures it is above the note), I am using ^"◡". After a
quick google search, I found out there is ascii code for the lower
half of a circle. I feel like this is a good, 90% solution.

Cheers,

Brian

On Sat, Apr 20, 2024 at 11:59 PM waterhorsemusic
 wrote:
>
> Not perfect but \lheel works.
>
> HTH,
>
> Paul
>
>
>
>
> Sent from my Galaxy
>
>
>  Original message 
> From: gehent...@gmail.com
> Date: 4/20/24 1:39 PM (GMT-07:00)
> To: lilypond-user@gnu.org
> Subject: Bend
>
> Hello friends,
>
> I thought this was recently covered, but I haven't been able to find
> what I need.
>
> I'm looking for an articulation to add that will indicate a note is
> supposed to bend down, before bending back up again. Usually I see it
> looking something like an upside-down fermata, without the dot. I can
> do this in Musescore easily, but I've never found a satisfactory bend
> like this in Lilypond. I have a script for a scoop, and I know about
> \bendBefore, but not this one.
>
> Thanks!
>
> Brian
>