How to get warnings for unused parts of a file?

2021-09-14 Thread Omid Mo'menzadeh
Hello all. This might be a weird thing to seek, but here is the scenario: I have several files defining (but not using) different parts of the score, which other files use to construct several output types. But the problem is the command `lilypond -l WARNING -o /path/to/file.ly` does not show a wa

Re: How to get warnings for unused parts of a file?

2021-09-14 Thread Leo Correia de Verdier
There might be more elegant ways to do it (there probably is), but I have a variable I define in my output files, is-loaded-file and then I can use #(if (defined? 'is-loaded-file) … ) in the definition files to test. This requires a situation where there’s a clear separation between ”definition

Re: Slashed grace notes

2021-09-14 Thread Paul Hodges
I have successfully used https://lsr.di.unimi.it/LSR/Snippet?id=1048 to add slashes to beamed grace notes - thanks! But I have the problem now that I am being required to place the slashed grace notes before a bar line. I can do this normally using \afterGrace on the previous note or rest, but

Re: Slashed grace notes

2021-09-14 Thread Leo Correia de Verdier
It’s not very elegant, but I would in your situation move the bar rather than the grace notes, like { f'1 \bar "" \acciaccatura { c'8 d’ } \bar "|" e'1 } Watch out for multiple barlines resulting from grace timing! > 14 sep. 2021 kl. 11:34 skrev Paul Hodges : > > I have successfully used http

Re: Slashed grace notes

2021-09-14 Thread Paul Hodges
Thanks - that worked, but... then I got the bar number (required on every bar) twice - in the old position, and the new! It was easy to fix, though, using a \once \override on the barnumber visibility. The whole-bar rest in another part is now not properly centred, but I hope no-one will noti

Re: Slashed grace notes

2021-09-14 Thread Thomas Morley
Am Di., 14. Sept. 2021 um 11:35 Uhr schrieb Paul Hodges : > > I have successfully used https://lsr.di.unimi.it/LSR/Snippet?id=1048 to add > slashes to beamed grace notes - thanks! > > But I have the problem now that I am being required to place the slashed > grace notes before a bar line. I can

Having problems with phrasing and ties combined

2021-09-14 Thread Carlos Martinez
I need to use a phrasing slur and tie the chord \slashedGrace { e8\downbow } 2~8 8--\downbow |%m144 When I tried to add the phrasing slurs it doe snot work \slashedGrace { e8\downbow } ~2\(8 8\)--\downbow | But I am getting an error I can’t seem to get what the problem is? Help is appreciate

Re: Having problems with phrasing and ties combined

2021-09-14 Thread Brian Barker
At 14:55 14/09/2021 -0500, Carlos Martinez wrote: ... \slashedGrace { e8\downbow } ~2\(8 8\)--\downbow | But I am getting an error Er, what error?! I can't seem to get what the problem is? In your e-mail message, that prime after the first "fis" is a smart apostrophe (close quote) instead

midi sound quality help needed

2021-09-14 Thread Kenneth Wolcott
HI All; This is really not a Lilypond question, but I'm sure you have some helpful information, as you always do :-) midi sound quality help needed I'm on a Mac. I'm using Lilypond 2.22.0 via MacPorts. I'm using Garageband as my midi player, with Timidity (from home brew) as an alter

hairpins

2021-09-14 Thread Carlos Martinez
When I am trying to add hairpins to the end a2.\<( a2.\>) It does not show. How can I accomplish it?

Gissando

2021-09-14 Thread Carlos Martinez
I need to show the glissando from the a to a not both notes? Can I take one of the glissandos off? Glissando \slashedGrace {a8} 2 \glissando 8 16

Re: Having problems with phrasing and ties combined

2021-09-14 Thread Leo Correia de Verdier
That and swapping the 2 and the ~ back to their original places made the snippet work for me. > 14 sep. 2021 kl. 22:08 skrev Brian Barker : > > At 14:55 14/09/2021 -0500, Carlos Martinez wrote: >> ... >> \slashedGrace { e8\downbow } ~2\(8 8\)--\downbow | >> >> But I am getting an error > > Er,

Re: midi sound quality help needed

2021-09-14 Thread Guy Stalnaker
Ken, You are S close :-) The issue is neither Lilipond nor its midi output. MIDI is simply a specification for musical "events" describing pitch, duration, etc. It's up to a program that understands MIDI to make actual sound. That is typically done via a synthesizer (dedicated synth modul

Re: Gissando

2021-09-14 Thread Jean Abou Samra
Le 14/09/2021 à 22:31, Carlos Martinez a écrit : I need to show the glissando from the a to a not both notes? Can I take one of the glissandos off? Glissando \slashedGrace {a8} 2 \glissando 8 16 Use glissandoMap as explained at lilypond.org/doc/v2.21/Documentation/notation/expressive-marks-

Re: hairpins

2021-09-14 Thread Leo Correia de Verdier
You need to make an end point for the hairpin. In this case you could add some empty zero-duration placeholder at the end of the measure to attach the end of the hairpin, like s1*0\! or <>\! Also, please do minimal examples that can compile to show the problems you’re having, like \version "

Re: hairpins

2021-09-14 Thread Jean Abou Samra
Le 14/09/2021 à 22:29, Carlos Martinez a écrit : When I am trying to add hairpins to the end a2.\<( a2.\>) It does not show. How can I accomplish it? Use an empty chord to carry the hairpin end: \version "2.22.1" {   \time 3/4   a2.\<(   a2.\>) <>\! } Documentation is a

Re: Gissando

2021-09-14 Thread Leo Correia de Verdier
If you do not want glissando lines on all notes in a chord in order you’ll need to set a glissandoMap, like \version "2.22.1" \relative c'' { \time 3/4 \slashedGrace {a8} \once \set glissandoMap = #'((1 . 1)) 2 \glissando 8 16 } It is explained in a little more detail here: https://lilypond

Re: Slashed grace notes

2021-09-14 Thread Paul Hodges
On 14/09/2021 20:17:08, "Thomas Morley" wrote: > >Why not use \slash as defined by the LSR-snippet directly? >Makes for: > >{ > \afterGrace b1 { \slash 40 1 0.5 c'16 d' } e'1 >} Probably because I am not yet sufficiently familiar with the use and interaction of the different programming le

Re: hairpins

2021-09-14 Thread Paul Hodges
You need to terminate the hairpin by providing (in the same voice) either another hairpin, a final dynamic, or an explicit terminator: "\!". An unterminated hairpin won't be shown. Paul On 14/09/2021 21:29:50, "Carlos Martinez" wrote: >When I am trying to add hairpins to the end > > a2.\<

Re: hairpins

2021-09-14 Thread David Kastrup
Leo Correia de Verdier writes: > You need to make an end point for the hairpin. In this case you could > add some empty zero-duration placeholder at the end of the measure to > attach the end of the hairpin, like > s1*0\! > or > <>\! > Also, please do minimal examples that can compile to show th

Having an actual hyphen in the lyrics?

2021-09-14 Thread Kira Garvie
Hello all, If there is a literal hyphen in the text, not a hyphen that breaks up/extends a single word, how do I indicate that to Frescobaldi? Thank you! (I couldnt find it on the manual!) the text is: The fight is on - the trumpet call is ringing out... (old Baptist hymn.) Thank you! Best, Kira

Re: Having an actual hyphen in the lyrics?

2021-09-14 Thread Valentin Petzel
Hello Kira, You can use any sort of markup for lyrics. So you can simply type "-" to create a hypen. Cheers, Valentin Am Dienstag, 14. September 2021, 23:46:56 CEST schrieb Kira Garvie: > Hello all, > If there is a literal hyphen in the text, not a hyphen that breaks > up/extends a single word,

Re: Having problems with phrasing and ties combined

2021-09-14 Thread Carlos Martinez
What I would like to accomplish is to add a phrasing slur like the one in the picture. On lilypond /frescobaldi I does not allows it (error) when I tried the code I sent. slashedGrace { e8\(\downbow } 2~8 8\)--\downbow |%m144 It says Error 11 > On Sep 14, 2021, at 15:08, Brian Barker wrote

Re: Gissando

2021-09-14 Thread Carlos Martinez
You guys are the best! Thanks!!! That worked! > On Sep 14, 2021, at 15:39, Jean Abou Samra wrote: > > { > \slashedGrace { a8 } > \once \set glissandoMap = #'((0 . 0)) > 2\glissando 8 16 > }

Re: hairpins

2021-09-14 Thread Carlos Martinez
Lots to learn still!! But this worked! Thanks! > On Sep 14, 2021, at 15:41, Leo Correia de Verdier > wrote: > > a2.\<( > a2.\>) <>\!

Re: Having an actual hyphen in the lyrics?

2021-09-14 Thread Valentin Petzel
So if I get the right: You want to have the hyphen under the tied note? This could be done by \once\set melismaBusyProperties = #'() before the tied note (after ~) and then have the other stanzas skip that one note. May I just ask: What would be the purpose of this hyphen there? signature.asc

Re: Having problems with phrasing and ties combined

2021-09-14 Thread Jean Abou Samra
Hi Carlos, Le 14/09/2021 à 23:59, Carlos Martinez a écrit : What I would like to accomplish is to add a phrasing slur like the one in the picture. On lilypond /frescobaldi I does not allows it (error) when I tried the code I sent. slashedGrace { e8\(\downbow } 2~8 8\)--\downbow |%m144 When

Re: Having an actual hyphen in the lyrics?

2021-09-14 Thread Kira Garvie
Absolutely no purpose, other than that it is in the original scan and my instructions were to follow the original as closely as possible! It is from a 1989 Baptist hymnal that has some interesting formatting issues, so yes, it is absolutely not practical. Thank you though!! On Tue, Sep 14, 2021 a

Re: Having an actual hyphen in the lyrics?

2021-09-14 Thread Karlin High
On 9/14/2021 5:05 PM, Kira Garvie wrote: Okay, I tried that, but it bumps the lyrics all over one. Try an underscore between the word "on" and the hypen: The fight is on_- the trump -- pet sound -- Karlin High Missouri, USA

Re: Having an actual hyphen in the lyrics?

2021-09-14 Thread Carl Sorensen
On 9/14/21, 4:13 PM, "lilypond-user on behalf of Valentin Petzel" wrote: So if I get the right: You want to have the hyphen under the tied note? This could be done by \once\set melismaBusyProperties = #' You could also do "on -" instead of on for the lyric (and it shouldn't be

Re: Having problems with phrasing and ties combined

2021-09-14 Thread Paul Hodges
I copy-pasted your code into Frescobaldi, added context (and initial \ for the slashedGrace) and it compiled and produced exactly what you want. Either there is a problem in your context which we're not seeing, or perhaps there is an issue with your installation. This is what I compiled: \v

Re: Having an actual hyphen in the lyrics?

2021-09-14 Thread Kira Garvie
Hi Carl, What do you mean by a code sample? I am sorry to be so ignorant - I was told I would be using MuseScore, then day one of this gig told "here, learn Lilypond instead" so I had to kind of crash-course this! those are very different little beasts! Thank you! Best, Kira On Tue, Sep 14, 2021 a

Offseting stems and distributing notes evenly.

2021-09-14 Thread Víctor Cisneros
Dear lilyponders: For musicological purposes, I need to make every down-sided stem to be to the right of the note. So far, I've managed it by offseting it case per case like this: pdn = { \override Stem.X-offset = 1.12 \override Stem.Y-offset = 0.4 \override Stem.length = 7.5 } \once\pd

Re: Having an actual hyphen in the lyrics?

2021-09-14 Thread David Wright
On Tue 14 Sep 2021 at 18:05:17 (-0400), Kira Garvie wrote: > Okay, I tried that, but it bumps the lyrics all over one. In the original > page scan, which I am following, the hyphen falls right under the tied d > 8th note. How do I override the tie to get the hyphen there? You don't want a hyphen t

Re: Having an actual hyphen in the lyrics?

2021-09-14 Thread Kira Garvie
Actually, I had quite a few spelling errors, I am sorry! Verse two is supposed to be arouse, so that is also a dash. Carl was right, the correct term was a dash not a hyphen, and putting it in quotes with on: “on – ” worked perfectly, and it looks great! Sorry for the mistakes, and thank you for th

Re: midi sound quality help needed

2021-09-14 Thread Hwaen Ch'uqi
Greetings Ken, I do not use a mac; I use linux. However, I have a feeling that the principle for this is the same. Timidity reads its settings from a file called /etc/timidity.cfg, and those settings can be changed. Whatever soundfont you wish to use, you should be able to download it and tell ti

Re: Offseting stems and distributing notes evenly.

2021-09-14 Thread David Kastrup
Víctor Cisneros writes: > Dear lilyponders: > > > For musicological purposes, I need to make every down-sided stem to be to > the right of the note. "musicological". At any rate, here is half the job: \new Staff \with { \override Stem.self-alignment-X = #RIGHT \override Stem

Re: Having problems with phrasing and ties combined

2021-09-14 Thread Carlos Martinez
Thank you Paul! I just copied and pasted the same code into lilypond using Frescobaldi and got the error. The score does not renders…. Now I am using 2.18 instead of 2.23 but I doubt that is th problem… How d you tie chords ? Is it with ~? I thought maybe that was my problem? > On Sep 14, 202

Re: Having problems with phrasing and ties combined

2021-09-14 Thread Carlos Martinez
This is what I have prior to that snippet \new Staff \relative c''{ fis8\( e a-2 gis\) b8.--\( a16\) |%m143 { \slashedGrace { e8 } 2~8 8--\downbow} |%m144 } And still I am getting the same error > On Sep 14, 2021, at 18:05, Carlos Martinez > wrote: > > Thank you Paul! > >

Re: midi sound quality help needed

2021-09-14 Thread Guy Stalnaker
Thanks Hwaen Ch'uqi! That's not at all how kubuntu does this: √ /mnt/NAS326_Music/music/Radio Drama > ll /etc/timidity/ total 480K -rw-r--r-- 1 root root 230K Nov 11  2016 fluidr3_gm.cfg -rw-r--r-- 1 root root 4.7K Nov 11  2016 fluidr3_gs.cfg -rw-r--r-- 1 root root 4.6K Sep 22  2006 freepats.cfg

Re: Having problems with phrasing and ties combined

2021-09-14 Thread Jean Abou Samra
Le 15/09/2021 à 01:05, Carlos Martinez a écrit : Thank you Paul! I just copied and pasted the same code into lilypond using Frescobaldi and got the error. The score does not renders…. What is the complete compilation log? Thanks, Jean

Re: Having problems with phrasing and ties combined

2021-09-14 Thread Carlos Martinez
Is it this? Starting lilypond 2.18.2 [nameofile.ly]... Processing `/var/folders/9y/yrcy4l_s6pbd09h05djlmdh0gn/T/frescobaldi-oqi6meqe/tmpju908ke0/nameofile.ly' Parsing... Interpreting music...[8][16][24][32][40][48][56][64][72][80][88][96][104][112][120][128][136][144][152] Preprocessing grap

Re: Having problems with phrasing and ties combined

2021-09-14 Thread Jean Abou Samra
Le 15/09/2021 à 01:15, Carlos Martinez a écrit : Is it this? Starting lilypond 2.18.2 [nameofile.ly ]... Processing `/var/folders/9y/yrcy4l_s6pbd09h05djlmdh0gn/T/frescobaldi-oqi6meqe/tmpju908ke0/nameofile.ly ' Parsing... Interpreting music...[8][

Re: midi sound quality help needed

2021-09-14 Thread Hwaen Ch'uqi
Greetings Guy, Perhaps I am missing something, but the folder contents that you display don't seem to contradict what I wrote. Hwaen Ch'uqi On 9/14/21, Guy Stalnaker wrote: > Thanks Hwaen Ch'uqi! That's not at all how kubuntu does this: > > √ /mnt/NAS326_Music/music/Radio Drama > ll /etc/timid

Re: midi sound quality help needed

2021-09-14 Thread Guy Stalnaker
I did not intend to contradict what you wrote, simply to show that kubuntu has a more complicated set of configuration files that all interact with each other, rather than using a single timidity.cfg file (which was all that there was many years ago). I apologize if I gave the impression I was

Re: midi sound quality help needed

2021-09-14 Thread Hwaen Ch'uqi
Oh, that's all right! That overall placement of folder did look a bit "interesting" to me. But since we are on the subject of midi/timidity, I wonder if you or someone else could address this: I have noticed that there is much more crackling (not sure how else to describe it) going on in the sound

Re: midi sound quality help needed

2021-09-14 Thread Guy Stalnaker
Yes!! I used to have that all the time when using timidity from the CLI to play MIDI and then convert to WAV/FLAC. Now to see if I can remember how to fix it. AH! This ... From: https://henkelmann.eu/2013/03/fixing-timidity-crackling-output-in-gnu-solfege/ add |--output-24bit| to the option

Re: midi sound quality help needed

2021-09-14 Thread Guy Stalnaker
Sorry, that's not terribly clear ... Add "--output-24bit" to the TIMIDITY commandline (there may be a way to put it in the timidity config, but I just used the CLI anyway) %> timidity --output-24bit -Ow Sorry about that. Guy On 9/14/21 6:54 PM, Guy Stalnaker wrote: Yes!! I used to have t

Re: midi sound quality help needed

2021-09-14 Thread Hwaen Ch'uqi
Oh, brilliant!!! Thanks so much, Guy! I wish I knew this a long time ago! Hwaen Ch'uqi On 9/14/21, Guy Stalnaker wrote: > Sorry, that's not terribly clear ... > > Add "--output-24bit" to the TIMIDITY commandline (there may be a way to > put it in the timidity config, but I just used the CLI an

Re: midi sound quality help needed

2021-09-14 Thread Kenneth Wolcott
Hi Guy; May I converse with you regarding this off-list? I feel quite dense :-( Thanks, Ken On Tue, Sep 14, 2021 at 6:02 PM Hwaen Ch'uqi wrote: > > Oh, brilliant!!! Thanks so much, Guy! I wish I knew this a long time ago! > > Hwaen Ch'uqi > > > On 9/14/21, Guy Stalnaker wrote: > > Sorry,

Re: Having problems with phrasing and ties combined

2021-09-14 Thread Carlos Martinez
Ok! thanks. I need to learn how to update on a Mac when using frescobaldi. > On Sep 14, 2021, at 18:17, Jean Abou Samra wrote: > > Le 15/09/2021 à 01:15, Carlos Martinez a écrit : >> Is it this? >> >> Starting lilypond 2.18.2 [nameofile.ly ]... >> Processing >> `/var/fold

Re: Having an actual hyphen in the lyrics?

2021-09-14 Thread Valentin Petzel
Hello Kira, if you use "on –" then you are treating this as one syllable. So this way Lilypond won't align the – under the tied note, if that is still intended. Cheers, Valentin 15.09.2021 00:43:35 Kira Garvie : > Actually, I had quite a few spelling errors, I am sorry! Verse two is > suppose

Re: Having an actual hyphen in the lyrics?

2021-09-14 Thread Aaron Hill
On 2021-09-14 10:25 pm, Valentin Petzel wrote: if you use "on –" then you are treating this as one syllable. So this way Lilypond won't align the – under the tied note, if that is still intended. Could you use a LyricHyphen and just lengthen it to look like an em dash? lyricEmDash = {