I found the answer to my own question. I looked in the file
define-markup-commands.scm and saw the example:
\magnify #1.1
and that worked.
Thanks
Rob
--
___
Sign-up for Ads Free at Mail.com
http://promo.mail.com/adsfreejump.htm
I've figured out how to change the font of my markup from an example on the
website using:
a8^\markup{ \override #'(font-name . "myfontnamehere") Verses}
But once I change the font, the Latex commands like \large and \small don't
work anymore. I've tried guessing at things like \override
#
I'm not exactly sure if I understand your question, but here's how I accessed
Adobe Helvetica in my lilypond file. I added:
\layout {
\context {
\Lyrics
\override VocalName #'font-name = #"phvr"
\override LyricText #'font-name = #"phvro"
}
}
These were found in my tfm/adobe/helvetic folder.
I'm trying to build Lilypond 2.5.14 on Cygwin. I get the message that 'msgfmt'
is not installed. Where would I find that program?
Rob
--
___
Sign-up for Ads Free at Mail.com
http://promo.mail.com/adsfreejump.htm
___
Keenan Pepper,
I was have trouble getting Latex to do what for my project, so here's what I
did to get images of my music into Microsoft Word.
Run the lilypond file through lilypond-book
lilypond-book output=out myfile.tex
Switch to the "out" directory and rename the file that says
"lily-L
I've been using lilypond to create song books for church. We have many Slovak
hymns that we sing. Up until now, the congregation only had words without the
notes. It's been difficult for new people and young people who don't speak
Slovak to learn the songs, keeping our heritage alive. Now tha
Matevz,
The reason you have the extra white space between the staffs is because
lilypond is creating a space to hold the blank lyrics, that's why
\removeEmptyStaves doesn't remove them (they aren't empty, just blank). I also
have the same problem when I create songs with a refrain. I've decid
Werner,
I would like to make a request about the font encoding (but I think I'm late
for your meeting). I don't know if this is possible, or if I can even describe
it correctly, but I think it would be nice to have the encoding work the same
as in a latex document.
I've noticed that some ch
> I assume that > -1 is text starts at note (left justified) > 0 is text centered on note > +1 is text ends at note (right justified) > (Perhaps only the sign matters) >
Plus you can use numbers in-between. Check out the properties for each object in the documentation on the lilypond.com site. F
Lloyd,
I'm not sure if this the official way to solve your problem. There used to be
an example of lyric alignment on the website, but I can't seem to find it.
Try this around each line:
\override LyricText #'self-alignment-X = #-1
In_peace,_let_us
\override L
I just installed Xemacs on my Cygwin system to try that out. Up till now I've
been using Wordpad. Xemacs seems to run ok, but how do I start it in
lilypond-mode?
Rob
--
___
Sign-up for Ads Free at Mail.com
http://promo.mail.com/adsfreeju
I was looking at the new European fonts after I finally got my characters
working, and I noticed that the one I need, sans-serif italic, isn't included
in the set. Any ideas on what I can do?
Rob
--
___
Sign-up for Ads Free at Mail.com
ht
I figured out my problem. I was changing the font to Adobe Helvetic, "phvr",
which must use a different font map. When I took that statement out, I got the
proper characters. What I'll do for now is just use the sans font-family.
Thanks,
Rob
--
_
Bert,
Thanks for your suggestion. I tried adding \encoding "TeX" to the beginning of
my .ly file. It got the syllables to line up, but strange characters were
substituted for the ones I wanted. For \\v{z} a quote was substituted. For
\\v{s}, a cross. I know it has something to do with acce
I got the Lilypond 2.4.2 for Cygwin working. Thanks Bertalan. Adding both
mirror sites and downloading some more files fixed it.
After updating my files to 2.4.2, I noticed that all the syllables with
European characters were shifted a little to the left. They were entered like
"tie\\v{z}"
I tried installing Lilypond 2.4.2 for Cygwin on Windows XP. I get the
following error message when I open the Cygwin window:
bash: /etc/profile: line 196: syntax error: unexpected end of file
When I try to run Lilypond, I get the next message:
This application has failed to start because cy
My stanza numbers don't appear when I use a partial measure to begin a repeat
at the beginning of a staff. I've included an example below. I'm using Cygwin
2.2.5. Is this a bug, or will it work in a newer version?
Rob
\version "2.2.5"
\header {
title = "Repeat Error"
Here's a simple hymn template I made for myself starting from the SATB
template. I hope it helps.
I start a refrain on a new staff to get it centered, but that was when I was
using \addlyrics. I didn't get it working yet using \lyricsto.
I've also added the lines I use to right-align my compo
I figured out what the problem was. I should use 'time-signature instead of the old
way of using 'Time_signature. Now it works correctly and I can update the rest of my
files.
--
___
Sign-up for Ads Free at Mail.com
http://promo.mail.com
I've recently upgraded to Lilypond 2.2.2 on Cygwin. I would like to align my stanza
numbers closer to the lyrics. I had it working correctly in older versions using
"stanza" and later "instrumentname." I'm trying to get it to work now using
"vocalName." I've included an example of what I was
Randy,
You can force a pagebreak in the middle of your song by entering \newpage at the
appropriate place in the notes of your lilypond file.
Rob
--
___
Sign-up for Ads Free at Mail.com
http://promo.mail.com/adsfreejump.htm
David,
I think the problem is because starting a new lyric line starts a new verse, which
gets it's own line below the first. I tried the same technique to move this line
second line around. This file below should help. I'll be able to use these ideas to
line up my lyrics better, too.
Rob
David,
I tested your code with Bert's suggestions about the minimum vertical extent. I was
curious about this myself. I think this might be what you want.
cue = \set fontSize = #-5
part = \set fontSize = #0
VoxCues = \notes \context Voice \relative c' {
<<
{
<<
David,
Try using StaffContext instead of LyricsContext, or add \set
Staff.minimumVerticalExtent = #'(0 . 0) to your score to eliminate the spacing around
the staff.
Using a positive value in the negative field, like Charles Collins was saying about
\set Staff.extraVerticalExtent = #'(1 . 0)
I have the stanza numbers working in 2.1.11. I added a line to move the
self-alignment-Y as suggested to get them to line up with the lyrics. Thanks.
\score {
<<\notes \relative c'' \context Voice = duet { \time 3/4
g2 e4 \break a2 f4 g2. }
\lyrics << \lyric
Thanks for the reply. I tried using Instrument and Instr to get stanza numbers, and
it worked pretty well. I've included what I tried below.
However, you'll notice that the stanza numbers are dropped vertically about a half of
a space compared to the rest of the text. Is it possible to adjust
I would like to make a formal request regarding the new format of the stanza numbers
in the updates of Lilypond.
Im making songbooks for my church where each song has a melody line with several
verses of lyrics. The new format for the stanza numbers places the numbers right next
to the firs
Thanks, Jeff, for the reply, but I still don't really understand what I'm supposed to do about it.
--
___Sign-up for Ads Free at Mail.com
http://www.mail.com/?sr=signup
___
Lilypond-user mailing
I just upgraded from 2.0.1 to 2.1.11 on Cygwin and used convert-ly to generate
a new file. When I ran
the new file through Lilypond, I got the error:
Can't find property type-check for 'stz'
I looked through the new documentation, and couldn't find the reference to "stz"
anymore. Has this be
Peter,
I added the following line to my files to get my lyrics closer together.
\property LyricsVoice . minimumVerticalExtent = #'(-0.5 . 0.0)
Try changing the values to see if this helps.
Rob
--
___
Sign-up for Ads Free at Mail.com
htt
Burt,
Thanks for your ideas about my question. I don't have the "ae" package on my system,
but I can understand what you are saying. I can see where this would work for the ae
fonts, because the default cm fonts already work to get the correct characters with T1
encoding. The problem comes i
I did some more experimenting to try to answer my own question I posted earlier.
When I used my fonts directly for the lyrics in Lilypond, it was the font that
determined if the composite characters were created, and worked the same as using them
directly in Latex without T1 font encoding. When
I have entered special characters in my lilypond files like s-caron with
\\v{s}. Im using lilypond
2.0.1 on Cygwin. When I ran my files through lilypond and lilypond-book, everything
was ok.
I also need to have the special characters in the text of my Latex document. When I
use the
def
Ok, I get it. It's because Latex thinks the lilypond file is in the same paragraph.
The skipped line starts the new paragraph.
I've only just started using Latex and Lilypond. I've been learning a lot. Thanks
for the help.
--
__
Sign
When I'm using lilypond-book with 2.0.1 on Cygwin, if I type in:
\noindent 205 \hfill Song Title \hfill \hfill
I get the song number at the left and the title in the middle.
If I put \lilypondfile{song.ly} in the next line, my song title jumps to the right of
the page.
If I skip a line in the
Ive found the following code in the mail archives to align stanza numbers, but it
doesnt make sense to me.
\score{
...
\paper{
...
\translator{
\ScoreContext
%%% Choose which one of the following lines you want to uncomment
% StanzaNumber \override #'break-align-symbol =
Apparently, I was wrong about the spacing of the stanza numbers.
Today, I noticed that setting the break-align-symbol property to first-note or
next-note always aligned the first verse stanza number to the right. The second verse
could be centered by using the other property that was not used
I've been wanting to do the same thing with the alignment of the stanza numbers, so I
figured this morining would be a good time to try. Reading through the documentation,
and experimenting a little, I added the line:
\property LyricsVoice . StanzaNumber \set #'break-align-symbol = #'ne
38 matches
Mail list logo