Re: lilypond and multithreading

2014-06-05 Thread Jacques Menu
Hello folks, Going from a sequential application to a parallel one is far from trivial, and this would need in-depth knowledge of the code architecture. It’s my understanding that there are successive phases involved in LP, and that's not good news for parallelization. And there’s Guile in the

Re: Mensural sign

2014-06-05 Thread Brian Barker
At 12:45 04/06/2014 +0100, Phil Holmes wrote: Attached is an image of a sign that appears in the lyric line of the music in the Musica Tranalpina. Two questions: [...] 2: any ideas of how to set this in LilyPond? Are Unicode 1D10D, 1D10E, or 1D10F any use? See

Removing Stems

2014-06-05 Thread Br. Samuel Springuel
I'm typesetting some chant and thus need notes without stems. Based on my reading of the documentation there should be two ways to do this: make the stems invisible or remove the stem engraver. I've been able to make the first option sort-of-work as in the following snippet: \version

Re: Removing Stems

2014-06-05 Thread Uns Liska
Remove the stem engraver from the Voice context. Not Staff. Or better write \omit Stem, which is the same as override Stem.stencil = ##f HTH Urs On 5. Juni 2014 20:42:54 MESZ, Br. Samuel Springuel rpspring...@gmail.com wrote: I'm typesetting some chant and thus need notes without stems. Based

Re: Removing Stems

2014-06-05 Thread Br. Samuel Springuel
I tried: \version 2.18.2 \language english \new Staff \with { \remove Time_signature_engraver } \relative c' { \key f \major \set Score.timing = ##f \remove Stem_engraver \relative c'' { c bflat a g--( a bflat g ) g-- \bar || } } but that didn't

Dynamic text/staff symbol overlap

2014-06-05 Thread Simon Albrecht
Hello, in places with tight vertical spacing it's often useful and best practice to have the dynamic text overlap slightly with the staff symbol lines. I tried to reproduce this with something like the following: \version 2.19 \relative { \once \override DynamicText.outside-staff-priority

Re: Mensural sign

2014-06-05 Thread Phil Holmes
- Original Message - From: Brian Barker b.m.bar...@btinternet.com To: lilypond-user@gnu.org Sent: Thursday, June 05, 2014 7:04 PM Subject: Re: Mensural sign At 12:45 04/06/2014 +0100, Phil Holmes wrote: Attached is an image of a sign that appears in the lyric line of the music in the

Re: Dynamic text/staff symbol overlap

2014-06-05 Thread Phil Holmes
I don't understand what you're doing here. c'^\f is markup, not dynamics. -- Phil Holmes - Original Message - From: Simon Albrecht To: lilypond user list Sent: Thursday, June 05, 2014 8:57 PM Subject: Dynamic text/staff symbol overlap Hello, in places with tight

Re: Dynamic text/staff symbol overlap

2014-06-05 Thread Karol Majewski
Of course it is DynamicText. try: \once \override DynamicText.extra-offset = #'(-1 . -1) Karol - Original Message - From: Simon Albrecht To: lilypond user list Sent: Thursday, June 05, 2014 8:57 PM Subject: Dynamic text/staff symbol overlap Hello,in places with tight vertical

Re: Dynamic text/staff symbol overlap

2014-06-05 Thread Simon Albrecht
Am 05.06.2014 22:17, schrieb Karol Majewski: Of course it is DynamicText. try: \once \override DynamicText.extra-offset = #'(-1 . -1) I know about that, but as extra-offset is applied after creating the layout, the whole point of saving space is lost. Karol - Original Message -

Re: Dynamic text/staff symbol overlap

2014-06-05 Thread Karol Majewski
And how about: \version "2.19"\relative {\once \override DynamicLineSpanner #'Y-offset = #'2.5\once \override DynamicLineSpanner #'outside-staff-priority = ##fc'^\f} Karol Am 05.06.2014 22:17, schrieb Karol Majewski: Of course it is DynamicText. try: \once \override

Re: Removing Stems

2014-06-05 Thread Paul Morris
Br. Samuel Springuel wrote I tried: \version 2.18.2 \language english \new Staff \with { \remove Time_signature_engraver } \relative c' { \key f \major \set Score.timing = ##f \remove Stem_engraver \relative c'' { c bflat a g--( a bflat g ) g-- \bar ||

A tool to substract a constant from bar numbers in LP code

2014-06-05 Thread Jacques Menu
Hello folks, When scanning scores, I often end up with several movements in a single MusicXML file, with bar numbered sequentially, i.e. not restarting at 1 for each movement. In order to help having correct bars numbers, quite needed when proof-reading/compiling the code, I use the following

Re: Dynamic text/staff symbol overlap

2014-06-05 Thread Simon Albrecht
Am 05.06.2014 23:02, schrieb Karol Majewski: And how about: \version 2.19 \relative { \once \override DynamicLineSpanner #'Y-offset = #2.5 \once \override DynamicLineSpanner #'outside-staff-priority = ##f c'^\f } Very good! That's the one I overlooked. Thanks, Simon

Re: Mensural sign

2014-06-05 Thread Owain Sutton
That would probably risk all sorts of misinterpretation, given that those symbols have a different and well-understood meaning. On 19:04, Thu 05 Jun 2014, Brian Barker wrote: Date: Thu, 05 Jun 2014 19:04:18 +0100 From: Brian Barker b.m.bar...@btinternet.com Subject: Re: Mensural sign To: