Re: Need help creating Scheme functions to automate includes of many scores in a project

2018-06-25 Thread Urs Liska
Am 25.06.2018 um 21:19 schrieb Nah: I have a project with 100+ scores, each in their own file. I tried to create a Scheme function to \include each of them. After searching the archive, I got the general idea of why my solution isn't working. However, I didn't find something like a snippet

Re: Need help creating Scheme functions to automate includes of many scores in a project

2018-06-25 Thread Urs Liska
Am 26.06.2018 um 01:25 schrieb Aaron Hill: On 2018-06-25 15:51, David Kastrup wrote: Nah writes: I have a project with 100+ scores, each in their own file. I tried to create a Scheme function to \include each of them. After searching the archive, I got the general idea of why my solution

\bookparts and scaling

2018-06-25 Thread crimsonsunrise
After some searching and some dead ends (due to the fact that the standard lilypond snippet site doesn't open in qutebrowser), I can't seem to find a way of solving this one. I'm trying to get a single pdf with all different parts of the main score and the main score. After some testing done

Re: scheme with Frescobaldi

2018-06-25 Thread Andrew Bernard
Hi Freeman, I'm not understanding this thread. For Scheme development or learning, why wouldn't you use a command line REPL, such as the one provided with guile? Are you trying to use Frescobaldi as some sort of IDE? That seems dubious to me, and not at all fluent or easy. Andrew

Re: scheme with Frescobaldi

2018-06-25 Thread Freeman Gilmore
​ On Mon, Jun 25, 2018 at 9:02 PM, Aaron Hill wrote: > On 2018-06-25 17:25, Freeman Gilmore wrote: > >> On Mon, Jun 25, 2018 at 9:29 AM, Urs Liska wrote: >>> Try this file: \version "2.19.80" #(let ((something 'something-else)) (display something)

Re: CueVoice issues.

2018-06-25 Thread David Wright
On Mon 25 Jun 2018 at 21:03:34 (-0400), crimsonsunr...@protonmail.com wrote: > Mensagem Original > Ativo 25 de jun de 2018 16:51, David Wright escreveu: > > On Mon 25 Jun 2018 at 14:25:18 (-0400), crimsonsunr...@protonmail.com wrote: > > (version statement omitted, as the bug

Re: Need help creating Scheme functions to automate includes of many scores in a project

2018-06-25 Thread Vaughan McAlley
On 26 June 2018 at 05:19, Nah wrote: > I have a project with 100+ scores, each in their own file. I tried to create > a Scheme function to \include each of them. After searching the archive, I > got the general idea of why my solution isn't working. However, I didn't > find something like a

Re: CueVoice issues.

2018-06-25 Thread crimsonsunrise
Mensagem Original Ativo 25 de jun de 2018 16:51, David Wright escreveu: On Mon 25 Jun 2018 at 14:25:18 (-0400), crimsonsunr...@protonmail.com wrote: > (version statement omitted, as the bug happens in both stable and unstable) > multiQuote = \relative c'' > { > > { \voiceOne c4

Re: scheme with Frescobaldi

2018-06-25 Thread Aaron Hill
On 2018-06-25 17:25, Freeman Gilmore wrote: On Mon, Jun 25, 2018 at 9:29 AM, Urs Liska wrote: Try this file: \version "2.19.80" #(let ((something 'something-else)) (display something) (newline) (display something)(display something)) In you first example #(let...) what function

Re: scheme with Frescobaldi

2018-06-25 Thread Freeman Gilmore
​ On Mon, Jun 25, 2018 at 4:04 PM, Urs Liska wrote: > CCing to the list. > > Am 25.06.2018 um 21:47 schrieb Freeman Gilmore: > > > > On Mon, Jun 25, 2018 at 9:29 AM, Urs Liska wrote: > >> Hi Freeman, >> >> Am 25.06.2018 um 15:03 schrieb Freeman Gilmore: >> >> ​Can scheme alone be used in

RE: Bar number position and text (especially for anacruses)

2018-06-25 Thread andrew.bernard
Hi Steve, Re point 3: You can do this: \once \set Score.barNumberFormatter = #(lambda (bar-number measure-position alternative-number extra) (markup "pickup")) But note that the length of the text in this case is problematic.

Re: Need help creating Scheme functions to automate includes of many scores in a project

2018-06-25 Thread Aaron Hill
On 2018-06-25 15:51, David Kastrup wrote: Nah writes: I have a project with 100+ scores, each in their own file. I tried to create a Scheme function to \include each of them. After searching the archive, I got the general idea of why my solution isn't working. However, I didn't find something

RE: Bar number position and text (especially for anacruses)

2018-06-25 Thread andrew.bernard
Hi Steve, Not nitpicking, but in 2.19.82 at least, 'staff' must be 'Staff'. A warning is issued if not. I can verify the same horizontal alignment issue with the (1) in the partial bar exists in 2.19.82. Could this be a bug? I'm not sure. Andrew

Re: Need help creating Scheme functions to automate includes of many scores in a project

2018-06-25 Thread David Kastrup
Nah writes: > I have a project with 100+ scores, each in their own file. I tried to > create a Scheme function to \include each of them. After searching the > archive, I got the general idea of why my solution isn't > working. However, I didn't find something like a snippet that I could > coax

Re: scheme variable name in lilypond

2018-06-25 Thread David Kastrup
Gianmaria Lari writes: > On Mon, 25 Jun 2018 at 23:37, Thomas Morley > wrote: > >> 2018-06-25 23:31 GMT+02:00 Gianmaria Lari : >> > Is there any way to refer a scheme variable containing numbers in the >> name, >> > in lilypond? >> > >> > For example, if I write: >> > >> > #(define duration32

Re: variable of type finger

2018-06-25 Thread David Kastrup
Gianmaria Lari writes: > On Mon, 25 Jun 2018 at 22:44, David Kastrup wrote: >> >> #(display #{ \finger "3" #}) >> >> compiles just fine even if its output is not particularly legible. >> > > The problem was " wherever you can put Scheme expressions" I tried > to use it where lilypond

Need help creating Scheme functions to automate includes of many scores in a project

2018-06-25 Thread Nah
I have a project with 100+ scores, each in their own file. I tried to create a Scheme function to \include each of them. After searching the archive, I got the general idea of why my solution isn't working. However, I didn't find something like a snippet that I could coax into what I want. I

Re: scheme variable name in lilypond

2018-06-25 Thread Gianmaria Lari
On Mon, 25 Jun 2018 at 23:37, Thomas Morley wrote: > 2018-06-25 23:31 GMT+02:00 Gianmaria Lari : > > Is there any way to refer a scheme variable containing numbers in the > name, > > in lilypond? > > > > For example, if I write: > > > > #(define duration32 (ly:make-duration (ly:intlog2 32))) > >

Re: scheme variable name in lilypond

2018-06-25 Thread Thomas Morley
2018-06-25 23:31 GMT+02:00 Gianmaria Lari : > Is there any way to refer a scheme variable containing numbers in the name, > in lilypond? > > For example, if I write: > > #(define duration32 (ly:make-duration (ly:intlog2 32))) > > duration32 is a valid scheme variable name. But this is not a valid

scheme variable name in lilypond

2018-06-25 Thread Gianmaria Lari
Is there any way to refer a scheme variable containing numbers in the name, in lilypond? For example, if I write: #(define duration32 (ly:make-duration (ly:intlog2 32))) duration32 is a valid scheme variable name. But this is not a valid lilypond variable name. Is there any way to access it

Re: variable of type finger

2018-06-25 Thread Gianmaria Lari
On Mon, 25 Jun 2018 at 22:44, David Kastrup wrote: > Gianmaria Lari writes: > > > On Mon, 25 Jun 2018 at 15:49, David Kastrup wrote: > > > >> Gianmaria Lari writes: > >> > >> > This code define a variable containing a duration and the use it: > >> > > >> > \version "2.19.81" > >> > #(define

Re: Chord mode question

2018-06-25 Thread Kieren MacMillan
Hi Carl, > The GSOC project got done, and would have resolved this. Wonderful news! Thanks for letting us know. I’ll search around the dev list (etc.) to see if I can figure out everything that got done. > However, there were some issues in getting it merged, and the student stopped >

Re: Accidental style in presence of mid-bar line breaks.

2018-06-25 Thread Simon Albrecht
On 25.06.2018 13:25, Richard Shann wrote: In 18th c. mss and prints it is quite common to create line breaks during bars - I've found this much improves the legibility of some florid slow movements. However, it seems that the available accidental styles only take account of barlines and ignore

Re: Chord mode question

2018-06-25 Thread Carl Sorensen
On 6/25/18, 12:13 PM, "Kieren MacMillan" wrote: Hello, > I thought there might be a way to obtain that same result for the first chord without the risk of ambiguity, i.e. other chords with notes removed may end up as in customChordExceptions too. Understood. Hopefully

Re: Change number of measures per page globally

2018-06-25 Thread Simon Albrecht
On 25.06.2018 15:57, Federico Bruni wrote: system-count will set the numbers of bars per system. …on average, but I understood the request to ask for exactly the same number (for whatever reason that might be sensible…) Best, Simon ___

Re: variable of type finger

2018-06-25 Thread David Kastrup
Gianmaria Lari writes: > On Mon, 25 Jun 2018 at 15:49, David Kastrup wrote: > >> Gianmaria Lari writes: >> >> > This code define a variable containing a duration and the use it: >> > >> > \version "2.19.81" >> > #(define myDuration (ly:make-duration 4 0)) >> > { a\myDuration} >> > >> > >> > I

Re: variable of type finger

2018-06-25 Thread Gianmaria Lari
On Mon, 25 Jun 2018 at 15:49, David Kastrup wrote: > Gianmaria Lari writes: > > > This code define a variable containing a duration and the use it: > > > > \version "2.19.81" > > #(define myDuration (ly:make-duration 4 0)) > > { a\myDuration} > > > > > > I can do something similar wit

Re: scheme with Frescobaldi

2018-06-25 Thread Urs Liska
CCing to the list. Am 25.06.2018 um 21:47 schrieb Freeman Gilmore: On Mon, Jun 25, 2018 at 9:29 AM, Urs Liska > wrote: Hi Freeman, Am 25.06.2018 um 15:03 schrieb Freeman Gilmore: ​Can scheme alone be used in Frescobaldi (or scheme sandbox)?

Re: CueVoice issues.

2018-06-25 Thread David Wright
On Mon 25 Jun 2018 at 14:25:18 (-0400), crimsonsunr...@protonmail.com wrote: > (version statement omitted, as the bug happens in both stable and unstable) > multiQuote = \relative c'' > { > << > { \voiceOne c4 d e f } \\ { \voiceTwo a4 b c e } > >> > } > > singleQuote = \relative c'' > { > bis4 c

Re: Repeat question

2018-06-25 Thread Torsten Hämmerle
Ok, when looking at the XML data, I'll have to admit that Finale, Musescore and Sibelius (just tested it) are closer to the XML reality, whereas LilyPond fills in missing parts. Import into Sibelius: But I think there's

Re: Repeat question

2018-06-25 Thread Jacques Menu Muzhic
Thanks Torsten! For completeness, here is the MusicXML data. It’s interesting to observe that MusicXML import is not done the same way by different tools, hence my post. JM -- http://www.musicxml.org/dtds/partwise.dtd;> Nested repeats, each with alternative

CueVoice issues.

2018-06-25 Thread crimsonsunrise
(version statement omitted, as the bug happens in both stable and unstable) multiQuote = \relative c'' { << { \voiceOne c4 d e f } \\ { \voiceTwo a4 b c e } >> } singleQuote = \relative c'' { bis4 c d e | } main = \relative c' { c1 | d1 | \new CueVoice { \multiQuote } a1 | \new CueVoice {

Re: Change number of measures per page globally

2018-06-25 Thread Kieren MacMillan
Hi all, > Maybe David Nalesnik's `bars-per-line-systems-per-page-engraver` is of > some help. Or David K's "bar-keeper": http://lists.gnu.org/archive/html/lilypond-user/2016-06/msg00239.html Cheers, Kieren. Kieren MacMillan, composer ‣ website:

Re: Change number of measures per page globally

2018-06-25 Thread Thomas Morley
2018-06-24 19:45 GMT+02:00 : > I looked all over the documentation and couldn't find anything close to > that, other than manually inserting page breaks on each part that composes a > score, which is time comsuming and...I don't want every single staff to have > the same number of measures per

Re: Chord mode question

2018-06-25 Thread Kieren MacMillan
Hello, > I thought there might be a way to obtain that same result for the first chord > without the risk of ambiguity, i.e. other chords with notes removed may end > up as in customChordExceptions too. Understood. Hopefully one day soon, there will be an easy way to get even more granular

Re: Cannot PNG capture with Frescobaldi macOS 10.13.5

2018-06-25 Thread Joshua Nichols
Hi David, I'll look into GraphicsMagick. Thanks! -- Josh On Sat, Jun 23, 2018 at 12:22 AM, David Wright wrote: > On Fri 22 Jun 2018 at 13:15:36 (-0400), Joshua Nichols wrote: > > I think you miss it because the functionality is within Frescobaldi > itself. > > It's run in the preview, and it

Re: Repeat question

2018-06-25 Thread Torsten Hämmerle
Hello Jacques, Without knowing the original MusicXML file, the LilyPond solution looks much more like a standard volta repeat with alternatives than the Finale/Musescore output. In any case, nested or not, a repeat barline will have to be set between adjacent volta brackets. Finale/Musescore

Repeat question

2018-06-25 Thread Menu Jacques
Hello folks, I have a MusicXML file that displays differently with musicxml2ly: than with MuseScore or Finale: In order to obtain the same score a MuseScore or Finale, I have to uncomment the enclosing \repeat in the code. Is it right then that there are two nested repeats in such a

Re: Change number of measures per page globally

2018-06-25 Thread Kieren MacMillan
Hi, > The lack of documentation on both how to use and how to set up these tools is > what puts me off into using them. That’s definitely too bad. They’re really easy to set up, and the example files are pretty easy to copy/adapt. Hopefully one day the documentation will be more to your

Re: Change number of measures per page globally

2018-06-25 Thread crimsonsunrise
On June 25, 2018 11:09 AM, Urs Liska wrote: > Am 24.06.2018 um 19:45 schriebcrimsonsunr...@protonmail.com: > > > I looked all over the documentation and couldn't find anything close > > > > to that, other than manually inserting page breaks on each part that > > > > composes a score, which is

Re: Change number of measures per page globally

2018-06-25 Thread Urs Liska
Am 24.06.2018 um 19:45 schrieb crimsonsunr...@protonmail.com: I looked all over the documentation and couldn't find anything close to that, other than manually inserting page breaks on each part that composes a score, which is time comsuming and...I don't want every single staff to have the

Re: Change number of measures per page globally

2018-06-25 Thread Federico Bruni
Il giorno dom 24 giu 2018 alle 19:45, crimsonsunr...@protonmail.com ha scritto: I looked all over the documentation and couldn't find anything close to that, other than manually inserting page breaks on each part that composes a score, which is time comsuming and...I don't want every

Re: Accidental style in presence of mid-bar line breaks.

2018-06-25 Thread Richard Shann
On Mon, 2018-06-25 at 13:53 +0200, David Kastrup wrote: > Richard Shann writes: > > > In 18th c. mss and prints it is quite common to create line breaks > > during bars - I've found this much improves the legibility of some > > florid slow movements. > > > > However, it seems that the available

Re: variable of type finger

2018-06-25 Thread David Kastrup
Gianmaria Lari writes: > This code define a variable containing a duration and the use it: > > \version "2.19.81" > #(define myDuration (ly:make-duration 4 0)) > { a\myDuration} > > > I can do something similar wit fingering: > > \version "2.19.81" > myFinger = \finger "3" > { a\myFinger} > > >

variable of type finger

2018-06-25 Thread Gianmaria Lari
This code define a variable containing a duration and the use it: \version "2.19.81" #(define myDuration (ly:make-duration 4 0)) { a\myDuration} I can do something similar wit fingering: \version "2.19.81" myFinger = \finger "3" { a\myFinger} How can I rewrite the previous myFinger =

Re: scheme with Frescobaldi

2018-06-25 Thread Urs Liska
Hi Freeman, Am 25.06.2018 um 15:03 schrieb Freeman Gilmore: ​Can scheme alone be used in Frescobaldi (or scheme sandbox)? It's not clear to me what you want ot achieve. The Scheme sandbox is surely not available in Frescobaldi. You can of course write LilyPond files that exclusively

scheme with Frescobaldi

2018-06-25 Thread Freeman Gilmore
​Can scheme alone be used in Frescobaldi (or scheme sandbox)? thank you, ƒg ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Catch possible non-rhythmic-event music expressions

2018-06-25 Thread Urs Liska
Hi, I'm working on a music-function that takes one music argument, determines the type of music and dispatches to a styling function that will apply either a \tweak, a \once \override or that will wrap the music in \temporary \override / \revert expressions. I got pretty far in the

Re: Accidental style in presence of mid-bar line breaks.

2018-06-25 Thread David Kastrup
Richard Shann writes: > In 18th c. mss and prints it is quite common to create line breaks > during bars - I've found this much improves the legibility of some > florid slow movements. > > However, it seems that the available accidental styles only take > account of barlines and ignore line

Accidental style in presence of mid-bar line breaks.

2018-06-25 Thread Richard Shann
In 18th c. mss and prints it is quite common to create line breaks during bars - I've found this much improves the legibility of some florid slow movements. However, it seems that the available accidental styles only take account of barlines and ignore line breaks, which is not very practical,

Release of 2.19.82

2018-06-25 Thread Phil Holmes
I'm happy to announce the release of LilyPond 2.19.82. This release is a further pre-release test version for the upcoming stable 2.20 release. If you require a stable version of LilyPond, we recommend using the 2.18 version. -- Phil Holmes ___