Re: Remove bar spacing

2005-01-10 Thread Mats Bengtsson
The default spacing at the position of the original bar line will remain unless you do more settings. I haven't tried, but you probably have to change the setting of the space-alist property, both for the BarLine object and for the object that comes directly before the bar line (i.e. the note head

Re: Remove bar spacing

2005-01-10 Thread Christ van Willegen
Hi Martin, list, > I want to create a staff with a G-Clef, the time signature (4/4), *five* > g'4 notes and a single bar. Yes that is wrong, but that is what I want > to create. Alternatively, you can do something like this: \version "2.4.2" { g'4*4/5 g'4*4/5 g'4*4/5 g'4*4/5 g'4*4/5 | }

problem with footer

2005-01-10 Thread Jose-Luc Hopital
Lilypond version 2.4.2 on windoze XP or 2.4.1 on linux I like to put a non-amiguous but readable small text on every page of music , for example "Corelli Sonata op1-1 V1" for the Violin 1 part. The \footer variable seem to be useful for that , but nothing is visible in the PDF output. I have tried

Re: Remove bar spacing

2005-01-10 Thread Ferenc Wagner
Martin Djernæs <[EMAIL PROTECTED]> writes: > I want to create a staff with a G-Clef, the time signature > (4/4), *five* g'4 notes and a single bar. Yes that is > wrong, but that is what I want to create. How about \version "2.4.2" { \time 4/4 \cadenzaOn g4 \cadenzaOff g g g g a a a a } -- Feri.

Re: non-latin1 characters

2005-01-10 Thread Bertalan Fodor
Two solutions: 1. use TeX encoding and TeX markups, with \markup in strings \encoding "TeX" \header { title = "\H{u}" } \lyrics { \H{o} } \score { c^\markup { \H{o} } 2. Take pfaedit, and edit the ec-fonts font files: replace latin1 characters with yours, and use \encoding "latin1" Preferably

How to set lyrics to temporarily divided parts

2005-01-10 Thread Kilian A. Foth
Hello list, I am having trouble setting lyrics to a choral part that divides itself for a few bars only. Here is an excerpt: #(ly:set-option 'old-relative) \version "2.4.0" \score { << \context Voice = "T" { \set Staff.instrument = "T." \set Staff.instr = "T." \key d \

Re: Hand-switching bracket

2005-01-10 Thread Mats Bengtsson
As long as LilyPond uses TeX for typesetting the output, you can use inline TeX code if you don't find any other solution. Something like c-"$\\lfloor$" and c-"$\\rfloor$" will give you the bracket symbols. You may need to play some extra tricks to place them where you want them. /Mats Yuval Har

Re: global \set fingeringOrientations = #'(left down)

2005-01-10 Thread Mats Bengtsson
See also http://lilypond.org/doc/v2.4/Documentation/user/out-www/lilypond/Changing-context-default-settings.html#Changing-context-default-settings /Mats Erik Sandberg wrote: On Friday 07 January 2005 22.22, Albert Einstein wrote: What command set command: \set fingeringOrientations = #'(left down

Rest in Lyrics

2005-01-10 Thread Georg Dummer
Hi all, I am new on the list and hope this question was not answered before: I have a song with multiple stanzas. In one of them I want to skip a note which is normally done by saying “ _ ” in the lyrics. For better understanding I want to put an accordant rest symbol at this place in the text (

Re: Rest in Lyrics

2005-01-10 Thread Mats Bengtsson
The trick is to include a \markup{...} command in the lyrics, read the section on Text Markup in the manual for details. /Mats Georg Dummer wrote: Hi all, I am new on the list and hope this question was not answered before: I have a song with multiple stanzas. In one of them I want to skip a not

Re: 4 hands typesetting

2005-01-10 Thread Mats Bengtsson
The normal way to typeset 4 hand pieces is to print the lower part on the left hand pages and the upper part on the right hand pages and then keep line breaks (or at least page breaks) simultaneous. Unfortunately, there's no support for doing that in LilyPond. The easiest is probably to typeset the

Re: Help with repeats

2005-01-10 Thread Mats Bengtsson
See http://lists.gnu.org/archive/html/lilypond-user/2005-01/msg00013.html /Mats Alberto Manuel Brandao Simoes wrote: Hi all. I'm starting to use lilypond and I'm having a problem with the rendering of alternatives into repeats. I'm sending the PostScript and the Lilypond in attach to help to exp

Re: How to set lyrics to temporarily divided parts

2005-01-10 Thread Mats Bengtsson
Hopefully, http://lists.gnu.org/archive/html/lilypond-user/2004-12/msg00109.html will answer this question. /Mats Kilian A. Foth wrote: Hello list, I am having trouble setting lyrics to a choral part that divides itself for a few bars only. Here is an excerpt: #(ly:set-option 'old-relative) \v

Re: Lyrics question

2005-01-10 Thread Mats Bengtsson
The vertical alignment of text scripts is calculated based on the distance from the note head or the stave (whichever is closest to the text script). Maybe one trick to keep the different text scripts vertically aligned is to attach them to spacing notes in a separate Voice context: <<{ d4 cs } \ne

dvips fails: can't find header file ecrm10

2005-01-10 Thread Bryan Stanbridge
Greetings, I recently did a fresh install of FC3 and have tried to get lilypond working again. I'm using the ec-fonts-mftraced-1.0.9-1.noarch.rpm and lilypond-2.4.2-1.i386.rpm both from the development team. The production of the .dvi file goes well and loading it in Xdvik looks as intended. How

Re: dvips fails: can't find header file ecrm10

2005-01-10 Thread Bryan Stanbridge
On 1/10/2005, "Mats Bengtsson" <[EMAIL PROTECTED]> wrote: >Did you update the TeX file name database after installing >ec-fonts? Try to run the command 'texhash' as root. > Greetings, I had not. However, after running texhash I still receive the exact same error on test.ly. ~/music# texhash te

Re: dvips fails: can't find header file ecrm10

2005-01-10 Thread Mats Bengtsson
Did you update the TeX file name database after installing ec-fonts? Try to run the command 'texhash' as root. /Mats Bryan Stanbridge wrote: Greetings, I recently did a fresh install of FC3 and have tried to get lilypond working again. I'm using the ec-fonts-mftraced-1.0.9-1.noarch.rpm and lilyp

Re: How to set lyrics to temporarily divided parts

2005-01-10 Thread Kilian A. Foth
Mats Bengtsson writes: > Kilian A. Foth wrote: > > > > Hello list, > > > > I am having trouble setting lyrics to a choral part that divides > > itself for a few bars only. > > Hopefully, > http://lists.gnu.org/archive/html/lilypond-user/2004-12/msg00109.html > will answer this questio

Partcombine and text scripts

2005-01-10 Thread Marco Caliari
Hi all. I was not using Lilypond since 1.8.x, and I have to say that Lilypond 2.4.x is great! Thanks to the authors. Anyway, when using \partcombine, is it possible to get the text scripts (e.g., c-\markup{rall.}) printed only once (as rehearsal marks)? Best regards, -- Marco ___

Re: How to set lyrics to temporarily divided parts

2005-01-10 Thread Ferenc Wagner
"Kilian A. Foth" <[EMAIL PROTECTED]> writes: > Mats Bengtsson writes: > >> Kilian A. Foth wrote: >> >>> I am having trouble setting lyrics to a choral part that >>> divides itself for a few bars only. >> >> Hopefully, >> http://lists.gnu.org/archive/html/lilypond-user/2004-12/msg00109.html >> will

Re: dvips fails: can't find header file ecrm10

2005-01-10 Thread =?ISO-8859-1?Q?Aur=E8le_Duda?=
With an update to 2.5.6 have I the same problem this afternoon. Considering the txfonts.map, I tried to add ".pfa" at the end of the every lines in the file ec-mftrace.map and it works now. I don't know if it's a good way but... Aurèle Duda Bryan Stanbridge wrote: On 1/10/2005, "Mats Bengtsson" <

Re: non-latin1 characters

2005-01-10 Thread =?UTF-8?Q?Micha=C5=82_Dwu=C5=BCnik?=
On Mon, 10 Jan 2005 14:10:28 +0100, Bertalan Fodor <[EMAIL PROTECTED]> wrote: > Two solutions: > > 1. use TeX encoding and TeX markups, with \markup in strings > > \encoding "TeX" > > \header { > title = "\H{u}" > } > > \lyrics { > \H{o} > } > > \score { c^\markup { "\H{o}" } (doublequ

how to make a lilypond fragment without any notes in it?

2005-01-10 Thread Alex Hunsley
I'm writing what the lilypond docs call a 'musicological' document - a latex doc with lilypond rendered items inside it. I'm using lilypond-book for this task (the version of lilypond I'm using is 2.4.2 under cygwin on windows XP). One of the lilypond items I want to render is a staff with a cl

how to make a lilypond fragment without any notes in it?

2005-01-10 Thread Alex Hunsley
(apologies if this has appeared twice - I sent it once before I had completely subscribed successfully, and so presume that that email won't appear) I'm writing what the lilypond docs call a 'musicological' document - a latex doc with lilypond rendered items inside it. I'm using lilypond-book fo

Re: problem with footer

2005-01-10 Thread =?ISO-8859-1?Q?Aur=E8le_Duda?=
You may change the default implentations of oddFooterMarkup (in your paper block) with somthing like this : \header{ copyright = "Domain public" tagline = "lilypond 2.x.x" somestuff = "small text on each page" } \paper{ oddFooterMarkup = \markup { \column { \fi

\postscript in \markup

2005-01-10 Thread =?ISO-8859-1?Q?Aur=E8le_Duda?=
Hi, Trying to add some culs-de-lampe (drawn with METAPOST) to a score, I look on file-inclusion in textmarkup, but don't see anything. So, I try to add postscript code from my eps file (removing header) like this : \version "2.5.6" \markup{ "\embeddedps{ my ps code }" } and it works very nicely. Bu

Re: how to make a lilypond fragment without any notes in it?

2005-01-10 Thread Gilles
> One of the lilypond items I want to render is a staff with a clef and a > key signature on it. No notes required at all, as this part of the > document is about key signatures. > > \documentclass[a4paper]{article} > \begin{document} > > > \begin{lilypond} > { > \key g \major > } > \end{lilyp

Re: how to make a lilypond fragment without any notes in it?

2005-01-10 Thread =?UTF-8?Q?Micha=C5=82_Dwu=C5=BCnik?=
On Mon, 10 Jan 2005 19:30:26 +, Alex Hunsley <[EMAIL PROTECTED]> wrote: > \documentclass[a4paper]{article} > \begin{document} > > \begin{lilypond} > { > \key g \major s > } > \end{lilypond} > Adding some invisible rest would IMHO help. Michal __

Re: how to make a lilypond fragment without any notes in it?

2005-01-10 Thread Roland Goretzki
Hello list, hello alex, You wrote: > [ ... ] > If I add a single note to the lilypond section, like this: > > \begin{lilypond} > { > \key g \major > c > } Probably one trick would be to hide the note (not tested): \begin{lilypond} { \key g \major \hideNotes c } Best Regards Roland

Re: .scm problems when running LilyPond

2005-01-10 Thread Sophie Marshall
On Sun, 9 Jan 2005, Graham Percival wrote: > > On 9-Jan-05, at 2:37 PM, Sophie Marshall wrote: > > I'm hoping someone will be able to shed some light on why my lilypond > > installation isn't working. I've compiled and installed lilypond > > version > > 2.4.2 on Slackware 10.0, and running "lily

Tempo over chords

2005-01-10 Thread Charles Gran
I'm working on a lead sheet and am using the template from the manual (section 3.2.4). I'd like the tempo mark and some markup text to appear above the chord symbols. Suggestions? ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.

\postscript in \markup

2005-01-10 Thread Han-Wen Nienhuys
[EMAIL PROTECTED] writes: > Hi, > > Trying to add some culs-de-lampe (drawn with METAPOST) to a score, > I look on file-inclusion in textmarkup, but don't see anything. So, > I try to add postscript code from my eps file (removing header) like this : > > \version "2.5.6" > \markup{ "\embeddedps{

non-latin1 characters

2005-01-10 Thread Han-Wen Nienhuys
[EMAIL PROTECTED] writes: > Would anyone be so kind to send me a working example (as short as > possible, preferrably), > of non-latin1 (latin2 if possible) text encoding inside a .ly file for > version 2.4.2 ? > At the moment my struggle to get the national characters seems to be fruitless If you

fingering

2005-01-10 Thread David Raleigh Arnold
I just wanted to show what it took to get decent fingering on an introductory grade simple little exercise in two parts. There is a problem getting the first 1-- close to the notehead. The output is at http://www.openguitar.com/html/files/cma0.pdf . Finger numbers should be close to the notehead

Re: dvips fails: can't find header file ecrm10

2005-01-10 Thread Bryan Stanbridge
Aur?le Duda <[EMAIL PROTECTED]> writes: > >With an update to 2.5.6 have I the same problem this afternoon. >Considering the txfonts.map, I tried to add ".pfa" at the end of the >every lines in the file ec-mftrace.map and it works now. >I don't know if it's a good way but... >-- next p

Odp: fingering

2005-01-10 Thread Albert Einstein
The link shoud be: http://www.openguitar.com/files/cma0.pdf If you use polyphony syntax {} // {} you can put number of finger close note head as follows: { \set fingeringOrientations = #'(right) 4. } // {} You write 4 instead a'4-2; where 2 is second finger and 4 for crotchet. If you have cho

one-time x notehead

2005-01-10 Thread Charles Gran
I'd like to have a single pitch in a vocal line with a "x" notehead (for a spoken word). ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: one-time x notehead

2005-01-10 Thread Graham Percival
On 10-Jan-05, at 5:17 PM, Charles Gran wrote: I'd like to have a single pitch in a vocal line with a "x" notehead (for a spoken word). See this message http://lists.gnu.org/archive/html/lilypond-user/2005-01/msg00044.html Cheers, - Graham ___ lilypond-u

Chord Names

2005-01-10 Thread Gordon Gilbert
Hi! I'm writing out a lead sheet in the key of B (All you keyboardists out there, don't choke! It's even worse for many guitarists.) I would like to produce a sheet for the guitarists with the chords in A, and a notation to use "capo 2", but leave the original melody in B. The keyboard copy

Re: one-time x notehead

2005-01-10 Thread Charles Gran
Graham Percival wrote: \override Notehead #'style = #'cross I believe that's the right command; "cross" might be a different word, though. If it doesn't work, try looking up note or notehead in the program reference. Couldn't get this to work. As you say, maybe "cross" isn't it. Does anyone know

Re: one-time x notehead

2005-01-10 Thread Gilles
> Or maybe I am not using this correctly?: > > \override Notehead #'style = #'cross > c'' 4 > \revert Notehead #'style "NoteHead", not "Notehead". Best, Gilles ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listin

RE: Remove bar spacing

2005-01-10 Thread =?iso-8859-1?Q?Martin_Djern=E6s?=
Hi Everyone, > An alternative solution that may be simpler is to fool > LilyPond into beleiving that the bar actually is 5/4 long, > but still print 4/4. For example, you can set \time 5/4 and > then manually override how the time signature is printed. Thanks for all your suggestions - they