Re: draw box around score

2024-03-22 Thread Leo Correia de Verdier
Sorry, I got a fudged quote-apostrophe in last answer. It should be: \markup \box \score { c'1 } > 22 mars 2024 kl. 15:06 skrev Leo Correia de Verdier > : > > Hi Joop! > > Do you mean something like > \markup \box \score { c’1 } > > HTH > /Leo > >> 22 mars 2024 kl. 14:40 skrev Go77 : >> >>

Re: Point and click - permission denied

2024-03-22 Thread Tom Brennan
BTW, for what it's worth it does still seem to be an apparmor issue. The output from dmesg is ``` [ 8087.871623] audit: type=1400 audit(177091.247:143): apparmor="DENIED" operation="exec" profile="/usr/bin/evince" name="/usr/local/bin/lilypond-wrapper.guile" pid=65082 comm="sh"

Re: draw box around score

2024-03-22 Thread Leo Correia de Verdier
Hi Joop! Do you mean something like \markup \box \score { c’1 } HTH /Leo > 22 mars 2024 kl. 14:40 skrev Go77 : > >  > Hi all, > > I tried to find how to draw a box around a piece of music. Looked through the > manual, snippets etc, but didn't find out how to do this yet. See below what > I

Tie an afterGrace note produces warning

2024-03-22 Thread Knute Snortum
Hi all, I am trying to tie an afterGrace note to the next note and I get a warning. This code: \version "2.25.13" \relative { \afterGrace c''4\trill { b16 c~ } c4 } ...produces this warning: /tmp/frescobaldi-ieh3nrny/tmpq4qpjmjp/document.ly:4:33 <0>: warning: unterminated tie \afterGrace

LilyPond Swift Library

2024-03-22 Thread Sam Dimarcos
Hello, I was wondering if it was possible to render LilyPond notation in an iOS application using Swift. I would like to display a figured bass note coupled with its realization in .png or .svg format within a UIImage control. Are there any libraries or in-kind alternatives for music notation

Point and click - permission denied

2024-03-22 Thread Tom Brennan
Hello (Note: this email uses markdown formatting.) It's been a while since I've used lilypond, and I had point and click working on another system, but I can't remember what I did. I do remember there were hiccups. Also, it was probably Arch Linux and now the distro I'm using is Ubuntu 22.04,

Re: Tie an afterGrace note produces warning

2024-03-22 Thread Aaron Hill
On 2024-03-22 8:24 am, Knute Snortum wrote: Hi all, I am trying to tie an afterGrace note to the next note and I get a warning. This code: \version "2.25.13" \relative { \afterGrace c''4\trill { b16 c~ } c4 } ...produces this warning:

Re: LilyPond Swift Library

2024-03-22 Thread Karlin High
On 3/22/2024 10:15 AM, Sam Dimarcos wrote: the realm of iOS and Swift? So long as the Apple App Store is the only way to get apps onto iOS devices, for anything LilyPond-derived there would be a need to make peace between the App Store terms and the GNU General Public License. -- Karlin

draw box around score

2024-03-22 Thread Go77
Hi all, I tried to find how to draw a box around a piece of music. Looked through the manual, snippets etc, but didn't find out how to do this yet. See below what I mean. Any suggestions? Joop

Re: Point and click - permission denied

2024-03-22 Thread Tom Brennan
Ok, I just noticed that the binary location is wrong -- and I have more than one install on this computer, so I'm going to remove both and start with the latest version and see what happens. On Fri, Mar 22, 2024 at 10:20 AM Tom Brennan wrote: > > BTW, for what it's worth it does still seem to be

Re: Dynamics collide with span bar (was Re: Chord names collide with span bar)

2024-03-22 Thread Michael Bret
Many thanks, Aaron. So here is a cleaner MWE, with your fix: \version "2.25.13" #(ly:set-option 'debug-skylines #t) \layout { \context { \Score \override NonMusicalPaperColumn.show-horizontal-skylines = ##t } } \layout { \context { \Dynamics \consists Pure_from_neighbor_engraver

Re: Dynamics collide with span bar

2024-03-22 Thread Aaron Hill
On 2024-03-22 5:30 pm, Michael Bret wrote: Then, it should be added that transposing your first fix (namely, BarLine.bar-extent = #'(0 . 1) and transparent = ##t) DOES solve the issue WITH “Bar_engraver” consisted. How does that make sense? I probably don’t get what "Span_bar_stub_engraver

Re: Dynamics collide with span bar (was Re: Chord names collide with span bar)

2024-03-22 Thread Aaron Hill
On 2024-03-22 4:08 pm, Michael Bret wrote: Dear Werner, Aaron and Knute, (it is y first time attempting to contribute to such lilypond discussion so I don’t dare cc-ing the whole mailing list) (Adding the mailing list for visibility...) Regardless of your experience or comfort level, it is

Re: Tie an afterGrace note produces warning

2024-03-22 Thread Knute Snortum
On Fri, Mar 22, 2024 at 8:38 AM Aaron Hill wrote: > > > \version "2.25.13" > > \relative { >\afterGrace c''4\trill { b16 \set tieWaitForNote = ##t c~ } c4 > } > > Works great! Thanks. -- Knute Snortum

Re: draw box around score

2024-03-22 Thread Go77
Ah, perfect! This works, Valentin. Thanks! Joop On 22-03-2024 20:47, Valentin Petzel wrote: Or rather #(define-markup-command (book-title layout props) () (interpret-markup layout props (ly:output-def-lookup layout 'bookTitleMarkup empty-markup))) \markup \box \column {

Cyclic dependency error with change staff and trillSpan

2024-03-22 Thread Knute Snortum
Hi again, I am getting a cyclic dependency error with code that uses change staff and trillSpan. Here is as minimal an example as I could create: %%% \version "2.24.3" \language "english" staffUp = \change Staff = "upper" staffDown = \change Staff = "lower" rightHand = \relative {

Re: draw box around score

2024-03-22 Thread Valentin Petzel
Or rather #(define-markup-command (book-title layout props) () (interpret-markup layout props (ly:output-def-lookup layout 'bookTitleMarkup empty-markup))) \markup \box \column { \override #'( (header:title . "The title") (header:composer . "The composer") )

Re: draw box around score

2024-03-22 Thread Go77
Hello Leo, I tried your suggestion, but it doesn't put the box around the header. I would like to include the header as well. Something with page formatting maybe? Joop On 22-03-2024 15:09, Leo Correia de Verdier wrote: Sorry, I got a fudged quote-apostrophe in last answer. It should be:

Re: draw box around score

2024-03-22 Thread Valentin Petzel
Hello Joop, this would be hard to do, as this is tied to the page breaking algorithm. Rather directly draw your header in your markup: #(define-markup-command (book-title layout props) () (interpret-markup layout props (ly:output-def-lookup layout 'bookTitleMarkup empty-markup)))