Re: Orchestral strings, how to organise score and parts for divisi, solos, desks etc.

2020-05-28 Thread Lib Lists
On Wed, 27 May 2020 at 18:10, Valentin Villenave wrote: > > On 5/27/20, Lib Lists wrote: > > merge the stems so > > that the final result looks like one voice. > > In that case, what you want clearly is \partcombine (\partCombine since 2.21). > > If you have more than two voices, then you can alw

Re: Adding a line break on \breve note

2020-05-28 Thread Valentin Petzel
Maybe not the easiest way, but a clean way without doing random spacing overrides would be like this.\version "2.20.0" \paper { #(set-paper-size "a4landscape") } ToninaZalmu = \key c \major FirstMusicVerse = \relative { \cadenzaOn \ToninaZalmu g'\breve e8 g a4 g \bar "|" } Ve

Re: Adding a line break on \breve note

2020-05-28 Thread Valentin Petzel
Sorry, I left an orphaned lyrics context in here.\version "2.20.0" \paper { #(set-paper-size "a4landscape") } ToninaZalmu = \key c \major FirstMusicVerse = \relative { \cadenzaOn \ToninaZalmu g'\breve e8 g a4 g \bar "|" } VerseOne = \lyricmode { \set Lyrics.stanza = "1."

Re: Replace sub-string

2020-05-28 Thread Freeman Gilmore
Arron: Just getting to this and having a problem. See below. On Sat, May 23, 2020 at 12:31 AM Aaron Hill wrote: > > On 2020-05-22 8:38 pm, Freeman Gilmore wrote: > > Is there a procedure, to replace 'all' occurrences of a sub-string > > within a string. with a string? > > If so please give an

Re: Replace sub-string

2020-05-28 Thread Aaron Hill
On 2020-05-28 4:46 am, Freeman Gilmore wrote: Just getting to this and having a problem. See below. \version "2.20.0" #(regexp-substitute/global #f "[ \t]+" "this is the test" 'pre "-" 'post) Gives: Unbound variable: regexp-substitute/global What am i missing? You will need to bri

Re: Replace sub-string

2020-05-28 Thread Freeman Gilmore
On Thu, May 28, 2020 at 8:10 AM Aaron Hill wrote: > > On 2020-05-28 4:46 am, Freeman Gilmore wrote: > > Just getting to this and having a problem. See below. > > > \version "2.20.0" > > #(regexp-substitute/global #f "[ \t]+" "this is the test" 'pre "-" > > 'post) > > > > Gives: Unbound vari

Strange error from define-syntax

2020-05-28 Thread John Schlomann
Dear Ponders & Schemers, I wanted to try creating a simple Scheme macro. I've never done this before, so I may well be going about it all wrong, but the error I get doesn't make sense. Here is a minimal non-working example: \version "2.20.0" #(use-modules (ice-9 syncase))

When (in seconds) does each page begin?

2020-05-28 Thread Matt Wallis
I would like to obtain timing information to tell me at how many seconds into the score each page begins. I have had a go at this, and failed. So I'm now looking for answers to two questions: 1. How to obtain this output from lilypond (e.g. a file listing the number of seconds into the score a

Re: Strange error from define-syntax

2020-05-28 Thread David Kastrup
"John Schlomann" writes: > Dear Ponders & Schemers, > > > > I wanted to try creating a simple Scheme macro. I've never done this before, > so I may well be going about it all wrong, but the error I get doesn't make > sense. > > > > Here is a minimal non-working example: > > > > \version "2.

RE: Strange error from define-syntax

2020-05-28 Thread John Schlomann
Thank you, David, for your quick response. I'm not sure what you mean by "stick to macros". I thought define-syntax was the way to define a macro. What am I missing? John > -Original Message- > From: David Kastrup [mailto:d...@gnu.org] > Sent: Thursday, May 28, 2020 11:54 AM > To: John Sc

Re: Strange error from define-syntax

2020-05-28 Thread Valentin Villenave
On 5/28/20, John Schlomann wrote: > Thank you, David, for your quick response. I'm not sure what you mean by > "stick to macros". I thought define-syntax was the way to define a macro. > What am I missing? I think David may have been referring to LilyPond macros; have a look at that for example:

Re: When (in seconds) does each page begin?

2020-05-28 Thread Valentin Villenave
On 5/28/20, Matt Wallis wrote: > I would like to obtain timing information to tell me at how many seconds > into the score each page begins. I have had a go at this, and failed. If you’re trying to make videos out of LilyPond scores, here are some links for you: https://lists.gnu.org/archive/html

Re: Strange error from define-syntax

2020-05-28 Thread David Kastrup
"John Schlomann" writes: > Thank you, David, for your quick response. I'm not sure what you mean by > "stick to macros". I thought define-syntax was the way to define a macro. > What am I missing? define-macro and defmacro apparently. -- David Kastrup

Re: When (in seconds) does each page begin?

2020-05-28 Thread Matt Wallis
On 28/05/2020 19:29, Valentin Villenave wrote: On 5/28/20, Matt Wallis wrote: I would like to obtain timing information to tell me at how many seconds into the score each page begins. I have had a go at this, and failed. If you’re trying to make videos out of LilyPond scores, here are some li

How to enter chords names in makam.ly

2020-05-28 Thread prosfigaki80
Hi, I am writing music including makam.ly but chords names different from natural notes are not recognized by Lilypond, so for example I can write c:m (C minor) but not cb:m (C# minor)... Anyone can help me please? -- Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

RE: Strange error from define-syntax

2020-05-28 Thread John Schlomann
define-macro works perfectly for me, even though the Guile manual seems to somewhat disparage its use. Thank you, David. John > -Original Message- > From: David Kastrup [mailto:d...@gnu.org] > Sent: Thursday, May 28, 2020 2:02 PM > To: John Schlomann > Cc: 'Lilypond-User Mailing List' >

Re: Strange error from define-syntax

2020-05-28 Thread David Kastrup
"John Schlomann" writes: > define-macro works perfectly for me, even though the Guile manual seems to > somewhat disparage its use. Well, it's not the modern Scheme way but at the current point of time LilyPond works best with Guile 1.8. -- David Kastrup

Re: When (in seconds) does each page begin?

2020-05-28 Thread Valentin Villenave
On 5/28/20, Matt Wallis wrote: > The output from event-listener is so close. I just need to get it to > listen to the appropriate events ... if that is possible. Then you should definitely have a look at the last link I sent (lilypond-html-video); IIRC it uses a Scheme engraver (so no patching Li

Re: How to enter chords names in makam.ly

2020-05-28 Thread Valentin Villenave
On 5/28/20, prosfigaki80 wrote: > Hi, I am writing music including makam.ly but chords names different from > natural notes are not recognized by Lilypond Greetings, you’re right. You can fix it by adding this at the top of your file: \include "makam.ly" #(set! language-pitch-names