Re: \context Lyrics=A
Erik Sandberg writes: > I don't > understand how the whitespace sensitiveness can change the way it does. Is it > a bug, or is there some logic behind it that I just don't understand? > \lyrics{ \context Lyrics=A { c c c c } } ^ This is where it changes. LilyPond has several different [lexer] modes. In \lyric mode, the world looks quite different. 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://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Deprecated encoding feta20?
If you have run 'make install' to install the program into the directory specified to configure, than there should be no need to set LILYPONDPREFIX. (However, since I don't think many people have tried to set exec-prefix separately, you might possibly have found a packaging bug). /Mats Quoting "Victor S. Miller" <[EMAIL PROTECTED]>: > I figured out the last problem (needed to set LILYPONDPREFIX and > source lilypond-profile.sh). However, whenever I try to run lilypond > on anything, I get the warning below and no output. > > warning: lily-guile: installation problem: deprecated encoding requested: > "feta-music" > > -- > Victor S. Miller | " ... Meanwhile, those of us who can compute can > hardly > [EMAIL PROTECTED]| be expected to keep writing papers saying 'I can do > the > CCR, Princeton, NJ | following useless calculation in 2 seconds', and > indeed > 08540 USA| what editor would publish them?" -- Oliver Atkin > > > ___ > lilypond-user mailing list > [EMAIL PROTECTED] > http://lists.gnu.org/mailman/listinfo/lilypond-user > ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: More on 2.3.20
Victor S. Miller writes: > However, fet20.afm is installed in the directory below > /usr/local/coop/share/lilypond/2.3.20/fonts/afm > ./configure --prefix=/usr/local/coop --exec-prefix=/usr/local/coop/i686 > Suggestions? Strange. What does lilypond --verbose --help say about LILYPOND_DATADIR? 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://lists.gnu.org/mailman/listinfo/lilypond-user
Re: Multiple lyrics problem
Erik Sandberg schreef: The following code works fine with 2.3.20, take a look for inspiration. To make it work with 2.2.x, you will have to add the \notes and \lyrics keywords where appropriate, and lilypond will probably give you loads of warnings. But I think the output will be fine. It does work AND gives me loads of warnings, yes :-) Thanks for the pointer. However, for some reason the stanza numbers don't work well, they don't line up properly. I have a testcase (fairly large, unfortunately), which shows the problem. Any insight in this would be VERY welcome: \version "2.2.5" \paper { \context { \StaffContext minimumVerticalExtent = #'(-3 . 3) } } sopNotesPartOne = \context Voice = sopNotesPartOne \notes \relative c'' { c4 d e c c d e c } sopNotesPartTwo = \context Voice = sopNotesPartTwo \notes \relative c'' { e4 f g2 e4 f g2 } sopNotesPartThree = \context Voice = sopNotesPartThree \notes \relative c'' { g'8 a g f e4 c4 g'8 a g f e4 c4 } sopLyricsPartOne = \context Lyrics = A \lyrics { Va- der Ja- cob, va- der Ja- cob } sopLyricsFirstStanza = \context Lyrics = A \lyrics { \set stanza = "1. " Slaapt gij nog, slaapt gij nog? } sopLyricsSecondStanza = \context Lyrics = B \lyrics { \set stanza = "2. " Zo- maar iets, zo- maar wat } sopLyricsPartThree = \context Lyrics = A \lyrics { Al- le klok- ken lui- den, al- le klok- ken lui- den } altoNotesPartOne = \context Voice = altoNotesPartOne \notes \relative c' { c4 d e c c d e c } altoNotesPartTwo = \context Voice = altoNotesPartTwo \notes \relative c' { e4 f g2 e4 f g2 } altoNotesPartThree = \context Voice = altoNotesPartThree \notes \relative c' { g'8 a g f e4 c4 g'8 a g f e4 c4 } altoLyricsPartOne = \context Lyrics = C \lyrics { Va- der Ja- cob, va- der Ja- cob } altoLyricsFirstStanza = \context Lyrics = C \lyrics { \set stanza = "1. " Slaapt gij nog, slaapt gij nog? } altoLyricsSecondStanza = \context Lyrics = D \lyrics { \set stanza = "2. " Zo- maar iets, zo- maar wat } altoLyricsPartThree = \context Lyrics = C \lyrics { Al- le klok- ken lui- den, al- le klok- ken lui- den } \score { \context ChoirStaff << \override Score.BarNumber #'padding = #'2 \context Staff = soprano { \set Staff.instrument = "Soprano " \clef violin \context Voice = A { \sopNotesPartOne \sopNotesPartTwo \sopNotesPartThree } } \lyricsto sopNotesPartOne \new Lyrics \sopLyricsPartOne \lyricsto sopNotesPartTwo << \context Lyrics = A { \sopLyricsFirstStanza } \context Lyrics = B { \sopLyricsSecondStanza } >> \lyricsto sopNotesPartThree \new Lyrics \sopLyricsPartThree \context Staff = alto { \set Staff.instrument = "Alto" \clef violin \context Voice = C { \altoNotesPartOne \altoNotesPartTwo \altoNotesPartThree } } \lyricsto altoNotesPartOne \new Lyrics \altoLyricsPartOne \lyricsto altoNotesPartTwo << \context Lyrics = C { \altoLyricsFirstStanza } \context Lyrics = D { \altoLyricsSecondStanza } >> \lyricsto altoNotesPartThree \new Lyrics \altoLyricsPartThree >> } -- Patrick Hubers ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
MIDI and Lyrics
Hello all, If I'm correct (which is always the question) one can add lyrics to a midi file so they can be showed during playback. Kind of like karaoke style... (if the player supports it of course) when I write a song with lilypond including lyrics, and generate a midifile ou tof it, however, those lyrics do not appear... is that a special setting you need to add, or does lilypond not support this (yet)? I'm running lilypond 2.2.0 and the song very globally looks like this: << \notes \new staff { a b c d } \lyricsto \new Lyrics=A \lyrics {a b c d} >> \paper {} \midi {} Maybe this shortens my search for how to get this done... TIA Michiel ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: MIDI and Lyrics
The lyrics lines are included in the LilyPond MIDI output, but I guess it depends on the MIDI player you use. For example, I tried to run mf2t (http://www.hitsquad.com/smm/programs/mf2t/) on the output from the melody-lyrics.ly template and it gives: MFile 1 3 384 MTrk 0 Meta Text "Creator: GNU LilyPond 2.2.0" 0 Meta Text "Generated automatically by: GNU LilyPond 2.2.0" 0 Meta Text "at Tue Apr 27 10:40:42 2004 " 0 Meta Text "at Tue Apr 27 10:40:42 2004 " 0 Meta SeqName "Track 0" 0 Meta TrkEnd TrkEnd MTrk 0 On ch=1 n=69 v=127 0 TimeSig 4/4 18 8 0 Meta TrkName "" 0 Tempo 100 384 Off ch=1 n=69 v=64 384 On ch=1 n=71 v=127 768 Off ch=1 n=71 v=64 768 On ch=1 n=72 v=127 1152 Off ch=1 n=72 v=64 1152 On ch=1 n=74 v=127 1536 Off ch=1 n=74 v=64 1536 Meta TrkEnd TrkEnd MTrk 0 Meta Lyric "Aaa" 0 TimeSig 4/4 18 8 0 Meta TrkName "uniqueContext0" 0 Tempo 100 384 Meta Lyric "Bee" 768 Meta Lyric "Cee" 1152 Meta Lyric "Dee" 1152 Meta TrkEnd TrkEnd If you want more information, search the mailing list archives. /Mats Quoting Michiel Lange <[EMAIL PROTECTED]>: > Hello all, > > If I'm correct (which is always the question) one can add lyrics to a > midi file so they can be showed during playback. Kind of like karaoke > style... (if the player supports it of course) > > when I write a song with lilypond including lyrics, and generate a > midifile ou tof it, however, those lyrics do not appear... is that a > special setting you need to add, or does lilypond not support this (yet)? > > I'm running lilypond 2.2.0 and the song very globally looks like this: > > << \notes \new staff { a b c d } > \lyricsto \new Lyrics=A \lyrics {a b c d} > >> > \paper {} > \midi {} > > Maybe this shortens my search for how to get this done... > > TIA > > Michiel > > > > ___ > lilypond-user mailing list > [EMAIL PROTECTED] > http://lists.gnu.org/mailman/listinfo/lilypond-user > ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
Buy Regalis, also known as Superviagra or Cialis
Hi, Regalis, also known as Superviagra or Cialis - half a pill Lasts all weekend - Has less sideeffects - Has higher success rate Now you can buy Regalis, for over 70% cheaper than the equivilent brand for sale in US We ship world wide, and no prescription is required!! Even if you're not impotent, Regalis will increase size, pleasure and power! Try it today you wont regret! Get it here: http://888-luvu.com/sup/ Best regards, Jeremy Stones No thanks: http://888-luvu.com/rm.html ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: MIDI and Lyrics
Ah, great... I figured that with WinAmp I could get this info... I was wondering which mediaplayer it was I could see the lyrics with... Anyway... I could now see the lyrics, but there's something strange with it... It can be the problem of WinAmp, or something about Midi in general: all the spaces are gone (ok... most of them) and everthing is on a single line... I went to the Mutopia project page to find out if this could be remedied with some exoting settings, but all the songs I checked had the same problem... Is this a winamp problem or a midi problem, or are those spaces and newlines (even when I enter a hardcoded newline ^M) really gone? The funny thing is that when I use underscores (_) for spaces, the formatting in the midi file seems okayish, but then my paper is messed up... As I find paper more important that was the obvious choice I made of course... Still thanks for pointing out to me what I was doing wrong... Michiel Mats Bengtsson wrote: The lyrics lines are included in the LilyPond MIDI output, but I guess it depends on the MIDI player you use. For example, I tried to run mf2t (http://www.hitsquad.com/smm/programs/mf2t/) on the output from the melody-lyrics.ly template and it gives: MFile 1 3 384 MTrk 0 Meta Text "Creator: GNU LilyPond 2.2.0" 0 Meta Text "Generated automatically by: GNU LilyPond 2.2.0" 0 Meta Text "at Tue Apr 27 10:40:42 2004 " 0 Meta Text "at Tue Apr 27 10:40:42 2004 " 0 Meta SeqName "Track 0" 0 Meta TrkEnd TrkEnd MTrk 0 On ch=1 n=69 v=127 0 TimeSig 4/4 18 8 0 Meta TrkName "" 0 Tempo 100 384 Off ch=1 n=69 v=64 384 On ch=1 n=71 v=127 768 Off ch=1 n=71 v=64 768 On ch=1 n=72 v=127 1152 Off ch=1 n=72 v=64 1152 On ch=1 n=74 v=127 1536 Off ch=1 n=74 v=64 1536 Meta TrkEnd TrkEnd MTrk 0 Meta Lyric "Aaa" 0 TimeSig 4/4 18 8 0 Meta TrkName "uniqueContext0" 0 Tempo 100 384 Meta Lyric "Bee" 768 Meta Lyric "Cee" 1152 Meta Lyric "Dee" 1152 Meta TrkEnd TrkEnd If you want more information, search the mailing list archives. /Mats Quoting Michiel Lange <[EMAIL PROTECTED]>: Hello all, If I'm correct (which is always the question) one can add lyrics to a midi file so they can be showed during playback. Kind of like karaoke style... (if the player supports it of course) when I write a song with lilypond including lyrics, and generate a midifile ou tof it, however, those lyrics do not appear... is that a special setting you need to add, or does lilypond not support this (yet)? I'm running lilypond 2.2.0 and the song very globally looks like this: << \notes \new staff { a b c d } \lyricsto \new Lyrics=A \lyrics {a b c d} >> \paper {} \midi {} Maybe this shortens my search for how to get this done... TIA Michiel ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
lilypond-user@gnu.org
[EMAIL PROTECTED]@$$$^$9!#(B $B%;%C%/%9%U%l%s%I$rJg=8$5$l$F$$$^$7$?$,!"(B $B$b$&[EMAIL PROTECTED])[EMAIL PROTECTED]"(B $B$<$R$J$C$F$_$?$$$H;W$C$F$$$k$N$G$9!#(B $B6a$$=h$K=;$s$G$k?M$G$9$7!"$H$F$b5$$K$J$C$?$N$G!#(B $B4JC1$J%W%m%U$r!"<+8J>R2p$r$7$^$9!#(B $BL>A0$OAaID$G$9$,!"(B $BM'C#$+$i$O%*%V%8%g%$%H%$$H8F$P$l$F$$$^$9!#(B $B$7$c$Y$jJ}$dJ8>O$,F|K\?M$8$c$J$$$J$s$F(B (B[EMAIL PROTECTED]"$=$&$$$&$"[EMAIL PROTECTED]>$K$J$C$?$N$G$9!#(B $B$G$9$,!"F|K\?M$G$9!#(B $B$"$H!"4i$H$+$7$0$5$,!"%(%m$$$i$7$$$C$F$N$b$"$k$N$G$9!#(B $B<+J,$G$b!"%*%V%8%g%$%H%$$HL>>h$k$h$&$K$7$F$$$^$9!#(B $B:P$O#2#1:P$G$9!#:[EMAIL PROTECTED]"#1#4?M$G$9!#(B $B%*%V%8%g%$%H%$!"%;%C%/%9$,9%$-$G!"$9$k%;%C%/%9%U%l%s%I$8$c$J$$$H(B $B46$8$?$i!"$=$N$^$^L5;k$7$F$/[EMAIL PROTECTED](B $B$*JV;[EMAIL PROTECTED]"$b$C$H6qBNE*$J$3$H$r(B $B7h$a$F$$$-$?$$$G$9!#;d$N2hA|$bAw$j$^$9!#(B $B$$$-$J$jAw$k$H!"%&%$%k%9$+$H;W$o$l$=$&$J$N$G!#(B $B%*%V%8%g%$%H%$$G$7$?!#(B (B (B (B (B___ (Blilypond-user mailing list (B[EMAIL PROTECTED] (Bhttp://lists.gnu.org/mailman/listinfo/lilypond-user
Как не оказаться банальным.
Все знают «Аллею Звезд» в Голливуде. На этой аллее увековечили свои имена известнейшие актеры кино и шоу-бизнеса. По различным причинам, это не доступно людям, которые ещё не достигли таких высот и признания многомиллионной публики, но признаны своими близкими, друзьями и коллегами. Компания «Наши Имена» предлагает закладку именных камней на Старом Арбате. ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
defining "orphan" stave for cantor part?
Hello! I am wanting to set some music which has the general layout: SA C TB SA is a stave with two parts (soprano, alto) sharing the treble clef TB is a stave with two parts (tenor, bass) sharing the bass clef I've set these OK, but the whole staffgroup needs to be 'prefixed' by a separate short stave for the Cantor (C in the example above). This is in the bass clef and sits to the left of the main staff group in vertical alignment with the TB stave. Can this be done in lilypond? I have tried various ideas but as a newbie nothing seems to work!! I'm using version 2.2.5 under WinXP. Thanks in advance for your help --mrb ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
Reconnecting voices in Lilypond
Hi, I just wondered how I could manage to put a slur between the a and the c in a fragment such as: { < a4 \\ b4 > < c4 \\ d4 > } I understand of course that by restructuring the fragment as < { a4 ( c4)} \\ {b4 d4} > the problem would be solved, but I need to add dozens of slurs to a score where the construct as described above occurs all the time, so restructuring it entirely is not really an option. On the other hand, the < \\ > are not written manually, they are generated by the expansion of M4 macros, so that a solution which would connect the upper and lower voices of adjacent parralel blocks would do the trick, no matter how arcane the syntax: it would have to happen in the macro definition only. I use Cygwin 2.2.2. Thank you ! Darius. ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
New! Vìagra soft tabs.
Hello! We would like to offer V_I_A_G_R_A soft tabs, These pills are just like regular Vìagra but they are specially formulated to be soft and dissolvable under the tongue. The pill is absorbed at the mouth and enters the bloodstream directly instead of going through the stomach. This results in a faster more powerful effect which lasts as long as the normal. Soft Tabs also have less sidebacks (you can drive or mix alcohol drinks with them). You can get it at: http://888-luvu.com/st/?coupon No thanks: http://888-luvu.com/rm.html ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
Re: MIDI and Lyrics
On Tuesday 05 October 2004 06:24 am, Mats Bengtsson wrote: > The lyrics lines are included in the LilyPond MIDI output, > but I guess it depends on the MIDI player you use. > For example, I tried to run mf2t > (http://www.hitsquad.com/smm/programs/mf2t/) on the output > from the melody-lyrics.ly template and it gives: > > MFile 1 3 384 > MTrk > 0 Meta Text "Creator: GNU LilyPond 2.2.0" > 0 Meta Text "Generated automatically by: GNU LilyPond 2.2.0 " > 0 Meta Text "at Tue Apr 27 10:40:42 2004 " > 0 Meta Text "at Tue Apr 27 10:40:42 2004 " > 0 Meta SeqName "Track 0" > 0 Meta TrkEnd > TrkEnd > MTrk > 0 On ch=1 n=69 v=127 > 0 TimeSig 4/4 18 8 > 0 Meta TrkName "" > 0 Tempo 100 > 384 Off ch=1 n=69 v=64 > 384 On ch=1 n=71 v=127 > 768 Off ch=1 n=71 v=64 > 768 On ch=1 n=72 v=127 > 1152 Off ch=1 n=72 v=64 > 1152 On ch=1 n=74 v=127 > 1536 Off ch=1 n=74 v=64 > 1536 Meta TrkEnd > TrkEnd > MTrk > 0 Meta Lyric "Aaa" > 0 TimeSig 4/4 18 8 > 0 Meta TrkName "uniqueContext0" > 0 Tempo 100 > 384 Meta Lyric "Bee" > 768 Meta Lyric "Cee" > 1152 Meta Lyric "Dee" > 1152 Meta TrkEnd > TrkEnd > > > If you want more information, search the mailing list archives. > >/Mats > > Quoting Michiel Lange <[EMAIL PROTECTED]>: > > > Hello all, > > > > If I'm correct (which is always the question) one can add lyrics to a > > midi file so they can be showed during playback. Kind of like karaoke > > style... (if the player supports it of course) > > > > when I write a song with lilypond including lyrics, and generate a > > midifile ou tof it, however, those lyrics do not appear... is that a > > special setting you need to add, or does lilypond not support this (yet)? > > > > I'm running lilypond 2.2.0 and the song very globally looks like this: > > > > << \notes \new staff { a b c d } > > \lyricsto \new Lyrics=A \lyrics {a b c d} > > >> > > \paper {} > > \midi {} > > > > Maybe this shortens my search for how to get this done... Timidity does screen the lyrics when run in a terminal, but there are no spaces between the words in a LilyPond-generated midi file. If you are using a different player, try changing the extension from .mid or .midi to ".KAR" or ".kar". It probably won't work, but it's worth a try. daveA -- The "information economy" is a fantasy. Information about what? The "Global economy" is a myth. All economics is local. "Stateless terrorism" is a lie, to protect those who finance it. D. Raleigh Arnold dra@ (http://www.) openguitar.com [EMAIL PROTECTED] ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
Maria
Title: Hello, dear Mark ! Congratulations with the new day, with the new OUR day, with the day which you will become a dream that suddenly comes true. It's a day of preparation to our happiness! I felicitate you with me, with our love, with our happiness that comes true thanks the strength of two hearts! Let the foretaste not obscure the delight, and the concern for each other not turn into something different! I sincerely hope for our unity... forever... We shall rush for our dreams, make them come true and understand each other the same way, forgive trifles and love... Sweety, it's a great happiness for me to love you, love you with all my heart, to give way to passion, to follow the movements of my heart and feel your heartbeat in my hands... Darling, I love you, and my love grows, grows up every day, especially after the period of hard times, exertion and struggle. Sunny, I love you and this love makes me perform many thoughtless actions; it grows sometimes running before itself, and thus appear some "obstacles"? fears. Kitty, I love you, I want to be yours... ever... YOURS... ever... Don't be afraid: fear kills the soul. I'll be with you always , I'll be only with you, wherever you go, whenever you come... Dear, the strength you give me, the love you present me will defeat all negative in our lives and... There only be we, our WE! Kisses, Your Maria. ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
Международное экспедирование грузов
Международное экспедирование грузов - ИМПОРТ сборных грузов из Европы в Россию, (консолидационные склады - Берлин (Германия), Гориция, Пезаро (Италия), Валенсия (Испания), Коувола ( Финляндия), Рига (Латвия)); - ЭКСПОРТ сборных грузов в Европу (авто), (консолидационные склады - Рига, Берлин, Верона) - минимальная партия 100 кг; - оптимизация маршрутов и стоимости; - оформление (импорт, экспорт); - все сопутствующие услуги. Звоните: ТК "Трансглобал", Москва По вопросам импорта (095)514-61-34 По вопросам экспорта (095)500-61-52 ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user
key change without cancellation of previous key
Is there an option to change keys without canceling the previous key signature. To change from f major to d flat major shouldn't always require cancellation of the b flat. TIA, Paul Scott ___ lilypond-user mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-user