Re: lilyjazz fonts on Mac / Win

2016-04-11 Thread Christoph Friedrich
Good morning hm, now it works. Inspired by Daniel Fütterers post about font problems, i manually moved all fonts (including lilyjazz-text.otf and lilyjazz-chord.otf) from /Users/… / Library/Fonts to /Library/Fonts. In the fontbook.app preferences, the standard location for font installation was

Re: Transpose down a perfect fifth

2016-04-11 Thread David Kastrup
Ryan Michael writes: >> On Monday, April 11, 2016, David Kastrup wrote: >> >>> Ryan Michael > writes: >>> >>> > Sorry all . I was doing \transpose but on something demarcated as >>> > \relative >>> > c'{} >>> > >>> > Which meant it was an octave higher after transposition >>> >>> \transpose wor

Re: Transpose down a perfect fifth

2016-04-11 Thread Ryan Michael
Why is that a bad idea? On Monday, April 11, 2016, David Kastrup wrote: > Ryan Michael > writes: > > > Sorry all . I was doing \transpose but on something demarcated as > \relative > > c'{} > > > > Which meant it was an octave higher after transposition > > \transpose works fine on the result of

Re: Copyright on first page, footer on following

2016-04-11 Thread Carl-Henrik Buschmann
It worked wonders! Thank you. > 10. apr. 2016 kl. 20.04 skrev Thomas Morley : > > 2016-04-10 19:35 GMT+02:00 Carl-Henrik Buschmann : >> Aha! Get it. Thank you for the explanation. >> >> But it leaves me none the wiser on how to do it, it being one footer one the >> first page and a second for t

Re: Recruiting Help for Sheet Music Website

2016-04-11 Thread David Kastrup
GreyBubbleGum writes: > Hey guys. I was wondering if any programmer here or those who think they > can help would be interested in working with me. > > I just use up about 10k to to create this site aerlnodus.com for us music > lover especially those that uses music notation software. I was low

RE: Parallel music, adding a voice, stem not appearing

2016-04-11 Thread Joseph N. Srednicki
Hello: Thank you to Stanton Sanderson, David Kastrup, and Andrew Bernard for offering solutions. I never did figure out the solution to the original issue of the stem not appearing, but I have some solutions. If someone wants to get experience with using voices, shifting, and aligning

Re: Font Problems

2016-04-11 Thread Daniel Fütterer
Hi Andrew, thank you for your quick answer! I tried countless writings of the fonts, but none did work. The solution was that fontconfig did’t search in the User-Fonts I stored in /Users/[Name]/Library/Fonts. I added the search part and everything worked fine. Seems to me that the relative pat

Re: Font Problems

2016-04-11 Thread Alexander Kobel
On 2016-04-11 13:37, Daniel Fütterer wrote: Hello, I want to use alternative fonts for my documents, but I have problems including them. I’m using 2.18.2 with the patch for alternative music fonts (which all work fine). [...] I tried some different fonts, including Charter (worked) and Alegery

Recruiting Help for Sheet Music Website

2016-04-11 Thread GreyBubbleGum
Hey guys. I was wondering if any programmer here or those who think they can help would be interested in working with me. I just use up about 10k to to create this site aerlnodus.com for us music lover especially those that uses music notation software. I was low on budget so it isn't perfect.

Re: Font Problems

2016-04-11 Thread Andrew Bernard
Hi Daniel, it just so happens I also use Linux Biolinum and Linux Libertine with lilypond. The names need to be right, as you said. To see all fonts you can use: $ lilypond -dshow-available-fonts In your case: #:roman "Linux Libertine O" #:sans "Linux Biolinum O" Exactly what I use. Quite ni

Font Problems

2016-04-11 Thread Daniel Fütterer
Hello, I want to use alternative fonts for my documents, but I have problems including them. I’m using 2.18.2 with the patch for alternative music fonts (which all work fine). I tried the following snippets within the \paper-variable: #(define fonts (set-global-fonts #:music "scorl

Re: Parallel music, adding a voice, stem not appearing

2016-04-11 Thread Stanton Sanderson
> On Apr 11, 2016, at 2:23 AM, David Kastrup wrote: > > Stanton Sanderson mailto:stans...@gmail.com>> writes: > >> Here is another (perhaps less elegant) solution: >> >> rh = \relative c'' { >> << >>\voiceOne >>{ >> c2.~ | \stemDown \shiftOnn c >>

Re: Transpose down a perfect fifth

2016-04-11 Thread David Kastrup
Ryan Michael writes: > Sorry all . I was doing \transpose but on something demarcated as \relative > c'{} > > Which meant it was an octave higher after transposition \transpose works fine on the result of \relative. More likely than not you are not using \transpose on the result of \relative bu

Re: Controlling compilation

2016-04-11 Thread David Kastrup
David Sumbler writes: > As an experiment, I produced this: > > File: experimentNotes.ly > > \version "2.19.24" > > compileA = > \score { > \new Staff { >a' a' a' a' > } > \layout { } > } [...] > #(if sectionA #{ \compileA #} ) #... at top level is executed and the result ignored to

Re: Parallel music, adding a voice, stem not appearing

2016-04-11 Thread David Kastrup
Stanton Sanderson writes: > Here is another (perhaps less elegant) solution: > > rh = \relative c'' { > << > \voiceOne > { > c2.~ | \stemDown \shiftOnn c > } > \\ > \new Voice { > \voiceTwo >

Re: Controlling compilation

2016-04-11 Thread Jan-Peter Voigt
Hi David, compileA is not compiled, because it is just a music-expression inside a scheme-expression. But if you add it to the current book, it will appear. So your example will work with a tiny extension: #(if sectionA (add-score #{ \compileA #} )) But you should look around for templating

Re: Controlling compilation

2016-04-11 Thread Urs Liska
Hi David, I'm sure this could be made work, with some more complex Scheme code. But If I'm understanding you correctly there seems to be a simpler way. You seem to be ready to *do* some manual changes to your master file (e.g. defining a variable or not). So you could simply put your different sc