Re: Duplicate marks with removed Staves (frenched)

2023-02-09 Thread Simon Albrecht
Hi Saul, On 08/02/2023 22:03, Saul Tobin wrote: Is there a reason to have the marks in a child context rather than just a simultaneous music variable? You mean the Devnull? Just convenience. It works well with the way I assemble different ChoirStaffs for different output formats and adding

Vertical arrows next to note

2023-02-09 Thread Kenneth Flak
Hi list, Before I dig myself too deep into a rabbit hole, I am sure that this is possible with much less fuss: How to draw vertical arrows pointing up or down next to a note? Attaching a screenshot of what I would like to accomplish. Best, Kenneth -- Roosna & Flak - Contemporary Dance & Music

Re: Vertical arrows next to note

2023-02-09 Thread Andrew Bernard
There's lot of code for many types of arrows on LSR. Take a look. No need to reinvent that wheel. Andrew On 9/02/2023 9:21 pm, Kenneth Flak wrote: Hi list, Before I dig myself too deep into a rabbit hole, I am sure that this is possible with much less fuss: How to draw vertical arrows point

Re: Vertical arrows next to note

2023-02-09 Thread Kenneth Flak
Hi Andrew, I was looking into the snippets, but the only ready-mades I could find are arrowheads inside a markup block and horizontal arrows as textspanners. Any search for vertical arrows comes up short (at least for me...) -- Roosna & Flak - Contemporary Dance & Music Web: roosnaflak.com Cod

Openlilylib repository

2023-02-09 Thread Andrew Bernard
I seem to have become completely detached from OLL. Where is the repository located now? The only repos I can find are last modified 6-10 years ago. Andrew

Re: Vertical arrows next to note

2023-02-09 Thread Xavier Scheuer
On Thu, 9 Feb 2023 at 11:35, Kenneth Flak wrote: > > > Hi Andrew, > > I was looking into the snippets, but the only ready-mades I could find are arrowheads inside a markup block and horizontal arrows as textspanners. > Any search for vertical arrows comes up short (at least for me...) Hello, It

Re: Openlilylib repository

2023-02-09 Thread Mark Knoop
At 21:50 on 09 Feb 2023, Andrew Bernard wrote: > I seem to have become completely detached from OLL. > Where is the repository located now? The only repos I can find are > last modified 6-10 years ago. The repositories are here. (You can sort them by last updated to see the active ones more eas

Voice for Lyrics

2023-02-09 Thread Johannes Roeßler
Hi, I'm looking how to assign the lyrics two one of two voices in one staff in the simplest way with my "normal" source code: bassVoicePart = \new Staff \with {   midiInstrument = "oboe"    \consists "Merge_rests_engraver" } { \clef bass << \bass \\ \bassII >> } \addlyrics { \verseOne } how d

Re: Voice for Lyrics

2023-02-09 Thread Johannes Roeßler
looking and trying one day - in the moment I've sent it - I found my faults... so - pls ignore.. sorry for the spam. Hi, I'm looking how to assign the lyrics two one of two voices in one staff in the simplest way with my "normal" source code: bassVoicePart = \new Staff \with {   midiInstrume

Re: Voice for Lyrics

2023-02-09 Thread Jean Abou Samra
Le jeudi 09 février 2023 à 14:04 +0100, Johannes Roeßler a écrit : > Hi, > > I'm looking how to assign the lyrics two one of two voices in one staff > in the simplest way with my "normal" source code: > bassVoicePart = \new Staff \with { >   midiInstrument = "oboe" >   

Re: Vertical arrows next to note

2023-02-09 Thread Jean Abou Samra
> Hello, > > It should be possible to use an Argpeggio with a custom stencil using > elements of arpeggioArrowDown and arpeggioBracket without protrusion. > This is beyond my current capabilities unfortunately. Something like this? ``` \version "2.24.0" arrow = #(define-event-function (dir)

How change the default spacing between staff blocks

2023-02-09 Thread mikel
Hi everyone, Just a easy question: How can we further separate the different lines that make up a score? I mean a score for a single melodic instrument. Sometimes I find the music too close together, and I wish I could change the default spacing. \version "2.24.0" violin = \relative { a b

Re: How change the default spacing between staff blocks

2023-02-09 Thread Michael Werner
The docs you want to refer to this for would be: http://lilypond.org/doc/v2.24/Documentation/notation/flexible-vertical-spacing-paper-variables#list-of-flexible-vertical-spacing-paper-variables Specifically, you want the system-system-spacing The docs explain in fair detail how those settings get

Re: Vertical arrows next to note

2023-02-09 Thread Valentin Petzel
Hello Jean, One could even get rid of the direction parameter and instead abuse the direction event property: \version "2.24.0" arrow = -\tweak stencil #ly:text-interface::print -\tweak text #(lambda (grob) (let* ((cause (ly:grob-property grob 'cause)) (dir (ly:event-pro

Re: How change the default spacing between staff blocks

2023-02-09 Thread mikel
Thanks a lot Michael! It was just what I was looking for! El 2023-02-09 20:36, Michael Werner escribió: The docs you want to refer to this for would be: http://lilypond.org/doc/v2.24/Documentation/notation/flexible-vertical-spacing-paper-variables#list-of-flexible-vertical-spacing-paper-variabl

Re: Duplicate marks with removed Staves (frenched)

2023-02-09 Thread Saul Tobin
I think the reason is that the mark engravers belong to the staff grouping context, which isn't removed along with the child staves. Structuring the code like this avoids the duplicate marks: \version "2.24.0" \layout { \context { \Score \remove Bar_number_engraver \remove Staff_col

Fun with Python...

2023-02-09 Thread Jean Abou Samra
Hi, I just want to share a little adventure. For context: I was not very satisfied with the snippet [https://lsr.di.unimi.it/LSR/Item?id=1153](https://lsr.di.unimi.it/LSR/Item?id=1153) because its interface is ``` \markup \qr-code "" ``` rather than ``` \markup \qr-code "https://my-url.com"; `

Re: Fun with Python...

2023-02-09 Thread Abraham Lee
On Thu, Feb 9, 2023 at 7:40 PM Jean Abou Samra wrote: > Hi, > > I just want to share a little adventure. > > For context: I was not very satisfied with the snippet > https://lsr.di.unimi.it/LSR/Item?id=1153 because its interface is > > \markup \qr-code "" > > rather than > > \markup \qr-code "htt

Re: Fun with Python...

2023-02-09 Thread Jeff Kopmanis
That's pretty cool, and sets a template for those who are brave/foolish enough to build extensions of all sorts in Python. Nice job! What version of Lilypond will that appear in? On Thu, Feb 9, 2023 at 9:40 PM Jean Abou Samra wrote: > Hi, > > I just want to share a little adventure. > > For co

Re: Fun with Python...

2023-02-09 Thread Paulo Matos
Jean Abou Samra writes: > while LilyPond is currently on Guile 2, so nobody can use > it yet apart from a few people who, like me, run a version > of LilyPond self-compiled with Guile 3. > What are the current blockers to moving to Guile 3? -- Paulo Matos

Re: Fun with Python...

2023-02-09 Thread Jean Abou Samra
    Le 10 févr. 2023 à 04:11, Jeff Kopmanis a écrit : What version of Lilypond will that appear in?     "That" refers to Guile 3, right? There are no plans yet. It is currently