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'{} >>> > >>> >

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

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

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

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

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

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

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

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

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 > writes: > >> Here is another (perhaps less elegant) solution: >> >> rh = \relative c'' { >> << >>\voiceOne >>{ >>

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

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

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 { >

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

Controlling compilation

2016-04-11 Thread David Sumbler
When editing a piece with several instruments and several movements, there are various outputs I would like, such as a complete full score, a full score of a single movement, a complete instrumental part, the instrument part of a single movement, and also a midi file of any of these items. I