Re: colouring absolute dynamic markings

2007-05-23 Thread Mats Bengtsson
I recommend you to read carefully the full chapter on Tweaking output. The section Fixing overlapping notation contains a list of commonly tweaked objects. The general principles for how to figure out the relevant object are discribed in the section The \override command with its subsection.

writing identifiers

2007-05-23 Thread madhg
I'd like to have an identifier to represent \once \override Slur #'transparent = ##t \appoggiatura (nearly the same as \grace, but with better spacing when the gracenote is a quarter-note). I tried to model it on: padText = #(define-music-function (parser location padding) (number?)

Re: writing identifiers

2007-05-23 Thread Graham Percival
madhg wrote: But after rereading this section of the doc, I still don't know what should go after parser location or replace (number?). Is that information somewhere accessible (bearing in mind that the Learning Manual is intended for non-experts)? I feel rather at sea here. Follow the

Re: writing identifiers

2007-05-23 Thread madhg
Graham Percival-2 wrote: Follow the links. From the bottom of 4.2, there's a link to 4.3. That has a link to 5.6, which might solve this issue, but it's more likely that then you'll need to follow the link to chapter 12 advanced tweaks with scheme. Thanks, Graham. I had followed

Re: writing identifiers

2007-05-23 Thread Mats Bengtsson
It's not that tricky. At first sight, you may even think that there is no need for a music function at all, but as you probably have found out yourself, an identifier like myGrace = { \once \override Slur #'transparent = ##t \appoggiatura } does not work. The reason is that \appoggiatura itself

Re: in-line note font elements in lilypond-book + latex?

2007-05-23 Thread Mats Bengtsson
Marcus Brinkmann wrote: Hi Mats, as usual, your advice is invaluable. I am getting somewhere, just not quite there yet. At Mon, 21 May 2007 13:11:53 +0200, Mats Bengtsson [EMAIL PROTECTED] wrote: You can simply insert short LilyPond examples in the middle of ordinary text. Example:

Re: writing identifiers

2007-05-23 Thread madhg
Mats Bengtsson-4 wrote: It's not that tricky ... as long as you know what arguments to put into the first line of the function definition. Anyway, you've solved my immediate problem; and I'll use guesswork if I need to do something similar another time. Many thanks, David -- View this

etf2ly

2007-05-23 Thread Helge Kruse
Hello, I tried to use a graphical front end at my Windows XP system. Since Finale Notepad is free, I wrote a simple song and store the MUS file. When I run etf2ly lala.MUS I get always the content % lily was here -- automatically converted by etf2ly from lala.mus This is not too much. Can

Re: in-line note font elements in lilypond-book + latex?

2007-05-23 Thread Mats Bengtsson
Marcus Brinkmann wrote: The first part of the example works fine. The second produces three pages, mostly empty. It seems that the output of the non-fragment is a big chunk, the bounding box is something like 800x600. I can do something with the first example. However, it requires me to

Changing title and stanza font

2007-05-23 Thread Christoph Bartoschek
Hi, how can I change the title font? I tried to use \markup { \override #’(font-name . MetaPro-Bold) {Title} } but this does not work. Additionally I would like to change the numbering of the stanzas to my preferred font. I am able to change the lyrics font but the numbers are still in the

Re: Changing title and stanza font

2007-05-23 Thread Christoph Bartoschek
I have just learned that I have to change the StanzaNumber object: \addlyrics {\override Score . LyricText #'font-name = #MetaPro-Normal \override Score . StanzaNumber #'font-name = #MetaPro-Normal \set stanza = 1. But what object is responsible for the title?