Re: Accidentals' font

2020-07-04 Thread Jamie Beardslee
Paolo Prete writes: > 1) Is there a GPL or open-source alternative for FETA fonts for > accidentals that can be used with Lilypond? Have a look through these repos: https://github.com/OpenLilyPondFonts Instructions for using these fonts are available at

Re: move object - accordion register

2020-06-10 Thread Jamie Beardslee
Use \halign to horizontally align markup. A positive value moves it to the left (before), and a negative value moves in to the right (after). For example, the following value of 1.8 moves it just far enough to the left that it isn't above the notehead, but above the time signature. {

Re: Fingering inside staff

2020-05-29 Thread Jamie Beardslee
Should be simple enough to just tweak the vertical offset. \relative c' { \stemUp \override Fingering.staff-padding = #'() 4 g'8-\tweak Y-offset #0 -0 g' }

Re: Resources For Learning Scheme?

2020-05-16 Thread Jamie Beardslee
The Guile reference manual [1] contains a good introduction to the language in general as well as some more in-depth information for working with guile specifically. One of the most useful resources for me in grasping the important concepts of scheme was SICP, which is available in text online