Re: how to include various ascii characters (like: !) in the text?
On Tue, 2003-06-17 at 06:47, Graham Percival wrote: > On Tue, 17 Jun 2003 05:31:43 +0200 > ario <[EMAIL PROTECTED]> wrote: > > > If I include a '!' in the lyrics, lilypond complains. > > I tried using typing "!", and '!' but none works. > > I need this feature to use the complete Cyrillic character set. > > Does anybody know how to include all ascii characters? > > Having to input the ascii numbering would do too for me. > > I believe you want \\! Thanks for answering Graham, I made a mistake, I put words={ } "!" With the "!" within the brackets it works :/ But still I'm afraid that this is not the solution. When I do WordsFouFO = \lyrics {"#"} it says: ly2dvi:error: LaTeX failed on the output file. ly2dvi:error: The error log is as follows: ! You can't use `macro parameter character #' in restricted horizontal mode. ...utscale \magfontOLYUomMMBo \hbox {## } With \lyrics{\\#} it says: Parsing...Backtrace: 0* } ERROR: In expression }: ERROR: Unbound variable: } etc... Isn't there a method to tell that I want ascii character 214 from font wncyr10 for instance? And does one know where I can get the Cyrillic R, mirrorred about its vertical axis, and this character which resembles most the 'X', but with some more small lines? (sorry, I don't know the name of it). thanks, arie > Cheers, > - Graham ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
installation woes on OpenBSD
Hi, and thanks for wonderful software. I'm trying to compile and install Lilypond 1.6.9 on OpenBSD 3.3, but I can't seem to get past the ./configure stage. I get the following error: ERROR: Please install required programs: python.h (python-devel, python-dev or libpython-dev package) Of course, I do have Python installed, recently built from source using the ports system, but there is no python.h to be found anywhere on my system. Here's what python calls itself: Python 2.2.1 (#1, May 27 2003, 11:21:33) [GCC 2.95.3 20010125 (prerelease, propolice)] on openbsd3 So, where do I go from here? Do I need to find an older python? A different python? A newer (development, rather than stable) Lilypond? Or should I write a bogus python.h that ./configure can find? -- Arvid ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: installation woes on OpenBSD
You need to install not only the python program but also the development libraries. I'm not familiar with the OpenBSD distribution but there may be a separate package with these include and lib files. /Mats Arvid Grøtting wrote: Hi, and thanks for wonderful software. I'm trying to compile and install Lilypond 1.6.9 on OpenBSD 3.3, but I can't seem to get past the ./configure stage. I get the following error: ERROR: Please install required programs: python.h (python-devel, python-dev or libpython-dev package) Of course, I do have Python installed, recently built from source using the ports system, but there is no python.h to be found anywhere on my system. Here's what python calls itself: Python 2.2.1 (#1, May 27 2003, 11:21:33) [GCC 2.95.3 20010125 (prerelease, propolice)] on openbsd3 So, where do I go from here? Do I need to find an older python? A different python? A newer (development, rather than stable) Lilypond? Or should I write a bogus python.h that ./configure can find? -- = Mats Bengtsson Signal Processing Signals, Sensors and Systems Royal Institute of Technology SE-100 44 STOCKHOLM Sweden Phone: (+46) 8 790 8463 Fax: (+46) 8 790 7260 Email: [EMAIL PROTECTED] WWW: http://www.s3.kth.se/~mabe = ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: installation woes on OpenBSD
Arvid Grøtting <[EMAIL PROTECTED]> writes: > Hi, and thanks for wonderful software. Thanks. > I'm trying to compile and install Lilypond 1.6.9 on OpenBSD 3.3, but I > can't seem to get past the ./configure stage. I get the following > error: > > ERROR: Please install required programs: python.h (python-devel, python-dev or > libpython-dev package) It looks like this message is misguiding you a bit. If you look at the checks that configure does, you'll notice that you need Python.h > Of course, I do have Python installed, recently built from source > using the ports system If you installed python in a non-standard* prefix, you must help configure by doing something like CPPFLAGS='-I /opt/python/include' ./configure see INSTALL.txt. You may want to report a bug against the gcc or python package; if you install python, I think that gcc should find the header file. Good luck, Jan. -- Jan Nieuwenhuizen <[EMAIL PROTECTED]> | GNU LilyPond - The music typesetter http://www.xs4all.nl/~jantien | http://www.lilypond.org ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: swing eighth notes in sound output?
On Monday 16 June 2003 11:34 pm, Niki Pantelias wrote: > Hi everyone, > > I'm a new user working on some jazz arrangements using LilyPond, > and would like to get lily to understand "swing" eighths -- i.e, > handle the music so that regular eighth notes appear in the paper > output, but in the sound file, these are played with a "triplet" > feel. Does anyone know if there is a way to do this? A separate midi version may be the only way right now. You could use \time 33/32 a8 \time 31/32 a8 (experiment) or use very large time values with ties for the long notes. You will find that jazz 8ths are much closer to straight 8ths than they are to a triplet, or even to a 3:2 quintuplet. I imagined that the latter would do it until I tried it. DaveA > -- The biggest losers of all are the winners of an unjust war. The wars are not over. Just the winning part is over. Bush lied. Thousands died. dra@ http://www.openguitar.com ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Online music notation guide
For those of you who don't already have a number of thick books in your shelf on music typesetting, I recommend to take a look at http://www.mpa.org/notation.pdf Thanks to Eva who hinted to this link on the MusiXTeX mailing list. /Mats -- = Mats Bengtsson Signal Processing Signals, Sensors and Systems Royal Institute of Technology SE-100 44 STOCKHOLM Sweden Phone: (+46) 8 790 8463 Fax: (+46) 8 790 7260 Email: [EMAIL PROTECTED] WWW: http://www.s3.kth.se/~mabe = ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: installation woes on OpenBSD
Mats Bengtsson <[EMAIL PROTECTED]> writes: > You need to install not only the python program but also the > development libraries. I'm not familiar with the OpenBSD > distribution but there may be a separate package with these > include and lib files. Actually, I seem to have the development libraries installed. And I just got it working; the error's in the error message, which didn't tell me I was looking for Python.h (actually python-2.1/Python.h), not python.h. So now it works, apart from a small font problem that I'll probably manage to correct quite nicely. Here's a patch to INSTALL.txt to make the procedure clearer: --- INSTALL.txt.origTue Jun 17 12:59:00 2003 +++ INSTALL.txt Tue Jun 17 13:06:16 2003 @@ -651,6 +651,14 @@ where/how you installed kpathsea and other libraries, you may need to refer to the section "Linking to kpathsea". + The following should work, at least on 3.3 with python and texmf +packages/ports installed: + +export CPPFLAGS=" -I/usr/local/include -I/usr/local/lib/kpathsea" +export LDFLAGS=-L/usr/local/lib +./configure +gmake all + NetBSD -- ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: how to include various ascii characters (like: !) in the text?
The names of the letters you are looking for are pronounced "yah" and "zhuh" (as in the word pleasure). These are just my method of approximating the sound of these letter's names in English. The unicode names are "Cyrillic capital letter zhe" and "Cyrillic capital letter ya". In Cyrillic, the names of course are written as just the letters themselves. I don't understand where you are getting the other Cyrillic letters. Are you trying to approximate them with roman/english letters? Or are you using a Cyrillic font? On Tuesday, June 17, 2003, at 04:00 AM, ario wrote: And does one know where I can get the Cyrillic R, mirrorred about its vertical axis, and this character which resembles most the 'X', but with some more small lines? (sorry, I don't know the name of it). thanks, arie ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: how to include various ascii characters (like: !) in the text?
On Monday 16 June 2003 11:31 pm, ario wrote: > If I include a '!' in the lyrics, lilypond complains. > I tried using typing "!", and '!' but none works. > I need this feature to use the complete Cyrillic character set. > Does anybody know how to include all ascii characters? > Having to input the ascii numbering would do too for me. > > thanks, > arie - very happy with the Lilypond results until now... You have \include "english.ly"? "!" is not supposed to be a special character in English, but perhaps in Dutch it is. Otherwise, you have found a bug to report. Try "\\!" and "\!" . Thanks for the question, because if "$\\!$" gives a bit of negative space I'll be very glad I looked it up in ``The Not So Short Introduction to \latex 2\epsilon''. With math mode, "\!" should give you some negative space in text, and that should be very handy for us if it works. Ascii is probably not going to happen, but see 3.10 and 5.4 in your downloaded and printed copy of "The Not So Short Intro..." and I think you'll be pretty happy. DaveA -- The biggest losers of all are the winners of an unjust war. The wars are not over. Just the winning part is over. Bush lied. Thousands died. dra@ http://www.openguitar.com ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: how to include various ascii characters (like: !) in the text?
If you want ASCII character 214, you just need a text editor that enables you to input that ASCII value as a character. In Emacs, for example, type CTRL-Q 3 2 6 RETURN (since 326 is octal for 214). If you have a German or nordic keyboard, you can also press Ö, since it has character code 214 in the Latin 1 encoding. If you have a Cyrillic keyboard, I'm sure you can just press the desired key directly unless your editor plays some funny games. To set the font, you'll have to say something like: \property Lyrics . LyricText \override #'font-name = #"wncyr10" /Mats ario wrote: On Tue, 2003-06-17 at 06:47, Graham Percival wrote: On Tue, 17 Jun 2003 05:31:43 +0200 ario <[EMAIL PROTECTED]> wrote: If I include a '!' in the lyrics, lilypond complains. I tried using typing "!", and '!' but none works. I need this feature to use the complete Cyrillic character set. Does anybody know how to include all ascii characters? Having to input the ascii numbering would do too for me. I believe you want \\! Thanks for answering Graham, I made a mistake, I put words={ } "!" With the "!" within the brackets it works :/ But still I'm afraid that this is not the solution. When I do WordsFouFO = \lyrics {"#"} it says: ly2dvi:error: LaTeX failed on the output file. ly2dvi:error: The error log is as follows: ! You can't use `macro parameter character #' in restricted horizontal mode. ...utscale \magfontOLYUomMMBo \hbox {## } With \lyrics{\\#} it says: Parsing...Backtrace: 0* } ERROR: In expression }: ERROR: Unbound variable: } etc... Isn't there a method to tell that I want ascii character 214 from font wncyr10 for instance? And does one know where I can get the Cyrillic R, mirrorred about its vertical axis, and this character which resembles most the 'X', but with some more small lines? (sorry, I don't know the name of it). thanks, arie Cheers, - Graham ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user -- = Mats Bengtsson Signal Processing Signals, Sensors and Systems Royal Institute of Technology SE-100 44 STOCKHOLM Sweden Phone: (+46) 8 790 8463 Fax: (+46) 8 790 7260 Email: [EMAIL PROTECTED] WWW: http://www.s3.kth.se/~mabe = ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: installation woes on OpenBSD
Arvid Grøtting <[EMAIL PROTECTED]> writes: > So now it works, [...] Did I say it works? Only apparently so; ly2dvi seemed to work because it goes on after lilypond fails with a memory error. I've recompiled with -fno-stack-protector, and that seems to work. Having to disable stack protection indicates unclean usage of the stack somewhere within lilypond; someone might want to look into that. -- Arvid ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: how to include various ascii characters (like: !) in the text?
Thanks for the question, because if "$\\!$" gives a bit of negative space I'll be very glad I looked it up in ``The Not So Short Introduction to \latex 2\epsilon''. With math mode, "\!" should give you some negative space in text, and that should be very handy for us if it works. If you want to use it in the Lyrics of a score, I'm afraid this won't work the way you expect it, since the spacing calculations in Lilypond don't understand these more advanced aspects of LaTeX and will get completely confused. You can certainly use it in the title, though. Also, you could use things such as \hspace{-3mm}. /Mats ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: turning off warnings
I can't give any good answer about the warnings (except for a sed script to sort them out), but fermatas and staccatos are typeset by the graphical object (grob) Script, so \property TabVoice.Script \override #'transparent = ##t should work. You can easily find this out yourself, for example by searching for "fermata" in the index of the on-line manual. If you scroll down the page, you'll find a link to "Script" which lists all the possible properties that affect fermatas and other articulation marks. /Mats Simon Weatherill wrote: I'm notating some guitar music and would love to get rid of the warnings I get from string numbers on the staff and glissando's on the tabulature. I'm used to lint so I don't like to see any warnings. I've included a couple of the warnings. Also, I'd like to keep the tab staff clean, so I turned off the stems, beams, dots and tuplets. How can I turn off a fermata or a staccato? \property TabStaff.TimeSignature \override #'transparent = ##t \property TabVoice.Beam \override #'transparent = ##t \property TabVoice.Dots \override #'transparent = ##t \property TabVoice.Stem \override #'transparent = ##t \property TabVoice.Fingering \override #'transparent = ##t \property TabVoice.tupletInvisible = ##t Thanks, Simon - Warnings - Staff: /home/simon/cvs/lily/untitled-1.ly:123:35: warning: Junking request: `String_number_req': e,,8 g' b e fis\glissando a g\2 /home/simon/cvs/lily/untitled-1.ly:178:13: warning: Junking request: `String_number_req': e2 ais2\4 TabStaff: /home/simon/cvs/lily/untitled-1.ly:152:29: warning: Junking request: `Glissando_req': e,,8 g' b e fis\glissando a g fis b1\fermata /home/simon/cvs/lily/untitled-1.ly:201:11: warning: Adding note head to incompatible stem (type = 8): b4. cis /home/simon/cvs/lily/untitled-1.ly:201:5: warning: Adding note head to incompatible stem (type = 8): e 4. fis-1 ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user -- = Mats Bengtsson Signal Processing Signals, Sensors and Systems Royal Institute of Technology SE-100 44 STOCKHOLM Sweden Phone: (+46) 8 790 8463 Fax: (+46) 8 790 7260 Email: [EMAIL PROTECTED] WWW: http://www.s3.kth.se/~mabe = ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: Cygwin+XEmacs+Bash+TeX+XP
It seems that the bash you run in the windows version of XEmacs doesn't read the setup files from your cygwin installation. In particular, it looks as if it doesn't read the files in the directory /etc/profile.d/. Unfortunately, I know far too little about cygwin and the Windows port of Emacs to be able to give any solution. /Mats Nigel Warner wrote: Dear All, Firstly Lilypond works just fine from a Cygwin window using the MS-Windows distribution 1.6.8. I have managed to get the native version of Xemacs to use the bash shell as a internal shell in a buffer but, although lilypond-book works LaTeX does not. I have pared my path down to the bare minimum as under. Does anyone have any bright ideas as to how I can get this to work ?. I have decided that since I am going to move to Linux full time in the near future I had best become familiar with XEmacs (XEmacs because I need big fat proportional fonts and I don't really want to run an X server) and it would be nice not to have to leave the editor. Error message under as appearing in XEmacs. (/usr/share/texmf/tex/latex/misc/geometry.sty (/usr/share/texmf/tex/latex/config/geometry.cfg)) (./lug.aux) (/usr/share/texmf/tex/latex/psnfss/ot1pnc.fd) (./lily-1802792644.tex ! I can't find file `lilyponddefs'. l.29 \input lilyponddefs Please type another input file name: (/usr/share/texmf/tex/latex/tools/.tex File ignored) ! Undefined control sequence. l.31 \outputscale = \lilypondpaperoutputscale\lilypondpaperunit ? x No pages of output. Transcript written on lug.log. Failed to process through LaTeX Loki>echo $PATH /bin:/usr/bin:/home/Nigel/scripts Loki> Regards, Nigel. ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user -- = Mats Bengtsson Signal Processing Signals, Sensors and Systems Royal Institute of Technology SE-100 44 STOCKHOLM Sweden Phone: (+46) 8 790 8463 Fax: (+46) 8 790 7260 Email: [EMAIL PROTECTED] WWW: http://www.s3.kth.se/~mabe = ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: how to include various ascii characters (like: !) in the text?
On Tue, 2003-06-17 at 14:02, Mats Bengtsson wrote: > If you want ASCII character 214, you just need a text editor that > enables you to input that ASCII value as a character. > In Emacs, for example, type > CTRL-Q 3 2 6 RETURN > (since 326 is octal for 214). If you have a German or nordic > keyboard, you can also press Ö, since it has character code 214 in > the Latin 1 encoding. If you have a Cyrillic keyboard, I'm sure you > can just press the desired key directly unless your editor plays > some funny games. > > To set the font, you'll have to say something like: > \property Lyrics . LyricText \override #'font-name = #"wncyr10" Yes, I did that. I use keyboard USA/International here. Isn't there some string indicating (as in HTML code) to lily (or is it finally TeX that would have to do it?) that I want a specific character number such and so from the font? Thanks for your help. arie >/Mats > > ario wrote: > > On Tue, 2003-06-17 at 06:47, Graham Percival wrote: > > > >>On Tue, 17 Jun 2003 05:31:43 +0200 > >>ario <[EMAIL PROTECTED]> wrote: > >> > >> > >>>If I include a '!' in the lyrics, lilypond complains. > >>>I tried using typing "!", and '!' but none works. > >>>I need this feature to use the complete Cyrillic character set. > >>>Does anybody know how to include all ascii characters? > >>>Having to input the ascii numbering would do too for me. > >> > >>I believe you want \\! > > > > > > Thanks for answering Graham, I made a mistake, I put > > words={ > > > > } "!" > > > > With the "!" within the brackets it works :/ > > But still I'm afraid that this is not the solution. When I do > > > > WordsFouFO = \lyrics {"#"} it says: > > > > ly2dvi:error: LaTeX failed on the output file. > > ly2dvi:error: The error log is as follows: > > ! You can't use `macro parameter character #' in restricted horizontal > > mode. > > ...utscale \magfontOLYUomMMBo \hbox {## > > } > > With \lyrics{\\#} it says: > > Parsing...Backtrace: > > 0* } > > ERROR: In expression }: > > ERROR: Unbound variable: } > > > > etc... > > > > Isn't there a method to tell that I want ascii character 214 from font > > wncyr10 for instance? > > And does one know where I can get the Cyrillic R, mirrorred about its > > vertical axis, and this character which resembles most the 'X', but with > > some more small lines? (sorry, I don't know the name of it). > > > > thanks, > > arie > > > > > > > >>Cheers, > >>- Graham > > > > > > > > > > > > ___ > > Lilypond-user mailing list > > [EMAIL PROTECTED] > > http://mail.gnu.org/mailman/listinfo/lilypond-user > > > -- > = > Mats Bengtsson > Signal Processing > Signals, Sensors and Systems > Royal Institute of Technology > SE-100 44 STOCKHOLM > Sweden > Phone: (+46) 8 790 8463 > Fax: (+46) 8 790 7260 > Email: [EMAIL PROTECTED] > WWW: http://www.s3.kth.se/~mabe > = > ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: how to include various ascii characters (like: !) in the text?
On Tue, 2003-06-17 at 13:25, Richard Grubb wrote: > > The names of the letters you are looking for are pronounced "yah" and > "zhuh" (as in the word pleasure). Exactly, that's it! These are just my method of > approximating the sound of these letter's names in English. The unicode > names are "Cyrillic capital letter zhe" and "Cyrillic capital letter ya". > In Cyrillic, the names of course are written as just the letters > themselves. > > I don't understand where you are getting the other Cyrillic letters. Are > you trying to approximate them with roman/english letters? Or are you > using a Cyrillic font? I did use a Cyrillic font indeed, but inside that font, I could not find yet the characters corresponding with 'zhuh' and 'yah'. :) What I did was make a lyric with all characters a - z, both in capital as in small, once printing them using \property LyricsVoice . LyricText \override #'font-name = #"cmr12" which gives the roman fonts, and once with \property LyricsVoice . LyricText \override #'font-name = #"wncyr10" which I then had to magnify by 1.2 because the wncyr12 isn't there. Only, as I said, the 'yah' and 'zhuh' didn't come out using this method. Various accented chars give error messages, others gives garbage. But I have the feeling that I didn't explore the full character set yet with this method, so maybe they are somewhere inside the font, but I just don't seen to be able to find them. Thanks, arie > On Tuesday, June 17, 2003, at 04:00 AM, ario wrote: > > > And does one know where I can get the Cyrillic R, mirrorred about its > > vertical axis, and this character which resembles most the 'X', but with > > some more small lines? (sorry, I don't know the name of it). > > > > thanks, > > arie > ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: how to include various ascii characters (like: !) in the text?
You could say \\char214 which will just be forwarded to the TeX output. However, I recommend to insert the 8bit character directly into the file instead, since it enables Lilypond to calculated the correct width of each syllable when it determines the spacing between the notes. /Mats ario wrote: On Tue, 2003-06-17 at 14:02, Mats Bengtsson wrote: If you want ASCII character 214, you just need a text editor that enables you to input that ASCII value as a character. In Emacs, for example, type CTRL-Q 3 2 6 RETURN (since 326 is octal for 214). If you have a German or nordic keyboard, you can also press Ö, since it has character code 214 in the Latin 1 encoding. If you have a Cyrillic keyboard, I'm sure you can just press the desired key directly unless your editor plays some funny games. To set the font, you'll have to say something like: \property Lyrics . LyricText \override #'font-name = #"wncyr10" Yes, I did that. I use keyboard USA/International here. Isn't there some string indicating (as in HTML code) to lily (or is it finally TeX that would have to do it?) that I want a specific character number such and so from the font? Thanks for your help. arie /Mats ario wrote: On Tue, 2003-06-17 at 06:47, Graham Percival wrote: On Tue, 17 Jun 2003 05:31:43 +0200 ario <[EMAIL PROTECTED]> wrote: If I include a '!' in the lyrics, lilypond complains. I tried using typing "!", and '!' but none works. I need this feature to use the complete Cyrillic character set. Does anybody know how to include all ascii characters? Having to input the ascii numbering would do too for me. I believe you want \\! Thanks for answering Graham, I made a mistake, I put words={ } "!" With the "!" within the brackets it works :/ But still I'm afraid that this is not the solution. When I do WordsFouFO = \lyrics {"#"} it says: ly2dvi:error: LaTeX failed on the output file. ly2dvi:error: The error log is as follows: ! You can't use `macro parameter character #' in restricted horizontal mode. ...utscale \magfontOLYUomMMBo \hbox {## } With \lyrics{\\#} it says: Parsing...Backtrace: 0* } ERROR: In expression }: ERROR: Unbound variable: } etc... Isn't there a method to tell that I want ascii character 214 from font wncyr10 for instance? And does one know where I can get the Cyrillic R, mirrorred about its vertical axis, and this character which resembles most the 'X', but with some more small lines? (sorry, I don't know the name of it). thanks, arie Cheers, - Graham ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user -- = Mats Bengtsson Signal Processing Signals, Sensors and Systems Royal Institute of Technology SE-100 44 STOCKHOLM Sweden Phone: (+46) 8 790 8463 Fax: (+46) 8 790 7260 Email: [EMAIL PROTECTED] WWW: http://www.s3.kth.se/~mabe = ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user -- = Mats Bengtsson Signal Processing Signals, Sensors and Systems Royal Institute of Technology SE-100 44 STOCKHOLM Sweden Phone: (+46) 8 790 8463 Fax: (+46) 8 790 7260 Email: [EMAIL PROTECTED] WWW: http://www.s3.kth.se/~mabe = ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: how to include various ascii characters (like: !) in the text?
On Tue, 2003-06-17 at 15:09, Mats Bengtsson wrote: > You could say \\char214 which will just be forwarded to the > TeX output. However, I recommend to insert the 8bit character > directly into the file instead, since it enables Lilypond to > calculated the correct width of each syllable when it determines > the spacing between the notes. You're right, thanks. arie - now learning how to use EMacs, sigh... :) > /Mats > > ario wrote: > > On Tue, 2003-06-17 at 14:02, Mats Bengtsson wrote: > > > >>If you want ASCII character 214, you just need a text editor that > >>enables you to input that ASCII value as a character. > >>In Emacs, for example, type > >>CTRL-Q 3 2 6 RETURN > >>(since 326 is octal for 214). If you have a German or nordic > >>keyboard, you can also press Ö, since it has character code 214 in > >>the Latin 1 encoding. If you have a Cyrillic keyboard, I'm sure you > >>can just press the desired key directly unless your editor plays > >>some funny games. > >> > >>To set the font, you'll have to say something like: > >>\property Lyrics . LyricText \override #'font-name = #"wncyr10" > > > > > > Yes, I did that. I use keyboard USA/International here. > > Isn't there some string indicating (as in HTML code) to lily (or is it > > finally TeX that would have to do it?) that I want a specific character > > number such and so from the font? > > > > Thanks for your help. > > arie > > > > > >> /Mats > >> > >>ario wrote: > >> > >>>On Tue, 2003-06-17 at 06:47, Graham Percival wrote: > >>> > >>> > On Tue, 17 Jun 2003 05:31:43 +0200 > ario <[EMAIL PROTECTED]> wrote: > > > > >If I include a '!' in the lyrics, lilypond complains. > >I tried using typing "!", and '!' but none works. > >I need this feature to use the complete Cyrillic character set. > >Does anybody know how to include all ascii characters? > >Having to input the ascii numbering would do too for me. > > I believe you want \\! > >>> > >>> > >>>Thanks for answering Graham, I made a mistake, I put > >>>words={ > >>> > >>>} "!" > >>> > >>>With the "!" within the brackets it works :/ > >>>But still I'm afraid that this is not the solution. When I do > >>> > >>>WordsFouFO = \lyrics {"#"} it says: > >>> > >>>ly2dvi:error: LaTeX failed on the output file. > >>>ly2dvi:error: The error log is as follows: > >>>! You can't use `macro parameter character #' in restricted horizontal > >>>mode. > >>> ...utscale \magfontOLYUomMMBo \hbox {## > >>> } > >>>With \lyrics{\\#} it says: > >>>Parsing...Backtrace: > >>>0* } > >>>ERROR: In expression }: > >>>ERROR: Unbound variable: } > >>> > >>>etc... > >>> > >>>Isn't there a method to tell that I want ascii character 214 from font > >>>wncyr10 for instance? > >>>And does one know where I can get the Cyrillic R, mirrorred about its > >>>vertical axis, and this character which resembles most the 'X', but with > >>>some more small lines? (sorry, I don't know the name of it). > >>> > >>>thanks, > >>>arie > >>> > >>> > >>> > >>> > Cheers, > - Graham > >>> > >>> > >>> > >>> > >>> > >>>___ > >>>Lilypond-user mailing list > >>>[EMAIL PROTECTED] > >>>http://mail.gnu.org/mailman/listinfo/lilypond-user > >> > >> > >>-- > >>= > >>Mats Bengtsson > >>Signal Processing > >>Signals, Sensors and Systems > >>Royal Institute of Technology > >>SE-100 44 STOCKHOLM > >>Sweden > >>Phone: (+46) 8 790 8463 > >> Fax: (+46) 8 790 7260 > >>Email: [EMAIL PROTECTED] > >>WWW: http://www.s3.kth.se/~mabe > >>= > >> > > > > > > > > > > > > ___ > > Lilypond-user mailing list > > [EMAIL PROTECTED] > > http://mail.gnu.org/mailman/listinfo/lilypond-user > > > -- > = > Mats Bengtsson > Signal Processing > Signals, Sensors and Systems > Royal Institute of Technology > SE-100 44 STOCKHOLM > Sweden > Phone: (+46) 8 790 8463 > Fax: (+46) 8 790 7260 > Email: [EMAIL PROTECTED] > WWW: http://www.s3.kth.se/~mabe > = > ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: installation woes on OpenBSD
[EMAIL PROTECTED] writes: > Arvid Grøtting <[EMAIL PROTECTED]> writes: > > > So now it works, [...] > > Did I say it works? Only apparently so; ly2dvi seemed to work because > it goes on after lilypond fails with a memory error. > > I've recompiled with -fno-stack-protector, and that seems to work. > Having to disable stack protection indicates unclean usage of the > stack somewhere within lilypond; someone might want to look into that. Can you check whether GUILE does work ? -- Han-Wen Nienhuys | [EMAIL PROTECTED] | http://www.xs4all.nl/~hanwen ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: installation woes on OpenBSD
Han-Wen Nienhuys <[EMAIL PROTECTED]> writes: > Can you check whether GUILE does work ? Guile (built from ports) seems to work nicely enough by itself, from what I can see. I don't speak much Guile myself, though, so I haven't been able to test it rigidly. I find no evidence of Guile having been compiled with -fno-stack-protector. Compiled with -fno-stack-protector (in CPPFLAGS, iirc), lilypond-1.6.9 seems to work now, though. With stack protection turned on, however, even input/example-1.ly crashed with a memory fault... -- Arvid ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: installation woes on OpenBSD
[EMAIL PROTECTED] writes: > Han-Wen Nienhuys <[EMAIL PROTECTED]> writes: > > > Can you check whether GUILE does work ? > > Guile (built from ports) seems to work nicely enough by itself, from > what I can see. I don't speak much Guile myself, though, so I haven't > been able to test it rigidly. I find no evidence of Guile having been > compiled with -fno-stack-protector. > > Compiled with -fno-stack-protector (in CPPFLAGS, iirc), lilypond-1.6.9 > seems to work now, though. With stack protection turned on, however, > even input/example-1.ly crashed with a memory fault... it would be interesting to see a stack trace of this fault. -- Han-Wen Nienhuys | [EMAIL PROTECTED] | http://www.xs4all.nl/~hanwen ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: more stupid questions
Am Die, 10. Jun 2003 05:33:54 +0200, schrieb Mats Bengtsson: > >>5) I get some warning: can't find ascii character: 248 > >>warning: can't find ascii character: 229 > >>warning: can't find ascii character: 248 > >>warning: can't find ascii character: 248 > >>warning: can't find ascii character: 248 > >>warning: can't find ascii character: 229 > >>warning: can't find ascii character: 248 > >>warning: can't find ascii character: 230 > >>warning: can't find ascii character: 230 > >>Is this caused by me using æ (ae), ø (slashed o), å (circle over a) and > >>ü (two dots over u)? The output looks fine in xdvi, should I simply > >>ignore the warnings? > > > > > >This is a known and afaik unsolved problem. > >The letters are correct, but the spacing gets messed up. :-( > > Did you try > > \property Lyrics.LyricText \override #'font-name = #"ecrm1000" This won't help. Because the T1 font encoding does not match the latin1 encoding. In fact it has also some letters from latin2. I've been getting these messages for years. The only solution for this is to use a similar input _AND_ output encoding mechanism as LaTeX. I think the easiest way would be to use tex for this issue. Tobias -- Tobias ,---, Schlemmer / Agricolastr. 16, Zi. 2704B | cand. math. / 09599 Freiberg -. / Tel.: 01 62 / 7 63 94 35 \ / Fax.: 089 2443-16636 \ / http://www.schlemmer.de.tt '[EMAIL PROTECTED] GnuPG/PGP Public Keys: 4A77CEF5 (RSA) bzw. DF2A703C (DSA) -'-,-'-,-'-,-'-,-'-,-'-,-'-,-'-,-'-,-'-,-'-,-'-,-'-,-'-,-'- Die Mathematik ist dem Liebestrieb nicht abträglich. Paul Möbius (1853-1907), Irrenarzt (Nicht: August Möbius) pgp0.pgp Description: PGP signature ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: installation woes on OpenBSD
Han-Wen Nienhuys <[EMAIL PROTECTED]> writes: >> even input/example-1.ly crashed with a memory fault... > > it would be interesting to see a stack trace of this fault. I'm recompiling now with stack protection back on and with debugging symbols in place. Let's see... $ /usr/local/src/lilypond-1.6.9/lily/out/lilypond /usr/local/src/lilypond-1.6.9/input/example-1.ly GNU LilyPond 1.6.9 Now processing: `/usr/local/src/lilypond-1.6.9/input/example-1.ly' Parsing... Memory fault (core dumped) $ gdb /usr/local/src/lilypond-1.6.9/lily/out/lilypond -c lilypond.core GNU gdb 4.16.1 Copyright 1996 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-openbsd3.3"... Core was generated by `lilypond'. Program terminated with signal 11, Segmentation fault. Reading symbols from /usr/libexec/ld.so...done. Reading symbols from /usr/local/lib/libintl.so.1.1...done. Reading symbols from /usr/local/lib/libguile.so.9.0...done. Reading symbols from /usr/lib/libstdc++.so.31.0...done. Reading symbols from /usr/lib/libm.so.1.0...done. Reading symbols from /usr/lib/libc.so.29.0...done. Reading symbols from /usr/local/lib/libiconv.so.3.0...done. #0 0x13321 in All_font_metrics::find_afm (this=0xcfbfceec, name=0xcfbfceec) at include/font-metric.hh:30 30DECLARE_SMOBS (Font_metric,); (gdb) bt #0 0x13321 in All_font_metrics::find_afm (this=0xcfbfceec, name=0xcfbfceec) at include/font-metric.hh:30 #1 0x137419 in Score_engraver::initialize (this=0x733500) at score-engraver.cc:97 #2 0xdb53c in Music_output_def::get_global_translator (this=0x73dba0) at music-output-def.cc:117 #3 0x13df39 in Score::run_translator (this=0x732540, odef=0x73dba0) at score.cc:85 #4 0x13e496 in Score::process (this=0x732540) at score.cc:149 #5 0x9213c in Input_file_results::do_scores (this=0xcfbfd3b0) at input-file-results.cc:136 #6 0x926fc in Input_file_results::Input_file_results (this=0xcfbfd3b0, init_string=0xcfbfd440, file_string=0xcfbfd444) at input-file-results.cc:177 #7 0x9329f in do_one_file (init_string=0xcfbfd660, file_string=0xcfbfd664) at input-file-results.cc:197 #8 0xbd56d in main_prog () at main.cc:389 #9 0x402ac7e4 in scm_boot_guile () #10 0x402d14fe in scm_internal_lazy_catch () #11 0x402ac793 in scm_boot_guile () #12 0x402ac43c in scm_boot_guile () #13 0xbe8cc in main (argc=2, argv=0xcfbfd994) at main.cc:509 (gdb) -- Arvid ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: Cygwin+XEmacs+Bash+TeX+XP
Mats Bengtsson <[EMAIL PROTECTED]> writes: > It seems that the bash you run in the windows version of > XEmacs doesn't read the setup files from your cygwin installation. > In particular, it looks as if it doesn't read the files in the > directory /etc/profile.d/. Indeed. You could try invoking bash with the --login flag. Jan. -- Jan Nieuwenhuizen <[EMAIL PROTECTED]> | GNU LilyPond - The music typesetter http://www.xs4all.nl/~jantien | http://www.lilypond.org ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: more stupid questions
Did you try \property Lyrics.LyricText \override #'font-name = #"ecrm1000" This won't help. Because the T1 font encoding does not match the latin1 encoding. In fact it has also some letters from latin2. I've been getting these messages for years. The only solution for this is to use a similar input _AND_ output encoding mechanism as LaTeX. I think the easiest way would be to use tex for this issue. I must have been lucky, since I have never found any character where the T1 font encoding differs from the Latin1 character encoding, but I haven't compared every single character. At least, the solution above works for swedish characters. /Mats ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: how to include various ascii characters (like: !) in the text?
On Tuesday 17 June 2003 08:05 am, Mats Bengtsson wrote: > > Thanks for the question, > > because if "$\\!$" gives a bit of negative space I'll be very glad > > I looked it up in ``The Not So Short Introduction to \latex > > 2\epsilon''. With math mode, "\!" should give you some negative > > space in text, and that should be very handy for us if it works. > > If you want to use it in the Lyrics of a score, I'm afraid this > won't work the way you expect it, since the spacing calculations > in Lilypond don't understand these more advanced aspects of LaTeX > and will get completely confused. > You can certainly use it in the title, though. Also, you could use > things such as \hspace{-3mm}. > > /Mats Thanks! Both work for markup. -- The biggest losers of all are the winners of an unjust war. The wars are not over. Just the winning part is over. Bush lied. Thousands died. dra@ http://www.openguitar.com ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: swing eighth notes in sound output?
On Monday 16 June 2003 11:34 pm, Niki Pantelias wrote: > Hi everyone, > > I'm a new user working on some jazz arrangements using LilyPond, > and would like to get lily to understand "swing" eighths -- i.e, > handle the music so that regular eighth notes appear in the paper > output, but in the sound file, these are played with a "triplet" > feel. Does anyone know if there is a way to do this? A separate midi version may be the only way right now. You could use \time 33/32 a8 \time 31/32 a8 (experiment) or use very large time values with ties for the long notes. You will find that jazz 8ths are much closer to straight 8ths than they are to a triplet, or even to a 3:2 quintuplet. I imagined that the latter would do it until I tried it. DaveA > -- The biggest losers of all are the winners of an unjust war. The wars are not over. Just the winning part is over. Bush lied. Thousands died. dra@ http://www.openguitar.com ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
(almost) solved: how to include cyrillic characters in the lyrics?
Finally, thanks to you all I was able to (almost :) solve the textual problems in the music (my first with lilypond - a marvellously charming program if I may say) that I was typesetting. The result of the work until now is here: http://www.infopower.nl/lily/wa_loezjagRu3test.pdf http://www.infopower.nl/lily/wa_loezjagRu3test.ly and I'm glad to say that I think that it already almost looks good :) however, I still do have two or three questions: 1. How can I shift the last (the 'yah') character of the second voice a bit to the left? LaTeX command? 2. How can I shift the 'accents' ('>'sign) a bit up and down? (read this in fixed pitch font mode) __ 3. How can I shift the 'voltas' (like the |1.-3. | ) a bit up? Normally the first volta would be lower that the second, due to the one octave lower g, and would overlap the measure numbering box. I now solved it putting an invisible g'' in measure 13, using an additional voice just for doing that... I hope there's a better solution? Thanks a lot! If anyone would like to see a listing of the cyrillic characters in the wncyr10 font which I made, you can find it here: http://www.infopower.nl/lily/lyr_test01.pdf together with the lilypond input file http://www.infopower.nl/lily/lyr_test01.ly arie ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: Lilypond Question
On Tue, 2003-06-17 at 15:09, Rob Vlasaty wrote: > I saw your question on the Lilypond mail website. I also posted a question, but > nobody is answering it, so I thought I'd contact other users directly. > > I noticed that you are trying to use a Cyrillic font. How are you using this font > for the title of the song? I can't seem to change the font of the title, and just > get the Roman font. > > I'd appreciate any ideas you have. I would like to do that too (and in other fields too), but have not yet found out how to do that. regards, arie > -- > __ > Sign-up for your own FREE Personalized E-mail at Mail.com > http://www.mail.com/?sr=signup > > CareerBuilder.com has over 400,000 jobs. Be smarter about your job search > http://corp.mail.com/careers > ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
KALiTE HiCBiR ZAMAN TESADÜF DEGiLDiR..!
Title: Untitled TR.Rehber 11 - 199$ 6.850.000 Türk E-mail adresi ( Ýllere, yaþ gruplarýna, cinsiyetlere ve meslek gruplarýna göre büyük bir titizlik ile kategori edilip hazirlandi.) World.Rehber 4.0-199$ Dünya Genelinde 350 Milyon e-mail adresi ülkelere ve kýtalara göre büyük bir titizlik ile kategori edilip hazirlandi. Firma.Rehberi 2 - 55$ Türkiye genelinde 500bin firmanin adi, adresi, faliyet alani, telefon, fax, e-mail,web adresi gibi bilgilerinin bulunduðu muhteþem bir kaynaktir. TR.Rehber 11 ve World.Rehber 4.0 birlikte alýndýðýnda sadece 299$ Dünya'da ve paralel olarak Türkiye'de internet her geçen gün çýð gibi büyümekte. Bu yeni oluþum içinde yer almak ve faaliyette bulunmak kaçýnýlmaz. Þu anda, Türkiye'de 7 milyon internet kullanýcýsý olduðu tahmin ediliyor ve bu rakkam her geçen gün hýzla artýyor. Ýnternet'te firmanýzýn WEB sitesini oluþturma zorunluluðu her geçen gün artýyor. Bu kadar kolay ulaþým imkanlarý olan bir teknikten firmanýz niçin yararlanmasýn. Firmanýzýn WEB sitesini açmanýz yeterli mi? Sitenizin açýldýðýný nasýl ve kime duyuracaksýnýz ? Sitenize nasýl çok ziyaretçi çekebileceksiniz ? Internet'te, ayný iþi yapan veya sizin ulaþmak istediðiniz firmalarý nasýl bulacaksýnýz? Tabiki MailServis Rehber CD'leri ile.. .:: Ödeme ve Ulaþým Seçeneklerimiz::. Seçenek 1 - Ödeme banka havalesi, ulaþým kargo ile saðlanacakdýr. (24 saat içerisinde adresinize teslim edilir.) Seçenek 2 - Ödemeli APS. Ödeme CD'lerin teslimatýný gerçekleþtiren kuryeye yapýlacaktýr. (24-72 saat arasýnda adresinize teslim edilir.) Seçenek 3 - Banka ödemesi ile direk download imkaný. Rehberlere anýnda ulaþmak isteyen müþterilerimiz için hýzlý bir çözümdür. ÝLETÝÞÝM BÝLGÝLERÝ [EMAIL PROTECTED] www.mailservis.net 0 535 482 97 19 GÖKHAN ATASOY !! Tüm ürünlerimiz 687.245 adet arama motoruna kayýt hediyelidir !! Herseye ragmen bizden e-mail almak istemiyor ve satisa sundugumuz listelerden cikmak istiyorsaniz [EMAIL PROTECTED] adresine bos bir mail gondermeniz yeterli olacakdir. ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
putting an accent a bit down
Hello all, in the following score I'd love to shift the accent a little bit lower. \score { \notes \relative c' { \slurDown f'8_>( )b,8 f2 a b c d e f g a b c d e f g }} I've tried it with a propertie which I tried to derive from the method to shift the slur: ( \property Voice.Slur \override #'extra-offset = #'(0 . -1.2) ) and made: \property Voice.Accent \override #'extra-offset = #'(0 . -1.2) which in my opinion was the logical thing to do. Disappointment... it didn't work. Can anybody help? thanks, arie ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: putting an accent a bit down
Why guess when you can easily find the answer in the manual: Goto www.lilypond.org, click on manual and browse through the table of contents to find the section on "Articulations", scroll down to the bottom of the page and follow the link to "Script", which will provide you with the name of the graphical object to set the property of ("Script") and a full list of the available properties. Personally, I prefer to use the "padding" property instead of the "extra-offset" in all these situations. /Mats ario wrote: Hello all, in the following score I'd love to shift the accent a little bit lower. \score { \notes \relative c' { \slurDown f'8_>( )b,8 f2 a b c d e f g a b c d e f g }} I've tried it with a propertie which I tried to derive from the method to shift the slur: ( \property Voice.Slur \override #'extra-offset = #'(0 . -1.2) ) and made: \property Voice.Accent \override #'extra-offset = #'(0 . -1.2) which in my opinion was the logical thing to do. Disappointment... it didn't work. Can anybody help? thanks, arie ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: (almost) solved: how to include cyrillic characters in thelyrics?
ario wrote: Finally, thanks to you all I was able to (almost :) solve the textual problems in the music (my first with lilypond - a marvellously charming program if I may say) that I was typesetting. The result of the work until now is here: http://www.infopower.nl/lily/wa_loezjagRu3test.pdf http://www.infopower.nl/lily/wa_loezjagRu3test.ly and I'm glad to say that I think that it already almost looks good :) however, I still do have two or three questions: 1. How can I shift the last (the 'yah') character of the second voice a bit to the left? LaTeX command? Did you try to manually add a space at the beginning of the syllable? Something like " text" or maybe "\\ text". 2. How can I shift the 'accents' ('>'sign) a bit up and down? (read this in fixed pitch font mode) See the answer to your own repeated question. __ 3. How can I shift the 'voltas' (like the |1.-3. | ) a bit up? Normally the first volta would be lower that the second, due to the one octave lower g, and would overlap the measure numbering box. I now solved it putting an invisible g'' in measure 13, using an additional voice just for doing that... I hope there's a better solution? Check out the properties for the VoltaBracket object (you can find the list of all available graphical objects "grobs" at lilypond.org if you click at Documentation:index and then "documentation of internals"). Hint: I have mentioned the same property name earlier tonight. /Mats ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: Lilypond Question
Since the typesetting of the titles is done by TeX, you can use any standard TeX or LaTeX command to specify the font. The low-level TeX way to do it is \font\myfont=wncyr10\myfont but I'm sure you can find a high-level LaTeX method as well. /Mats ario wrote: On Tue, 2003-06-17 at 15:09, Rob Vlasaty wrote: I saw your question on the Lilypond mail website. I also posted a question, but nobody is answering it, so I thought I'd contact other users directly. I noticed that you are trying to use a Cyrillic font. How are you using this font for the title of the song? I can't seem to change the font of the title, and just get the Roman font. I'd appreciate any ideas you have. I would like to do that too (and in other fields too), but have not yet found out how to do that. regards, arie -- __ Sign-up for your own FREE Personalized E-mail at Mail.com http://www.mail.com/?sr=signup CareerBuilder.com has over 400,000 jobs. Be smarter about your job search http://corp.mail.com/careers ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: putting an accent a bit down
Mats, I know I'm not such a crack, I really looked around alot through the manual but did not find this solution. And when I came to these 'script interfaces', 'engravers' etc., I felt that I'd first need a tutorial with lessons on its own to learn working with these. I must admit that I hardly grasp the concept of 'contexts'. The 'property ... override ...' etc. things that I put in my .ly files until were only copies of snipplets that I found somewhere by accident. It was merely bluffing than knowing exactly what I'm doing, although once written down the structure looks logical to me. However, inventing myself how to use these options is one step too far without a syllabus about this way of programming, sorry. regards, arie - left in despair :) On Tue, 2003-06-17 at 22:30, Mats Bengtsson wrote: > Why guess when you can easily find the answer in the manual: > Goto www.lilypond.org, click on manual and browse through the > table of contents to find the section on "Articulations", scroll down > to the bottom of the page and follow the link to "Script", which > will provide you with the name of the graphical object to set the > property of ("Script") and a full list of the available properties. > > Personally, I prefer to use the "padding" property instead of the > "extra-offset" in all these situations. > > /Mats > > > ario wrote: > > >Hello all, > >in the following score I'd love to shift the accent a little bit lower. > > > >\score { \notes \relative c' { > >\slurDown f'8_>( )b,8 f2 a b c d e f g a b c d e f g > >}} > > > >I've tried it with a propertie which I tried to derive from the method > >to shift the slur: > >( \property Voice.Slur \override #'extra-offset = #'(0 . -1.2) ) > >and made: > > > >\property Voice.Accent \override #'extra-offset = #'(0 . -1.2) > > > >which in my opinion was the logical thing to do. Disappointment... it > >didn't work. Can anybody help? > > > >thanks, > >arie > > > > > > > > > > > >___ > >Lilypond-user mailing list > >[EMAIL PROTECTED] > >http://mail.gnu.org/mailman/listinfo/lilypond-user > > > > > > ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: (almost) solved: how to include cyrillic characters in thelyrics?
On Tue, 2003-06-17 at 22:36, Mats Bengtsson wrote: > > > ario wrote: [snip> > >3. How can I shift the 'voltas' (like the |1.-3. | ) a bit up? > >Normally the first volta would be lower that the second, due to the one > >octave lower g, and would overlap the measure numbering box. I now > >solved it putting an invisible g'' in measure 13, using an additional > >voice just for doing that... I hope there's a better solution? > > > > > Check out the properties for the VoltaBracket object (you can find the > list of all available graphical objects "grobs" at lilypond.org if you click > at Documentation:index and then "documentation of internals"). > Hint: I have mentioned the same property name earlier tonight. It'll be a hard day's night, and I'll be working like a beast... until I'll have solved this on my own, but hey, who knows one day I'll get there :) Thanks, and sorry if I missed some earlier valuable hints, it's just that I'm a bit dazzled by having to delve into the LilyPond's internals. arie >/Mats > > ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Title fonts
I've figured out how to change the font of the stanza numbers. I've used the line: \property LyricsVoice . StanzaNumber \set #'font-name = #"cmssi17" (...so I'm proud of myself for figuring that out) Also, when I tried what you suggested. I got it to work by adding it to my .tex file and using lilypond book: \font\myfont=cmssi17\myfont Is there a way to add that line right to the .ly file to access it in ly2dvi for the title and poet, etc.? I found the code \sffamily in the Latex documentation to change the font family to Sans serif. When I added this line to my .tex file for lilypond-book, I got Sans serif text in my ouput. I'm curious if there a command to access the Sans serif font-family in ly2dvi to change the fonts, since it's available in Latex? Thanks for your suggestion. -- __ Sign-up for your own FREE Personalized E-mail at Mail.com http://www.mail.com/?sr=signup CareerBuilder.com has over 400,000 jobs. Be smarter about your job search http://corp.mail.com/careers ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user
Re: Title fonts
ROb, if I do \header { . . title="Wo Loezjag / \font\myfont=wncyr10\myfont {\huge Vo Luzah}" . . } then it prints the title in fonetics as well as in cyrillic, so that works. However, if I want to insert an ascii code, as \char31, like title="Wo Loezjag / \font\myfont=wncyr10\myfont {\huge Vo Luzah \char31}" then this character is taken from the normal font, not the cyrillic... what a pity, arie On Wed, 2003-06-18 at 01:39, Rob Vlasaty wrote: > I've figured out how to change the font of the stanza numbers. I've used the line: > > \property LyricsVoice . StanzaNumber \set #'font-name = #"cmssi17" > > (...so I'm proud of myself for figuring that out) > > Also, when I tried what you suggested. I got it to work by adding it to my .tex file > and using lilypond book: > > \font\myfont=cmssi17\myfont > > Is there a way to add that line right to the .ly file to access it in ly2dvi for the > title and poet, etc.? > > I found the code \sffamily in the Latex documentation to change the font family to > Sans serif. When I added this line to my .tex file for lilypond-book, I got Sans > serif text in my ouput. I'm curious if there a command to access the Sans serif > font-family in ly2dvi to change the fonts, since it's available in Latex? > > Thanks for your suggestion. > > -- > __ > Sign-up for your own FREE Personalized E-mail at Mail.com > http://www.mail.com/?sr=signup > > CareerBuilder.com has over 400,000 jobs. Be smarter about your job search > http://corp.mail.com/careers > > > > ___ > Lilypond-user mailing list > [EMAIL PROTECTED] > http://mail.gnu.org/mailman/listinfo/lilypond-user ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/lilypond-user