Are Lilyponds beams thick enough?

2020-05-25 Thread Valentin Petzel
Hello, Lilypond’s has rather light beams, i.e. the thickness of a beam and the space between beams is pretty much the same. In some cases such as longer distance to the sheet or bad lighting this makes the score more readable, but in other cases, such as a medium reading distance in good lighti

Re: Identify included files

2020-05-25 Thread Fr. Samuel Springuel
> On 25 May, 2020, at 3:12 PM, Wols Lists wrote: > > So. Am I correct in thinking that, if you change one .ily file, you need > to rebuild the entire makefile? WHY? > And it means if put a new include into > dynamics.ily, I just need to create/update the line for dynamics.ily, > and everything t

Re: Adding a line break on \breve note

2020-05-25 Thread Pierre Perol-Schneider
Hi Frimlik, How about: VerseOne = \lyricmode { \set Lyrics.stanza = "1." \override LyricText.self-alignment-X = #LEFT \markup \override #'(line-width . 35){ \justify { Lorem ipsum dolor sit amet, consectetuer adipiscing elit.+ Etiam commodo dui eget wisi. Nunc auctor

Re: Adding a line break on \breve note

2020-05-25 Thread Frimlik
Much better, but not my dream yet. \version "2.20.0" \paper { #(set-paper-size "a4landscape") } ToninaZalmu = \key c \major FirstMusicVerse = \relative { \cadenzaOn \ToninaZalmu g'\breve e8 g a4 g \bar "|" } VerseOne = \lyricmode { \set Lyrics.stanza = "1." \override LyricText.self

Re: Adding a line break on \breve note

2020-05-25 Thread Frimlik
Actually, it is not. I want a single line of staff and below that two lines of text. -- Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

Re: musicxml2ly

2020-05-25 Thread Jonas Hahnfeld
Am Montag, den 25.05.2020, 16:17 +0200 schrieb Lukas-Fabian Moser: > On Sat, 23 May 2020, Martin Tarenskeen wrote: > > > > There must be something seriously broken if musicxml2ly can't convert > > > > this > > > > > > P.S. I just tried downgrading to lilypond 2.19.84 (from Fedora repo) and > > > t

Re: Identify included files

2020-05-25 Thread Wols Lists
On 25/05/20 19:25, Fr. Samuel Springuel wrote: > I think this is where you’ve missed something. When using DK’s code as the > init file (or my later version, which make the output more make-friendly), > LilyPond **does not actually typeset the music.** All it does is read > through the files t

Re: Changing slur behavior

2020-05-25 Thread Fr. Samuel Springuel
> On 25 May, 2020, at 1:01 PM, Shane Brandes wrote: > > Increase the spacing-increment on line twenty. I tried a value of 2 and it > worked fine. > > regards, > > Shane Yep, playing with that parameter allowed me to tweak the note spacing to prevent the collisions. I also found that by twea

Re: Identify included files

2020-05-25 Thread Fr. Samuel Springuel
On 25 May, 2020, at 12:46 PM, David Wright wrote: > But it seems to me that your OP had the makings of an A/B problem. > You originally asked for a script that worked in the forward > direction: a list of top-level file's dependencies, for constructing > DEP. Having got LP to perform that with DK

Re: Resources For Learning Scheme?

2020-05-25 Thread melophobic
Thank you to everyone in the thread for sending me down a very informative rabbit hole. I've spent the last week or so learning, and came up with version one of what I have been looking to accomplish. Thank you again. I have never seen such a helpful and informative mailing list before. Brian

Re: Changing slur behavior

2020-05-25 Thread Shane Brandes
Increase the spacing-increment on line twenty. I tried a value of 2 and it worked fine. regards, Shane On Mon, May 25, 2020 at 12:06 PM Fr. Samuel Springuel wrote: > I’ve come back to this after a bit and have found a deal breaker of a > problem: when the slur spans over notes which go both up

Re: Identify included files

2020-05-25 Thread David Wright
On Sun 24 May 2020 at 16:28:53 (-0400), Fr. Samuel Springuel wrote: > > On 23 May, 2020, at 7:34 PM, David Wright wrote: > > > > If you follow some simple rules in your source layout, constructing > > such a list might be most straightforward to do in the shell, using > > grep. > > It’s not quit

Re: Identify included files

2020-05-25 Thread Valentin Villenave
On 5/25/20, R. Padraic Springuel wrote: > It depends on the state of the relative-includes variable. If true, then > paths are relative to the file in which the include statement appears. If > false, the paths are relative to the main input file. Default behavior is > false. Careful, the defau

Re: Changing slur behavior

2020-05-25 Thread Fr. Samuel Springuel
I’ve come back to this after a bit and have found a deal breaker of a problem: when the slur spans over notes which go both up and down, the note heads after the turn around collide. See attached example. ✝✝ Fr. Samuel, OSB (R. Padraic Springuel) St. Anselm’s Abbey 4501

Re: Adding a line break on \breve note

2020-05-25 Thread Brian Barker
At 04:40 25/05/2020 -0700, Frimlik Cage wrote: is there a simple way, how to do a line break (in lyrics) on \breve note? Try: \markup { \column { "Lorem ipsum dolor sit amet, consectetuer adipiscing elit." \line { "Etiam commodo dui eget wisi. Nunc auctor." } } } Su -- spen --

Re: musicxml2ly

2020-05-25 Thread Lukas-Fabian Moser
On Sat, 23 May 2020, Martin Tarenskeen wrote: There must be something seriously broken if musicxml2ly can't convert this P.S. I just tried downgrading to lilypond 2.19.84 (from Fedora repo) and the problem disappeared. So it does look like a regression to me. Thanks Martin; I’ve opened this tra

Re: Adding a line break on \breve note

2020-05-25 Thread Kevin Barry
Hi Frimlik, I don't really understand what you are trying to do, but the code below adds a break in the breve \version "2.20.0" \paper { #(set-paper-size "a4landscape") } ToninaZalmu = \key c \major FirstMusicVerse = \relative { \cadenzaOn \ToninaZalmu g'\breve*1/2 \bar "" \break \once

Re: Identify included files

2020-05-25 Thread R. Padraic Springuel
> On May 25, 2020, at 2:58 AM, Wols Lists wrote: > > On 24/05/20 21:28, Fr. Samuel Springuel wrote: >> It’s not quite as straight-forward as you seem to think: >> >> 1) You haven’t accounted for the possibility of multiple folders with >> varying levels of hierarchy. The changed file might

Adding a line break on \breve note

2020-05-25 Thread Frimlik
Hello, is there a simple way, how to do a line break (in lyrics) on \breve note? My code snippet: \version "2.20.0" \paper { #(set-paper-size "a4landscape") } ToninaZalmu = \key c \major FirstMusicVerse = \relative { \cadenzaOn \ToninaZalmu g'\breve e8 g a4 g \bar "|" } VerseOne = \ly

Re: Adding Ornamentations to Note Heads

2020-05-25 Thread Franz-Rudolf Kuhnen
Hi, thank You for the excellent help. I also demanded Nicolas Sceaux about his solution and he answered me also yesterday. He advised me to use the following file: https://github.com/nsceaux/nenuvar-lib/blob/master/nenuvar-side-ornementations.ily[1] This works without problems with lilypond

Re: show key signature but also alterations

2020-05-25 Thread Frédéric
> > Maybe the simplest way to achieve this is the good old "!" > > You're right, that may be the easiest, in particular because I > auto-generate the score so it should be easy to add ! it worked with "!". Was the easiest in the end. Thanks to all of you. F

Re: show key signature but also alterations

2020-05-25 Thread Frédéric
> Maybe the simplest way to achieve this is the good old "!" You're right, that may be the easiest, in particular because I auto-generate the score so it should be easy to add !

Re: show key signature but also alterations

2020-05-25 Thread Frédéric
> You could try the attached, which is the 2.20.0 source code for the > teaching accidental style (+some helper functions) with one change to > accommodate 2.18 syntax, i.e. the key signature is obtained from the > localKeySignature context property instead of localAlterations. That's very close t