compile error 2.10.25

2007-05-21 Thread Johannes Schöpfer
hi, i get this error when compiling 2.10.25: ttf.cc: In function 'void print_body(void*, FT_FaceRec_*)': ttf.cc:250: error: 'FT_Sfnt_Table_Info' was not declared in this scope ttf.cc:371: error: 'FT_Sfnt_Table_Info' was not declared in this scope make[1]: *** [out/ttf.o] Error 1 make[1]: Leaving

Re: compile error 2.10.25

2007-05-21 Thread Mats Bengtsson
See http://lists.gnu.org/archive/html/lilypond-devel/2007-05/msg00046.html you need a newer version of Freetype. /Mats Johannes Schöpfer wrote: hi, i get this error when compiling 2.10.25: ttf.cc: In function 'void print_body(void*, FT_FaceRec_*)': ttf.cc:250: error: 'FT_Sfnt_Table_Info' wa

Re: handwritten font, drupal plugin

2007-05-21 Thread Mats Bengtsson
Search the mailing list archives for "jazz font". Especially, see http://lists.gnu.org/archive/html/lilypond-user/2007-03/msg00385.html For the template, you might find something useful in the mailing list archives as well. Otherwise, I would recommend you to try to do it yourself and if you get

Re: Integrated solution for converting midi output to wav/mp3?

2007-05-21 Thread Hans Aberg
On 11 May 2007, at 00:49, Graham Percival wrote: Does someone know of a open source solution for converting LilyPond midi to wav or (preferrably) to mp3? timidity (or timidity++) to wav, then lame (or your favorite encoder) to mp3. It seems that TiMidity++ requires a configuration file t

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

2007-05-21 Thread Mats Bengtsson
You can simply insert short LilyPond examples in the middle of ordinary text. Example: \documentclass[a4paper]{article} \begin{document} Here is a short LilyPond example \begin[fragment,relative]{lilypond} c4 \end{lilypond} embedded within ordinary text. Here is another example with only a Tex

Re: "between-system-space" command using OpenOffice

2007-05-21 Thread Mats Bengtsson
If you want to add 10mm space between each score line, add the following LaTeX definition in the preamble of your LaTeX file. \newcommand{\betweenLilyPondSystem}[1]{\\[10mm]} An alternative if you want the lines to spread equally over the page, is to use a definition like \newcommand{\betweenL

How to center arbitrary text on page?

2007-05-21 Thread Chad Etzel
Hi All, I am trying to write a centered, arbitrary line of text in between two \score elements. I know I can write whatever I want with a \markup element, but I cannot for the life of me get it to be centered across the page. \center-align doesn't seem to do what I want, it just centers the text

Re: How to center arbitrary text on page?

2007-05-21 Thread Kieren MacMillan
Hi, Chad: Look at \fill-line {}. Cheers, Kieren. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: umlaut trouble; was Weird output

2007-05-21 Thread Fred Leason
David: Can't help you with windows. However on OS X (Lilypond 2.10.20) the italic umlauts printed fine. I used TexShop which is a confirmed "UTF-8 Unicode" editor. Furthermore, your email (X-Enigmail-Version: 0.94.1.0; Content-Type: text/plain; charset=ISO-8859-1; Content-Transfer-Encodin

Re: umlaut trouble; was Weird output

2007-05-21 Thread David Bobroff
Thanks, the italic umlaut problem turned out to be a problem with JPedal (jEdit's PDF viewer). When viewed with Acrobat Reader the italic umlauts were fine. As for the problem in the lyrics it turned out to be a file encoding issue. -David Fred Leason wrote: > David: > > Can't help you with wi

Re: Leadsheet-template - 4 voices...

2007-05-21 Thread Mats Bengtsson
I'm not sure I understand exactly what you want to achieve, but here's one possibility which at least puts the tenor and basso on a separate stave. \score { << \set Score.skipBars = ##t \set Score.printpagenumber = ##f %\set Score.barNumberVisibility = #(every-nth-bar-number-visible 1) \set Score

Re: Integrated solution for converting midi output to wav/mp3?

2007-05-21 Thread Hans Aberg
On 21 May 2007, at 13:34, Jonas Nyström wrote: I've been trying the Goemon cfg (http://www.anime.net/~goemon/ timidity/) ... Thank you, Jonas! but with no success. (A blank wav-file is the closest I've been. Maybe the patch names are wrong, I don't know.) Can someone give a clue how to ge

Re: how to write notes without staff?

2007-05-21 Thread Mats Bengtsson
To make the staff lines of an ordinary Staff context transparent, you can use \override Staff.StaffSymbol #'transparent = ##t However, if you only want to notate rhythms and don't need any beamed notes, then it may be easier to obtain what you want to do using text markup. The following example i