Re: Lilypond requires Python2

2020-05-01 Thread Martin Neubauer
On 26/04/2020 16:30, Jonas Hahnfeld wrote: > Yes, 2.20.0 "requires" Python2 for building and scripts like lilypond- > book (not for running lilypond itself though). Will there be python3 based release of the 2.20 branch in the foreseeable future then (i.e this year?) As the current maintainer of

Re: Break visibility for notes?

2020-05-01 Thread Fr. Samuel Springuel
> On 1 May, 2020, at 6:28 AM, Thomas Morley wrote: > > sorry for coming back to this that late. Because of Corona the > workload for my regular job exploded ... Totally understandable. I’ve got plenty of things to work on and am not on a deadline for this so I’m not concerned with the delay.

Re: /markup with Chinese character failure

2020-05-01 Thread Max Xiong
Hi Dario, First you need to install a Chinese font. It appears that your system cannot find one. If you are using the latest version of lilypond, it is possible to change the config for the default lilypond fonts. There should be a file called 00-lilypond-fonts.conf on your system. You can add a

Re: Can system-system spacing be altered within a \score block?

2020-05-01 Thread Pierre Perol-Schneider
Oh no, that would cause errors for sure. So, you'll have some work for sure... Cheers, Pierre (PS. don't forget to reply to the list) Le ven. 1 mai 2020 à 17:19, Brent Annable a écrit : > Hey Pierre, > > Aha, I see an unfortunate coincidence has muddied the waters a little. By > pure chance,

Re: Fermata over rest gives error

2020-05-01 Thread Lukas-Fabian Moser
Hi Bernhard, Am 01.05.20 um 15:28 schrieb Bernhard Kleine: The piece \version "2.20.0" \language "deutsch" sopranoVoice = \relative c'' {   \dynamicUp   b,4 d f b | R1\fermata } \score {   \new Staff \with {     instrumentName = "Sopran"   } {  \sopranoVoice  }   \layout { } } raises an

Re: Fermata over rest gives error

2020-05-01 Thread Leo Correia de Verdier
In that case you can use \fermataMarkup (Från telefonen) > 1 maj 2020 kl. 15:28 skrev Bernhard Kleine : > > The piece > \version "2.20.0" > \language "deutsch" > sopranoVoice = \relative c'' { \dynamicUp b,4 d f b | R1\fermata > } > > \score { > \new Staff \with { > instrumentName =

Re: Fermata over rest gives error

2020-05-01 Thread Bernhard Kleine
solved with \fermataMarkup Am 01.05.2020 um 15:28 schrieb Bernhard Kleine: > The piece > \version "2.20.0" > \language "deutsch" > sopranoVoice = \relative c'' {   \dynamicUp   b,4 d f b | R1\fermata > } > > \score { >   \new Staff \with { >     instrumentName = "Sopran"   } {  \sopranoVoice  } >

Fermata over rest gives error

2020-05-01 Thread Bernhard Kleine
The piece \version "2.20.0" \language "deutsch" sopranoVoice = \relative c'' {   \dynamicUp   b,4 d f b | R1\fermata } \score {   \new Staff \with {     instrumentName = "Sopran"   } {  \sopranoVoice  }   \layout { } } raises an error. When  \fermata is deleted, the error goes away. However I

Re: Can system-system spacing be altered within a \score block?

2020-05-01 Thread Pierre Perol-Schneider
Brent, please find herewith the modified files. Cheers, Pierre Le ven. 1 mai 2020 à 12:57, Brent Annable a écrit : > Hi Pierre, > > Thanks for your answer. I did try that, but because of my file structure > it doesn't work. As soon as I use \bookpart anywhere in my master file, the > output is

Re: Two bookparts one the same page

2020-05-01 Thread Pierre Perol-Schneider
Ok, I understand now, it's simply because of the indent. Solved. Cheers, Pierre Le ven. 1 mai 2020 à 10:13, Pierre Perol-Schneider < pierre.schneider.pa...@gmail.com> a écrit : > Hi List, > As a workaround to set the system-system spacing of two sores on the same > page, I was thinking of this

Re: Can system-system spacing be altered within a \score block?

2020-05-01 Thread Kieren MacMillan
Hi Brent, > What I want to do is bring the systems of 'All things bright and beautiful' > closer together on the page. If I do ragged-bottom = ##t they are too close > together; I could insert some \vspaces to move the whole piece down a bit, > but the systems remain too bunched-up for my

Re: Can system-system spacing be altered within a \score block?

2020-05-01 Thread Brent Annable
Hi Pierre, Thanks for your answer. I did try that, but because of my file structure it doesn't work. As soon as I use \bookpart anywhere in my master file, the output is corrupted for some reason -- probably because I'm including multiple files that use higher-level expressions and variables with

Re: Break visibility for notes?

2020-05-01 Thread Thomas Morley
Am So., 26. Apr. 2020 um 20:25 Uhr schrieb Fr. Samuel Springuel : > > Okay, I’ve been applying this to my project and came across a problem with > the version I posted earlier: ledger lines are visible for the invisible > notes. Now, I’ve tried applying the line-position function to >

Two bookparts one the same page

2020-05-01 Thread Pierre Perol-Schneider
Hi List, As a workaround to set the system-system spacing of two sores on the same page, I was thinking of this -- bad -- hack: \version "2.20.0" un = { \repeat unfold 16 s1 \bar "|." } deux = { \repeat unfold 8 s1 \bar "|." } \book { \header { title = "Titre" } \bookpart {

Re: Can system-system spacing be altered within a \score block?

2020-05-01 Thread Pierre Perol-Schneider
Hi Brent, You can put the paper bloc in a bookpart, e.g.: \version "2.20.0" music = { \repeat unfold 100 s1 } \book { \bookpart { \score { \music } \header { piece = \markup\bold\fontsize #5 \fill-line { "15" } } \paper { system-system-spacing.basic-distance = 15 } } \bookpart