Re: Resetting beat count

2020-03-08 Thread Aaron Hill
On 2020-03-08 3:18 am, Pablo Cordal wrote: Thank you very much Aaron, but I get and error, I attach print, could it be because I have an older version? Yes, I tend to assume folks are on the latest build, which is obviously not always correct. Try: \version "2.18.2" forceBar = #(defi

figured bass in staff context

2020-03-08 Thread Derek Remeš
Hello,I’m a new user as of today. I’ve input my first score in LilyPond today (a Telemann song) and I can’t figure out how to enter the figured bass directly into the staff context, as described here because I’ve used Frescobaldi’s template, which has a different setup. The problem is that the alig

Re: figured bass in staff context

2020-03-08 Thread Lukas-Fabian Moser
Hi Derek, I’m a new user as of today. This is great news - and I'm quite happy that my (and my colleagues') introductions seem not to have been too deterrent. :-) I’ve input my first score in LilyPond today (a Telemann song) and I can’t figure out how to enter the figured bass directly into th

Re: figured bass in staff context

2020-03-08 Thread Pierre Perol-Schneider
Hi Derek and welcome to the pond, just for info, the coding you're looking for is here: http://lsr.di.unimi.it/LSR/Item?id=809 Cheers, Pierre Le dim. 8 mars 2020 à 14:44, Derek Remeš a écrit : > Hello, > > I’m a new user as of today. I’ve input my first score in LilyPond today (a > Telemann song

Re: figured bass in staff context

2020-03-08 Thread Urs Liska
Hi Derek, great to see you took immediate action (both in terms of that file and for subscribing) :-) Well, the remainder of my comments has been short-circuited by Lukas ;- ), and I'm happy to see that also someone else has laready chimed in (to prove my point of the helpful community ...) One add

Re: figured bass in staff context

2020-03-08 Thread Lukas-Fabian Moser
Hi Derek, The problem is that then the figures also have to be entered bottom-up, e.g. <4 2> instead of <2 4>. Someone posted a function some time ago that did this automatically, I'll see if I can find it. It was (as often) Harm who did this: http://lilypond.1069038.n5.nabble.com/Another-F

In TabVoice - how to avoid: "programming error: side-axis not set for grob StrokeFinger"

2020-03-08 Thread Thomas Morley
Hi all, if I want to print StrokeFinger in TabStaff I need to consist "New_fingering_engraver". And it works fine, at first sight... Alas, if there is an additional markup then I get a programming error (even if the markup isn't printed at all). \version "2.20.0" \new TabVoice \with { \consists

Re: Resetting beat count

2020-03-08 Thread David Kastrup
Aaron Hill writes: > On 2020-03-08 3:18 am, Pablo Cordal wrote: >> Thank you very much Aaron, but I get and error, I attach print, >> could it be >> because I have an older version? > > Yes, I tend to assume folks are on the latest build, which is > obviously not always correct. Hey, we are at o

Getting started with music functions

2020-03-08 Thread Stephan Schöll
Hi all When working with larger scores / several voices/instruments, I would like to "loop through every single instrument" to produce the \book-blocks in order to avoid duplicate lilypond code. Let's take the following MVE: --- MVE START --- \version "2.19.83" notesI = \relative c' { c4 d e

Re: Getting started with music functions

2020-03-08 Thread Stephan Schöll
To be precise: It's not the looping through voices which is primarly on my mind, but rather the deduplication of code when generating scores for each instrument. Regards Steff Am 08.03.2020 um 23:57 schrieb Stephan Schöll: > Hi all > > When working with larger scores / several voices/instruments,

Re: Getting started with music functions

2020-03-08 Thread Aaron Hill
On 2020-03-08 3:57 pm, Stephan Schöll wrote: It looks as if the "output" (return value) of a function can only be of type "music", not "score", "book" aso, which would disappoint me. Am I right? Or is there a way to define/change the type of the return value? Music functions are for music. Boo