Re: installation

2024-03-01 Thread Knute Snortum
--
Knute Snortum



On Fri, Mar 1, 2024 at 4:43 PM  wrote:

> Jean,
>
>
>
> In my \users\Mark\lilypond-2.24.4 there are six folders:
>
> Bin, etc, lib, libexec, licences, share.
>
> None contain \lilypond [with or without the .exe]
>
>
>
> Should I be looking somewhere else?
>
>
>
> Thank you for your kind attention.
>

It should be in the bin folder.  If it's not there, try re-installing
LilyPond.


installation

2024-03-01 Thread carsonmark
Jean, Knute,

 

Looked closer and found Lilypond (without the exe yet listed as an
application in the \bin.

Working correctly.

 

Thanks again for taking the time to respond.

 

Mark



RE: installation

2024-03-01 Thread carsonmark
Jean,

 

In my \users\Mark\lilypond-2.24.4 there are six folders:

Bin, etc, lib, libexec, licences, share.

None contain \lilypond [with or without the .exe]

 

Should I be looking somewhere else?

 

Thank you for your kind attention.

 

Mark

 

From: Jean Abou Samra  
Sent: Friday, March 1, 2024 4:31 PM
To: carsonm...@ca.rr.com; 'lilypond-user' 
Subject: Re: installation

 

Le vendredi 01 mars 2024 à 16:21 -0800, carsonm...@ca.rr.com 
  a écrit :

Went to \users\Mark\lilypond 2.24.3\gs

 

The program you should add is ...\lilypond(.exe), not ...\gs.



Re: installation

2024-03-01 Thread Knute Snortum
On Fri, Mar 1, 2024 at 4:28 PM Knute Snortum  wrote:

>
> I don't think you're supposed to highlight "gs".  I think it's
> "lilypond".  "gs" is probably the GhostScript executable.
>

"lilypond" should be in \users\Mark\lilypond 2.24.3\bin.


--
Knute Snortum


Re: installation

2024-03-01 Thread Jean Abou Samra
Le vendredi 01 mars 2024 à 16:21 -0800, carsonm...@ca.rr.com a écrit :
> Went to \users\Mark\lilypond 2.24.3\gs

The program you should add is ...\lilypond(.exe), not ...\gs.


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


Re: installation

2024-03-01 Thread Knute Snortum
On Fri, Mar 1, 2024 at 4:24 PM  wrote:

> Hello:
>
> What has been done:
>
> 2.24.3 downloaded
>
> 2.24.3 extracted \users\Mark
>
> Opened Frescobaldi 3.30
>
> Opened preferences
>
> Removed previous version of Lilypond
>
> Clicked Add
>
> Clicked file opener
>
> Went to \users\Mark\lilypond 2.24.3\gs
>
> Highlighted “gs”
>
> Clicked open
>
>
>
>
>
> Notice the “9.56.1”.
> This seems to prevent Frescobaldi from opening the {c’1} test as indicated
> in the manual.
>
>
>
> My error?
>

I don't think you're supposed to highlight "gs".  I think it's "lilypond".
"gs" is probably the GhostScript executable.


--
Knute Snortum


installation

2024-03-01 Thread carsonmark
Hello:

What has been done:

2.24.3 downloaded

2.24.3 extracted \users\Mark

Opened Frescobaldi 3.30

Opened preferences

Removed previous version of Lilypond

Clicked Add

Clicked file opener

Went to \users\Mark\lilypond 2.24.3\gs

Highlighted "gs"

Clicked open

 





Notice the "9.56.1".
This seems to prevent Frescobaldi from opening the {c'1} test as indicated
in the manual.

 

My error?

 

Thank you.

 

Mark

 



Re: extracting a single “vocal line” (including lyrics) from multiple variables

2024-03-01 Thread Simon Albrecht

Hi Kieren,

On 29.02.24 15:42, Kieren MacMillan wrote:

I didn’t see an issue/request for quoting lyrics, so I added one 
(https://gitlab.com/lilypond/lilypond/-/issues/6700) and we’ll see how the 
discussion goes.  :)


I was curious and tried, and in fact you can quote lyrics perfectly 
well. It’s just that of course the quoting logic is based on durations, 
so I think explicit durations are unavoidable:


%%%
\version "2.25.12"

sopranoNotes = {
  4 4 8 8 4
}
\addQuote "sopranoNotes" \sopranoNotes
sopranoLyrics = \lyricmode {
  is4 this all8 the text?4
}
\addQuote "sopranoLyrics" \sopranoLyrics
altoNotes = {
  8 8 4 \quoteDuring "sopranoNotes" s2
}
altoLyrics = \lyricmode {
  no,8 it’s not4 \quoteDuring "sopranoLyrics" \notemode { s4 } text!4
}

\score {
  <<
    \new Staff \new Voice \sopranoNotes
    \new Lyrics \sopranoLyrics
    \new Staff \new Voice \altoNotes
    \new Lyrics \altoLyrics
  >>
}


Best, Simon

PS. I’ll add this to the issue right away while I’m at it.



Re: extracting a single “vocal line” (including lyrics) from multiple variables

2024-03-01 Thread David Kastrup
Simon Albrecht  writes:

> The downside of that is that I cannot add more tags to those groups on
> the fly, and always have to add them directly to the library file.)

Suggestions for a user interface to do that?

-- 
David Kastrup



Re: extracting a single “vocal line” (including lyrics) from multiple variables

2024-03-01 Thread Simon Albrecht

On 29.02.24 15:42, Kieren MacMillan wrote:

use both \keepWithTag_and_  \removeWithTag like this:


text = \lyricmode {
   \tag A { on -- ly al -- to }
   \tag nA { ev’ -- ry -- one ex -- cept al -- to }
}

#mindblown

Why didn’t I think of using set theory?!
THANK YOU! That hint alone makes your response gold.


Not that I think you need the hint, but for the record I might have 
included nesting tag commands in the example, where the technique begins 
to shine especially:


\text = \lyricmode {
  \tag S,A { on -- ly \tag nA { ve -- ry } high voi -- ces }
  \tag nT {
    ev’ -- ry -- one ex -- cept te -- nor
    \tag nY { now just S, A, B if this is five -- part mu -- sic }
  }
}

Yours, Simon



Re: extracting a single “vocal line” (including lyrics) from multiple variables

2024-03-01 Thread Simon Albrecht

Hi David,

On 29.02.24 15:54, David Kastrup wrote:

I'd rather use

\tagGroup alto,non-alto

\lyricmode {
   \tag alto { on -- ly al -- to }
   \tag non-alto { ev’ -- ry -- one ex -- cept al -- to }
}

\keepWithTag alto ...
\keepWithTag non-alto ...

But one would need to look at the rest to see whether this kind of tag
group would end up problematic.


I understand that using a single capital letter is navigating through a 
kind of small gap of available names in the namespace. But the 
advantages for both typing and reading (capital letters stand out, lines 
of code are shorter) are significant enough to me.


So far I’ve used S,A,T,B, plus M and Y for mezzosoprano and bar‘y’tone 
(voice types), plus Q for Quintus in five-part ancient music. I don’t 
think those are likely to collide with other uses as long as I reserve 
them within my personal code base, right?


(As a sidenote, since it doesn’t actually include those single-letter 
tags: In case anyone is interested, I attach a library file that via 
standard-include.ily gets used for practically all my projects now and 
defines a standard set of available tag groups. The downside of that is 
that I cannot add more tags to those groups on the fly, and always have 
to add them directly to the library file.)


Best, Simon\version "2.23.5"

\tagGroup
solo,
sop,sOne,sTwo,sThree,sFour,sOneB,
mez,mezOne,mezTwo,
alt,aOne,aTwo,aThree,aFour,
ten,tOne,tTwo,tThree,tFour,
bari,bariOne,bariTwo,
bass,bOne,bTwo,bThree,bFour
\tagGroup
nsolo,
nsop,nsOne,nsTwo,nsThree,nsFour,nsOneB,
nmez,nmezOne,nmezTwo,
nalt,naOne,naTwo,naThree,naFour,
nten,ntOne,ntTwo,ntThree,ntFour,
nbari,nbariOne,nbariTwo,
nbass,nbOne,nbTwo,nbThree,nbFour

\tagGroup
score,
score-single-choir,
score-double-choir,
score-similar-parts,
extract-single-choir,
extract-double-choir,
extract-similar-parts,
part,
parts-similar

\tagGroup
transposed,untransposed

Re: Make D.S. and Coda objects RED

2024-03-01 Thread Kieren MacMillan
Hi all,

> I put them in the "global" section of my creation:
> 
> global = {
>  \time 2/2
>  \tempo 4=200
>  \compressEmptyMeasures\override MultiMeasureRest.expand-limit = #2
>  \override Score.CodaMark.color = "tomato"
>  \override Score.SegnoMark.color = "tomato"
>  \override Score.SectionLabel.color = "tomato"
>  %\override Score.RehearsalMark.color = "tomato"
>  \override Score.JumpScript.color = "tomato"
>  \set Score.rehearsalMarkFormatter = #format-mark-box-alphabet
> }

If this is a thing you do regularly, you might want to build an include file 
(e.g., Score_init.ily) and do this:

\layout {
  \context {
\Score
\compressEmptyMeasures
MultiMeasureRest.expand-limit = #2
CodaMark.color = "tomato"
SegnoMark.color = "tomato"
SectionLabel.color = "tomato"
% RehearsalMark.color = "tomato"
JumpScript.color = "tomato"
rehearsalMarkFormatter = #format-mark-box-alphabet
  }
}

and then just 

\include "Score_init.ily"

in your main files.

Hope this helps!
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: Make D.S. and Coda objects RED

2024-03-01 Thread Laurie Savage
Glad it worked! I’ll have a look at tomato.

Laurie


On Fri, 1 Mar 2024 at 7:23 pm,  wrote:

> Thank you, Laurie!
>
> It took a little experimenting, but your overrides worked. I put them
> in the "global" section of my creation:
>
> global = {
>   \time 2/2
>   \tempo 4=200
>   \compressEmptyMeasures\override MultiMeasureRest.expand-limit = #2
>   \override Score.CodaMark.color = "tomato"
>   \override Score.SegnoMark.color = "tomato"
>   \override Score.SectionLabel.color = "tomato"
>   %\override Score.RehearsalMark.color = "tomato"
>   \override Score.JumpScript.color = "tomato"
>   \set Score.rehearsalMarkFormatter = #format-mark-box-alphabet
> }
>
> And, I find "tomato" to not be nearly as jarring of a color.
>
> Cheers!
>
> Brian
>
> On Fri, Mar 1, 2024 at 8:29 AM Laurie Savage 
> wrote:
> >
> > I wrote this little block; feel free to use it. I have started to work
> out the Internals Reference document (IR), it's slowly becoming useful!
> >
> > jazzTweaks = {
> >   \compressEmptyMeasures
> >   \override MultiMeasureRest.expand-limit = #2
> >   \override Score.CodaMark.color = "red"
> >   \override Score.SegnoMark.color = "red"
> >   \override Score.SectionLabel.color = "red"
> >   \override Score.RehearsalMark.color = "red"
> >   \override Score.JumpScript.color = "red"
> > }
> > Laurie Savage
> > https://www.queensofthewest.com/
> >
> > On Fri, 1 Mar 2024 at 04:15, Jeff Kopmanis  wrote:
> >>
> >> \mark \markup { \with-color #red "Whatever" }
> >>
> >> This is what I've been using for a few months now...works great.
> Basically, use the with-color modifier in whatever markup expression you
> have.
> >>
> >> On Thu, Feb 29, 2024 at 12:12 PM  wrote:
> >>>
> >>> Hello,
> >>>
> >>> A friend did an arrangement in MuseScore in which he made the D.S.
> >>> symbols red, which I think is a great idea for our band.
> >>>
> >>> I found how to color certain objects, such as with:
> >>>
> >>>   \override Staff.TimeSignature.color = #(rgb-color 1 0 0)
> >>>
> >>> but I have yet to find the names of the objects I'm hoping to change.
> >>>
> >>> Does anyone have an idea?
> >>>
> >>> Thank you
> >>>
> >>
> >>
> >> --
> >> Jeff Kopmanis
> >> Medium: https://kopmanis.medium.com
> >> GLAAC: https://www.glaac.org/
> >> University Lowbrow Astronomers: http://umich.edu/~lowbrows
> >> Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/
> >>
> >> ** Go Green and leave this email on the Screen! **
>


Re: Make D.S. and Coda objects RED

2024-03-01 Thread gehentogo
Thank you, Laurie!

It took a little experimenting, but your overrides worked. I put them
in the "global" section of my creation:

global = {
  \time 2/2
  \tempo 4=200
  \compressEmptyMeasures\override MultiMeasureRest.expand-limit = #2
  \override Score.CodaMark.color = "tomato"
  \override Score.SegnoMark.color = "tomato"
  \override Score.SectionLabel.color = "tomato"
  %\override Score.RehearsalMark.color = "tomato"
  \override Score.JumpScript.color = "tomato"
  \set Score.rehearsalMarkFormatter = #format-mark-box-alphabet
}

And, I find "tomato" to not be nearly as jarring of a color.

Cheers!

Brian

On Fri, Mar 1, 2024 at 8:29 AM Laurie Savage  wrote:
>
> I wrote this little block; feel free to use it. I have started to work out 
> the Internals Reference document (IR), it's slowly becoming useful!
>
> jazzTweaks = {
>   \compressEmptyMeasures
>   \override MultiMeasureRest.expand-limit = #2
>   \override Score.CodaMark.color = "red"
>   \override Score.SegnoMark.color = "red"
>   \override Score.SectionLabel.color = "red"
>   \override Score.RehearsalMark.color = "red"
>   \override Score.JumpScript.color = "red"
> }
> Laurie Savage
> https://www.queensofthewest.com/
>
> On Fri, 1 Mar 2024 at 04:15, Jeff Kopmanis  wrote:
>>
>> \mark \markup { \with-color #red "Whatever" }
>>
>> This is what I've been using for a few months now...works great.  Basically, 
>> use the with-color modifier in whatever markup expression you have.
>>
>> On Thu, Feb 29, 2024 at 12:12 PM  wrote:
>>>
>>> Hello,
>>>
>>> A friend did an arrangement in MuseScore in which he made the D.S.
>>> symbols red, which I think is a great idea for our band.
>>>
>>> I found how to color certain objects, such as with:
>>>
>>>   \override Staff.TimeSignature.color = #(rgb-color 1 0 0)
>>>
>>> but I have yet to find the names of the objects I'm hoping to change.
>>>
>>> Does anyone have an idea?
>>>
>>> Thank you
>>>
>>
>>
>> --
>> Jeff Kopmanis
>> Medium: https://kopmanis.medium.com
>> GLAAC: https://www.glaac.org/
>> University Lowbrow Astronomers: http://umich.edu/~lowbrows
>> Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/
>>
>> ** Go Green and leave this email on the Screen! **