Re: an open question

2018-03-28 Thread Jan-Peter Voigt
Hello Jacques, yes, you are right. Any information without a "first class citizen" will not be exported right. One might think of additional properties to give an export specific attribute - that is to say: this markup shall indicate swing tempo in MusicXML. But before that I want to be able t

Re: Thriple flat/sharp glyphs...

2018-03-28 Thread Karlin High
On 3/27/2018 3:20 PM, Torsten Hämmerle wrote: Besides, I just noticed my typo ("Thriple") in the subject line carried over from mail to mail, this is s embarrassing... In forums for the DDWRT wifi router firmware, there are important must-read threads deliberately given unique, arbitrary n

\rounded-box vs. \box in text markup

2018-03-28 Thread Emilio Millan
Hi all. I'm a fairly new user so I may be missing something obvious. In the following example, is there a way to "snug up" the rounded boxes over the second note so that they are vertically spaced like the boxes over the first note? \version "2.19.80" { f''2^\markup{\box "1"}^\markup{\box "2"}^

Cross-staff stems

2018-03-28 Thread Bernard Meylan
Hi all! I can't find a solution for this problem: I try something with 2 voices on RH... but unsuccessfull. Any idea? Bernard -- Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html ___

Cross-staff stems

2018-03-28 Thread Bernard Meylan
Hi all! I try to find a solution to this typographical music problem: Trying with the doc page relative to this subject, or trying with 2 voices on RH, nothing seems to right. Any idea? Bernard -- Sent from: http://lily

rounded-box vs. box in text markup

2018-03-28 Thread Emilio Millan
Hi all. I'm a fairly new user so I may be missing something obvious. In the following example, is there a way to "snug up" the rounded boxes over the second note so that they are vertically spaced like the boxes over the first note? \version "2.19.80" { f''2^\markup{\box "1"}^\markup{\box "2"}^

Re: Cross-staff stems

2018-03-28 Thread Ben
On 3/28/2018 4:43 AM, Bernard Meylan wrote: Hi all! I try to find a solution to this typographical music problem: Trying with the doc page relative to this subject, or trying with 2 voices on RH, nothing seems to right. An

Re: \rounded-box vs. \box in text markup

2018-03-28 Thread Robert Schmaus
Hi Emilio, I find this behaviour decidedly un-obvious as well. But here's a way to have a more controlled spacing: \version "2.19.80" { f''2^\markup{ \column { \rounded-box "1" \rounded-box "2" \rounded-box "3" } } f''2^\markup{ \column { \box "1"

RE: Cross-staff stems

2018-03-28 Thread Mark Stephen Mrotek
Bernard, Have a look at http://lilypond.org/doc/v2.19/Documentation/notation/common-notation-for-key boards#cross_002dstaff-stems Mark -Original Message- From: lilypond-user [mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of Bernard Meylan Sent: Wednesday, March 28,

Re: Cross-staff stems

2018-03-28 Thread Andrew Bernard
Hi All, This is surprisingly tricky, because the b flats don't line up with the bass. I think the OP is asking how to achieve that, not the mechanism of cross staff stemming. I cant figure it out either! Andrew ___ lilypond-user mailing list lilypond-u

Re: calling lilybin (or similar) as a service triggered from a [JavaScript?] form in a web page

2018-03-28 Thread Kieren MacMillan
Hi Paul, > I've done something in roughly the same ballpark by creating a version of > LilyBin for Clairnote music notation: > http://lilybin.clairnote.org/ > Not sure if it makes sense for your use case, but check out this blog post > for more details. > http://clairnote.org/blog/2017/06/announ

Re: Cross-staff stems

2018-03-28 Thread Thomas Morley
2018-03-28 15:43 GMT+02:00 Andrew Bernard : > Hi All, > > This is surprisingly tricky, because the b flats don't line up with the > bass. I think the OP is asking how to achieve that, not the mechanism of > cross staff stemming. > > I cant figure it out either! > > Andrew Hi Bernhard. as Andrew

Re: Cross-staff stems

2018-03-28 Thread Phil Holmes
Took me a while, but by reversing the order of the clashing notes with force-hshift you can get close. \layout { \context { \PianoStaff \consists #Span_stem_engraver } } { \new PianoStaff << \new Staff { \relative c' << \new Voice { \voiceThree d8 \once \overr

Re: rounded-box vs. box in text markup

2018-03-28 Thread Federico Bruni
Il giorno mer 28 mar 2018 alle 14:23, Emilio Millan ha scritto: Hi all. I'm a fairly new user so I may be missing something obvious. In the following example, is there a way to "snug up" the rounded boxes over the second note so that they are vertically spaced like the boxes over the first n

Re: rounded-box vs. box in text markup

2018-03-28 Thread Thomas Morley
2018-03-28 14:23 GMT+02:00 Emilio Millan : > Hi all. I'm a fairly new user so I may be missing something obvious. > > In the following example, is there a way to "snug up" the rounded > boxes over the second note so that they are vertically spaced like the > boxes over the first note? > > \version

Re: lyluatex: call for Fedora users

2018-03-28 Thread Federico Bruni
Il giorno mar 27 mar 2018 alle 19:10, Sam Bivens ha scritto: Hi Federico, The MWE I compiled a couple weeks ago that *did* work fine now no longer does, and now I have the exact problem that you have. Curious. I have TeXLive 2016, which was downloaded from the Fedora repositories along wi

Re: lyluatex: call for Fedora users

2018-03-28 Thread R. Padraic Springuel
> On Mar 28, 2018, at 12:06 PM, Federico Bruni wrote: > > sh: all: command not found" That's the result of a bug in io.popen that was present in the version of LuaTeX which shipped with TeXLive 2017. The bug was fixed shortly after TL2017 was released so some other distros may have picked u

Scratching my head around define-macro and variable evaluation

2018-03-28 Thread Stefano Troncaro
Hi everyone! I have a question about the following example: > \version "2.19.80" > #(define-macro (why-the-difference obj) >(display (format "~a , " obj)) >`(display (format "~a\n" ,obj))) > > #(why-the-difference (list 1 2 3))% => (list 1 2 3) , (1 2 3) > #(define var (list 1 2 3)) > > #

Re: Scratching my head around define-macro and variable evaluation

2018-03-28 Thread David Kastrup
Stefano Troncaro writes: > Hi everyone! > > I have a question about the following example: > >> \version "2.19.80" >> #(define-macro (why-the-difference obj) >>(display (format "~a , " obj)) >>`(display (format "~a\n" ,obj))) >> >> #(why-the-difference (list 1 2 3))% => (list 1 2 3) , (1

Re: Scratching my head around define-macro and variable evaluation

2018-03-28 Thread Stefano Troncaro
Hi David, Thank you for your reply. Yes, I undestood that about macros. I'm trying to dynamically generate the variable definitions inside a let block from an alist, but the only way I manage to do that is if I type the alist manually. I want to achieve that with an alist stored in a variable. Sim

double slurs within beamed notes

2018-03-28 Thread Lucas Werkmeister
Hi everyone! In a composition I’m transcribing, there are double slurs between some notes (see attached image, also uploaded at [1]), and the lower slurs are right next to the note heads, inside the beams – whereas when typeset by LilyPond, the slurs are outside the beams. I’m wondering what the b

Re: double slurs within beamed notes

2018-03-28 Thread Kieren MacMillan
Hi Lucas, > I did find one workaround, and I’ll describe it just in case someone else > with the same problem finds this email later, but it is horrible: Here’s another… though I’m not sure it’s much less horrible: %%% SNIPPET ENDS \version "2.19.80" stuff = { 16 8 16 16 16 8 } \score

double slur collisions

2018-03-28 Thread Kieren MacMillan
Hey all, Is it a feature or a bug that these slurs are collision-ing? \version "2.19.80" stuff = { 16 8 16 16 16 8 } \score { \stuff } Cheers, Kieren. Kieren MacMillan, composer ‣ website: www.kierenmacmillan.info ‣ email: i...@kierenmacmillan.info _

Re: double slurs within beamed notes

2018-03-28 Thread Lucas Werkmeister
Hi Kieren, thanks for taking a look! On 29.03.2018 01:52, Kieren MacMillan wrote: > Hi Lucas, > >> I did find one workaround, and I’ll describe it just in case someone else >> with the same problem finds this email later, but it is horrible: > Here’s another… though I’m not sure it’s much less ho

Re: double slurs within beamed notes

2018-03-28 Thread Kieren MacMillan
Hi Lucas, > Hm, is this \=1 thing a new feature in the development version? I can’t get > it to work on 2.18.2. Might be. Sorry if you can’t take advantage of it. (Related: I recommend you consider using the "unstable" version regularly: I use it exclusively, for mission-critical day-to-day wo

Re: rounded-box vs. box in text markup

2018-03-28 Thread Emilio Millan
Robert, Federico, and Harm: Thank you so much for your help! All your suggestions worked very well. I'm playing with them now to decide which is the best for my document. Everybody: My apologies for accidentally sending my question to the list twice! Regards, Emilio On Wed, Mar 28, 2018 at 11:36

Re: double slurs within beamed notes

2018-03-28 Thread Carl Sorensen
From: Lucas Werkmeister Date: Wednesday, March 28, 2018 at 4:39 PM To: Subject: double slurs within beamed notes Does anyone have better ideas? :) Slur on one note, phrasing slur on the other? Carl ___ lilypond-user mailing list lilypond-u