Re: Inserting a verical space, or an empty line, between two markups attached to a note.

2018-02-26 Thread Noeck
% Perhaps something like \header { tagline = \markup \center-column { "Rome" "Mars 1934" } } { c''1^\ppp_\markup \italic \center-column { "m. d." "dessus" } \override Score.RehearsalMark.direction = #DOWN \override Score.RehearsalMark.font-size = -1 \override

Re: scheme function returning two scores

2018-02-26 Thread Simon Albrecht
On 26.02.2018 08:05, Gianmaria Lari wrote: On 26 February 2018 at 00:07, Simon Albrecht > wrote: On 25.02.2018 22:55, Gianmaria Lari wrote: (I have never reported a bug before. Please let me know if this is not  the

Re: Inserting a verical space, or an empty line, between two markups attached to a note.

2018-02-26 Thread Torsten Hämmerle
Hi Robert, The main problem is the baseline-skip within the columns, i.e. the lines of text are too far apart from each other. If the default skip is too wide, inserting positive \vspace can only make it worse (by the way, it's also possible to insert negative \vspace). The "proper" and most

\pralllUp inside Staff

2018-02-26 Thread Ali Cuota
Hello to all Lyliponders, I am typesetting different Works from J.S.Bach and now with following question: in BWV 572 (trio Sonate d-minor) he wants a prallUp (well I understand it this way) inside the staff (see picture). I tried with the 3 ways I found inside the Notation manual (\raise,

Re: \pralllUp inside Staff

2018-02-26 Thread Torsten Hämmerle
Ali Cuota wrote > in BWV 572 (trio Sonate d-minor) Ah, I guess you mean BWV 527... ;) Ali Cuota wrote > he wants a prallUp (well I understand it this way) inside the staff (see > picture). I tried with > the 3 ways I found inside the Notation manual (\raise, \super, > \dir-column) (version

Function to override the stem direction and flag of a single note?

2018-02-26 Thread Andy Chase
Hello all, Let me establish a bit of context before getting to the meat of my question: I mainly use LilyPond for transcribing 5-string banjo music from the 19th and early 20th centuries. Pretty much all of this music is in standard notation, but there’s one very banjo-specific convention

RE: \pralllUp inside Staff

2018-02-26 Thread Mark Stephen Mrotek
Ali, Look at http://lilypond.org/doc/v2.19/Documentation/notation/list-of-articulations Command you want is \prallup. Mark -Original Message- From: lilypond-user [mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of Ali Cuota Sent: Monday, February 26, 2018 1:15 PM

Re: \pralllUp inside Staff

2018-02-26 Thread Torsten Hämmerle
Hi Francois, my previous answer probably went amiss, so the 2nd attempt... Ali Cuota wrote > in BWV 572 (trio Sonate d-minor) Ah, I guess you mean BWV 527... ;) Ali Cuota wrote > he wants a prallUp (well I > understand it this way) inside the staff (see picture). I tried with > the 3 ways

Re: Function to override the stem direction and flag of a single note?

2018-02-26 Thread Torsten Hämmerle
Hi Andy, You don't need a special function for this, it's all contained in the standard. I've constructed a parallel context (with <<...\\...>>) thus having two voices with opposite stem directions. The upper noteheads will automatically be merged. Now for the tricky part (the 16th flags):

Re: Function to override the stem direction and flag of a single note?

2018-02-26 Thread Torsten Hämmerle
Sorry, in my reply, the sample coding got "auto formatted" because the the note b after < was interpreted as bold tag and everything went belly-up. I've now inserted a space between < and b and the LilyPond code became readable: \version "2.19.81" \relative { << { \autoBeamOff e''16*2 e e

Inserting a verical space, or an empty line, between two markups attached to a note.

2018-02-26 Thread Robert Blackstone
Dear all, A piano piece that I have transcribed has, below its last note in the lower staff, three or four texts, two of which are dynamics, and the other some general info about the piece. In the original it looks like this: m. d. dessus Rome Mars 1934 How can I insert a vertical space or

Re: Inserting a verical space, or an empty line, between two markups attached to a note.

2018-02-26 Thread Andrew Bernard
Hi Robert, Use \vspace perhaps? \markup { \column { "m. d." dessus \vspace #1 Rome Mars 1934 } } Andrew ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Inserting a verical space, or an empty line, between two markups attached to a note.

2018-02-26 Thread Robert Blackstone
Hi Andrew Thanks for your advice. Your code certainly inserts vertical spaces, but too many and too wide. Setting \vspace #0 does not change their width. I tried several other potential tweaks but in the end I accepted what you can see in the left screenshot. Not bad compared with the

Re: Edition Engraver bug?

2018-02-26 Thread Jan-Peter Voigt
Hi Stefano, thanks a lot for researching this issue! Sometimes I also noticed "rebel ties", but I didn't identified it as an EE bug. So your research file looks meaningful. I hope to have a deeper look into it next week. Best Jan-Peter Am 26.02.2018 um 15:26 schrieb Stefano Troncaro: Hi

Re: Regarding laissez vibrers

2018-02-26 Thread Robert Murdoch
There is currently a bug in LilyPond where repeat ties appended to a single note in a chord don't appear, hence why I wrote my message in the first place. ___ lilypond-user mailing list lilypond-user@gnu.org

RE: Regarding laissez vibrers

2018-02-26 Thread Mark Stephen Mrotek
Robert, Perhaps the use of a “repeat tie?” http://lilypond.org/doc/v2.19/Documentation/notation/writing-rhythms#ties Mark From: lilypond-user [mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of Robert Murdoch Sent: Monday, February 26, 2018 4:08 AM To:

Re: edition-engraver error

2018-02-26 Thread Stefano Troncaro
Hi Kieren, this has been fixed already! Just update the Edition Engraver :) FYI the problem is here > ((integer? m)(ly:make-moment m/4)) > m/4 is interpreted as a variable name (that doesn't exist), thus the "unbound variable" error. I think the line was replaced by (/ m 4). 2018-02-26 9:57

Edition Engraver bug?

2018-02-26 Thread Stefano Troncaro
Hi everyone! I tried to isolate the issue with Tie directions that I posted earlier and I'm fairly confident I've stumbled upon a bug. Look at the output of this snippet (Sorry for the length, I made it as short as I could) > \version "2.19.80"\language "english"\include >

edition-engraver error

2018-02-26 Thread kieren_macmillan kieren_macmillan
Hello all, Trying to use the EE. Running into the following fatal error: While evaluating arguments to ly:make-moment in expression (ly:make-moment m/4): /Volumes/KMac Seagate/scores/_include/openlilylib/edition-engraver/engine.scm:68:17: Unbound variable: m/4 Exited with return code 1. I've

Regarding laissez vibrers

2018-02-26 Thread Robert Murdoch
Hi, looking at this post , the (currently) broken repeatTie on single notes in a chord can be faked with \override LaissezVibrerTie.head-direction = #RIGHT <{note}\laissez Vibrer {note}\laissezVibrer>. Unfortunately, I

Re: Regarding laissez vibrers

2018-02-26 Thread David Kastrup
Robert Murdoch writes: > There is currently a bug in LilyPond where repeat ties appended to a > single note in a chord don't appear, hence why I wrote my message in > the first place. That was issue 5220, will be fixed come 2.21.0 and is already so in current master. --

Re: Inserting a verical space, or an empty line, between two markups attached to a note.

2018-02-26 Thread Noeck
Hi Robert, the original score looks like "Rome Mars 1934" is not a markup to the final note (c''), but rather some kind of footer. I would suggest to engrave it as a footer or as attached to the final bar line (like a mark). Best, Joram ___