Re: Identify included files

2020-05-15 Thread Valentin Villenave
On 5/15/20, Fr. Samuel Springuel wrote: > Before I start writing a script to do this, is there an existing tool which > will identify all the `\include` files that a LilyPond file depends on? > Even better, one that will work in a recursive fashion? Since 2.19.39, you can simply use this: #(disp

Re: Suggestion to make sharps and flats persistent

2020-05-15 Thread Hans Åberg
> On 15 May 2020, at 00:38, Karlin High wrote: > > On 5/14/2020 5:32 PM, antlists wrote: >> Because Americans like to think they speak English (but they are mistaken!). >> I play crotchets, not quarter-notes. I don't know what other weird language >> habits the Americans have ... :-) > > You

Re: Suggestion to make sharps and flats persistent

2020-05-15 Thread Jacques Menu
Excellent Hans, sending that pun to our flute player, think she’s from Texas… > Le 15 mai 2020 à 10:45, Hans Åberg a écrit : > > >> On 15 May 2020, at 00:38, Karlin High wrote: >> >> On 5/14/2020 5:32 PM, antlists wrote: >>> Because Americans like to think they speak English (but they are >

Re: Suggestion to make sharps and flats persistent

2020-05-15 Thread Hans Åberg
It was mentioned on TwoSetViolin. > On 15 May 2020, at 10:50, Jacques Menu wrote: > > Excellent Hans, sending that pun to our flute player, think she’s from Texas… > > >> Le 15 mai 2020 à 10:45, Hans Åberg a écrit : >> >> >>> On 15 May 2020, at 00:38, Karlin High wrote: >>> >>> On 5/14/2

Current octave in relative mode

2020-05-15 Thread Klaus Blum
Hi, I have a function that uses a music expression twice. My problem is: In relative mode, this expression can lead into a different octave. Then the second application of the music expression starts from that new octave. (See the last two invocations of "\highlight" in the example below) Is the

Re: Current octave in relative mode

2020-05-15 Thread David Kastrup
Klaus Blum writes: > Hi, > > I have a function that uses a music expression twice. > My problem is: > In relative mode, this expression can lead into a different octave. Then > the second application of the music expression starts from that new octave. > (See the last two invocations of "\highlig

Re: Current octave in relative mode

2020-05-15 Thread antlists
There's a function Han Wen wrote for me years ago, that's made its way in to standard lilypond. It's probably mentioned in the docu about relative mode. Something along the lines of c1 \highlight { c8 d e f g f e d } \setAbsoluteOctave ... c1 \highlight { c8 d e f g a b c }

Re: Current octave in relative mode

2020-05-15 Thread Klaus Blum
Hi David, That's perfect, thanks a lot! Cool to know that this doesn't require complicated tweaks and hacks... Cheers, Klaus

Re: Current octave in relative mode

2020-05-15 Thread David Kastrup
Klaus Blum writes: > Hi David, > > That's perfect, thanks a lot! > Cool to know that this doesn't require complicated tweaks and hacks... If you think this isn't a complicated hack, you haven't looked at the source code of make-relative... Its three arguments, by the way, are a list of variable

Re: Identify included files

2020-05-15 Thread Fr. Samuel Springuel
> On 15 May, 2020, at 3:43 AM, Valentin Villenave > wrote: > > On 5/15/20, Fr. Samuel Springuel wrote: >> Before I start writing a script to do this, is there an existing tool which >> will identify all the `\include` files that a LilyPond file depends on? >> Even better, one that will work in

Filling In a Half Note?

2020-05-15 Thread melophobic
Is there a way to fill in just the middle part of a half note (or whole note too) with white? I have tried \whiteout, but that gives me white around the notehead as well. Thank you, Brian -- Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

Re: Identify included files

2020-05-15 Thread Jacques Menu Catalina
Hello Samuel, The tool you’re looking for to track changed files and re-handle them is ‘make’. JM > Le 15 mai 2020 à 18:03, Fr. Samuel Springuel a écrit : > >> On 15 May, 2020, at 3:43 AM, Valentin Villenave >> wrote: >> >> On 5/15/20, Fr. Samuel Springuel wrote: >>> Before I start writing

Page numbers

2020-05-15 Thread brahim.pro
Hello, I would like to change the page number position. Now, it's in the left for right pages and on the right for left pages. I would like to put them always on the left. And I would like also to change its font size. How could I do that? Thanks Brahim Sent with [ProtonMail](https://protonm

Re: Filling In a Half Note?

2020-05-15 Thread Aaron Hill
On 2020-05-15 9:19 am, melophobic wrote: Is there a way to fill in just the middle part of a half note (or whole note too) with white? I have tried \whiteout, but that gives me white around the notehead as well. Here's an option: \version "2.20.0" whiteoutHalfNote = \tweak stencil #(

Re: Filling In a Half Note?

2020-05-15 Thread melophobic
Interesting. That will most likely work. Thank you! Brian -- Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

Re: Filling In a Half Note?

2020-05-15 Thread Pierre Perol-Schneider
Hi Brian, Another option could be to use: http://lsr.di.unimi.it/LSR/Item?id=890 And do: \version "2.20.0" whiteoutHalfNoteAlter = \tweak stencil #(lambda (grob) (grob-interpret-markup grob #{ \markup \override #'(filled . #t) { \combine \path #0

Re: Page numbers

2020-05-15 Thread Pierre Perol-Schneider
Hi Brahim, Try: \version "2.20.0" \paper { print-first-page-number = ##t oddHeaderMarkup = \markup \fill-line { \null \fontsize #5 \on-the-fly \print-page-number-check-first \fromproperty #'page:page-number-string } evenHeaderMarkup = \oddHeaderMarkup } { c' } \pageBreak { c' } \p

Re: Identify included files

2020-05-15 Thread Fr. Samuel Springuel
> On 15 May, 2020, at 12:03 PM, Fr. Samuel Springuel > wrote: > >> On 15 May, 2020, at 3:43 AM, Valentin Villenave >> wrote: >> >> On 5/15/20, Fr. Samuel Springuel wrote: >>> Before I start writing a script to do this, is there an existing tool which >>> will identify all the `\include` file

Re: Identify included files

2020-05-15 Thread David Kastrup
"Fr. Samuel Springuel" writes: > Before I start writing a script to do this, is there an existing tool > which will identify all the `\include` files that a LilyPond file > depends on? Even better, one that will work in a recursive fashion? You can use a file like %% Toplevel initialisation fi

Re: Current octave in relative mode

2020-05-15 Thread Flaming Hakama by Elaine
> > -- Forwarded message -- > From: Klaus Blum > To: "lilypond-user@gnu.org" > Cc: > Bcc: > Date: Fri, 15 May 2020 12:01:06 +0200 > Subject: Current octave in relative mode > Hi, > > I have a function that uses a music expression twice. > My problem is: > In relative mode, this ex

Re: Filling In a Half Note?

2020-05-15 Thread melophobic
This is definitely an option as well. Thank you! -- Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

Resources For Learning Scheme?

2020-05-15 Thread melophobic
Can anyone point me to a good resource or two for learning scheme? I have looked through the examples on Lilypond.org and a few on lilypondblog.org, but I am looking for more in depth examples of things like if statements and more complex use of variables. Should I just look up books on Guile?

Playing with Quartertones

2020-05-15 Thread Michael Heerdegen
Hello, I'm a newby. I want to know if lilypond is a good tool for my use case: When I have a midi file containing quartertones, like the ones on this page for example: https://en.wikipedia.org/wiki/Quarter_tonehttps://en.wikipedia.org/wiki/Quarter_tone or, more generally, other "microtones"

Re: Resources For Learning Scheme?

2020-05-15 Thread Pierre Perol-Schneider
Hi Brian, See: --- http://lilypond.1069038.n5.nabble.com/Learning-Scheme-td32429.html --- http://lilypond.1069038.n5.nabble.com/Scheme-learning-td213414.html --- http://lilypond.1069038.n5.nabble.com/Scheme-and-Guile-as-it-relates-to-Lilypond-td46910.html Cheers, Pierre Le sam. 16 mai 2020 à 05:00

Re: Resources For Learning Scheme?

2020-05-15 Thread Jacques Peron
This one, by Urs Liska, is specifically about scheme with LilyPond : https://scheme-book.ursliska.de/scheme/expressions.html Le sam. 16 mai 2020 à 05:00, melophobic a écrit : > Can anyone point me to a good resource or two for learning scheme? I have > looked through the examples on Lilypond.org