Lilypond Engraved American Soundscape Vol. 1

2021-10-20 Thread Carlos R Martinez
To all of you lilypond users! And developers we want to say thank you!

Lilypond was the engraver tool for our first book release!!!

https://www.essentialmusic.org/product/american-soundscape-vol-1-for-violin-and-piano/

So! Thank you again! We love you all!


Carlos R Martínez
270.850.5650
Essential Music LLC
essentialmusic.org



Re: ANN: Spontini-Editor 1.0 released

2021-10-20 Thread Saul Tobin
Got it, thanks.

This particular project is quite large and can't be updated past 2.18 due
to a change in the behavior of staff changing during part combining, which
breaks the method I use for managing wind staves. I'm not aware of a way to
accomplish comparable functionality in 2.19 or newer. I spent a few months
a couple years ago trying to write a patch but I eventually gave up.

On Tue, Oct 19, 2021, 12:15 AM Paolo Prete  wrote:

> Hello Valentin,
>
> porting the scheme/LilyPond functions used by Spontini-Editor, in its
> internal library, from 2.18 to 2.19, would not complete the compatibility.
> In fact, the editor relies on the SVG code generation too, which had
> changes during these years of LilyPond development.
> Therefore, the only way that Saul could use to accomplish what he asked,
> is to convert his score from 2.18 to >=2.19.84 and then feed
> Spontini-Editor with the converted score.
>
>
> Best,
> P
>
>
>
> On Tuesday, October 19, 2021, Valentin Petzel  wrote:
>
>> Hello Saul,
>>
>> in many cases a 2.23 ly file will be compatible with a 2.18 Lilypond.
>>
>> The only problematic cases should be when Spontini uses overrides that
>> did not exist in 2.18 (which shouldn't be that many) or if you are using
>> music function that have changes names or syntax, which can also be amended
>> by renaming the new ones to old ones or creating wrapper music functions,
>> so you can have a few definitions that can simply be removed for 2.18.
>>
>> But is there any reason for using such an old Lilypond version?
>>
>> Cheers,
>> Valentin
>>
>> 19.10.2021 01:39:59 Saul Tobin :
>>
>> > Any possibility of using this with a Lilypond 2.18 project?
>> >
>>
>>


Re: Asterisk before first syllable of verse

2021-10-20 Thread Carl Sorensen
"*Vo" will put the asterisk before the first Syllable.

Sent via the Samsung Galaxy S®6 active, an AT 4G LTE smartphone
Get Outlook for Android

From: lilypond-user  
on behalf of Kira Garvie 
Sent: Wednesday, October 20, 2021 5:48:25 PM
To: Lilypond-User Mailing List 
Subject: Asterisk before first syllable of verse

Hello all! I need there to be an asterisk before the first syllable of this 
verse, but I can't figure out how to make it work with also keeping the 
hyphenation of the word, and not bumping all the lyrics over one syllable... 
also, I dont use the \addLyrics command because the text and the music are 
actually saved as separate files and the command to combine them is elsewhere.


StanzaSix = \lyricmode {

\set stanza = "2."

\set language = "es"

\override StanzaNumber #'font-shape = #'italic

\override LyricText #'font-shape = #'italic

Vo -- so -- tros hi -- jos de~Is -- ra -- el,



Thank you!


Re: Asterisk before first syllable of verse

2021-10-20 Thread Fernando Gil
Does this help?


You'll need also to adjust to match your preference for that syllable

\once \override LyricText.self-alignment-X = #LEFT


StanzaSix = \lyricmode {

\set stanza = "2."

\set language = "es"

\override StanzaNumber #'font-shape = #'italic

\override LyricText #'font-shape = #'italic

\markup \concat {* \hspace #0.5 Vo} -- so -- tros hi -- jos de~Is -- ra --
el,

}





El mié., 20 de octubre de 2021 6:49 p. m., Kira Garvie 
escribió:

> Hello all! I need there to be an asterisk before the first syllable of
> this verse, but I can't figure out how to make it work with also keeping
> the hyphenation of the word, and not bumping all the lyrics over one
> syllable... also, I dont use the \addLyrics command because the text and
> the music are actually saved as separate files and the command to combine
> them is elsewhere.
>
> StanzaSix = \lyricmode {
>
> \set stanza = "2."
>
> \set language = "es"
>
> \override StanzaNumber #'font-shape = #'italic
>
> \override LyricText #'font-shape = #'italic
>
> Vo -- so -- tros hi -- jos de~Is -- ra -- el,
>
>
>
> Thank you!
>


Asterisk before first syllable of verse

2021-10-20 Thread Kira Garvie
Hello all! I need there to be an asterisk before the first syllable of this
verse, but I can't figure out how to make it work with also keeping the
hyphenation of the word, and not bumping all the lyrics over one
syllable... also, I dont use the \addLyrics command because the text and
the music are actually saved as separate files and the command to combine
them is elsewhere.

StanzaSix = \lyricmode {

\set stanza = "2."

\set language = "es"

\override StanzaNumber #'font-shape = #'italic

\override LyricText #'font-shape = #'italic

Vo -- so -- tros hi -- jos de~Is -- ra -- el,



Thank you!


Re: How to merge three voices

2021-10-20 Thread Knute Snortum
Hi everyone,

Just for reference, what I was looking for is:

\override NoteColumn.ignore-collision = ##t

Putting that in one of the voices that needs a three-way merge solved
the problem.

--
Knute Snortum
\version "2.22.1"
\language "english"

staffUp   = \change Staff = "upper"
staffDown = \change Staff = "lower"

global = {
  \time 6/8
  \key ef \minor
}

rightHandUpper = \relative {
  \override NoteColumn.ignore-collision = ##t
  gf'4._~ gf4 f16 ef |
  bf'4. 
}

rightHandLower = \relative {
  s4. s4 s16 \hideNotes ef'~ \unHideNotes |
  ef2
}

rightHand = <<
  \global
  \new Voice { \voiceOne \rightHandUpper }
  \new Voice { \voiceTwo \rightHandLower }
>>

leftHandUpper = \relative {
  bf16-2 cf-1 a-3 cf-1 bf-2 gf-4  bf cf a cf bf \staffUp \voiceTwo ef |
  \staffDown \voiceThree cf16
}

leftHandLower = \relative {
  ef2. |
  f2. |
}

leftHand = <<
  \global
  \clef bass
  \new Voice { \voiceThree \leftHandUpper }
  \new Voice { \voiceFour \leftHandLower }
>>

\score {
  \new PianoStaff <<
\new Staff = "upper" \rightHand
\new Staff = "lower" \leftHand
  >>
}