Re: Newbie Question

2020-02-01 Thread Mark Gould
Hi, A reboot seemed to fix my issue... I have a working LilyPond now - so time to do some reading of the manuals! Mark

Re: Newbie Question -- verse and chorus

2009-05-12 Thread Mats Bengtsson
Tim Rowe wrote: My case is like: chorus = \relative c' { c4 d e f | g a b } verse = \relative c'' { \partial 4 c4 | d e d c | } \new Staff { \new Voice = "mel" { \chorus } \new Voice = "vs" {\verse} } So actually \bar "|" does just what I needed all along! Excellent, then it

Capo Chords (was: Re: Newbie Question -- verse and chorus)

2009-05-12 Thread Tim Rowe
2009/5/12 Carl D. Sorensen : > To do this on double rows is not too hard.  I made it easier by developing a > parenthesizeAll function. > > (I haven't put in the instrument name or the instrument_name_engraver that > was in the archives, but I think you can do that). > > parenthesizeAll = > #(defi

Re: Newbie Question -- verse and chorus

2009-05-12 Thread Carl D. Sorensen
On 5/12/09 4:44 AM, "Tim Rowe" wrote: > > Now on to my next exercise -- working out how to print capo chords in > parentheses after the regular chord, so I get: > (capo 3) C (A) G7 (E7) > The nearest I can find is at > http://www.mail-archive.com/lilypond-user@gnu.org/msg24850.html, but

Re: Newbie Question -- verse and chorus

2009-05-12 Thread Tim Rowe
2009/5/12 Mats Bengtsson : > > > James E. Bailey wrote: >> >> I would just not use partial. You know that you can put in a bar line even >> if the measure isn't complete. >> James E. Bailey > > Yes, in situations like the following one: > \relative c'{ >  \partial 4 c4 | c d e f | g2. \bar "||" \br

Re: Newbie Question -- verse and chorus

2009-05-12 Thread Mats Bengtsson
James E. Bailey wrote: I would just not use partial. You know that you can put in a bar line even if the measure isn't complete. James E. Bailey Yes, in situations like the following one: \relative c'{ \partial 4 c4 | c d e f | g2. \bar "||" \break e4 | g f e d | c2. \bar "|." } but not

Re: Newbie Question -- verse and chorus

2009-05-11 Thread James E. Bailey
Am 11.05.2009 um 20:24 schrieb Tim Rowe: The only thing wrong is that the verse starts with an anacrusis -- a pickup beat, for which I've used \partial. The notes look perfect, but the bar numbering is wrong because it's treating the incomplete bar at the end of the chorus and the completion in

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
2009/5/11 Mats Bengtsson : > Here, I would rather say > \new Staff { >  \autoBeamOff \new Voice = "mel" { \chorus }  \new Voice = "vs" {\verse} } That is clearer, yes. I'm still a bit shaky about when I can cascade things in sequence and when I can't. The rule so far seems to be that when I try i

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Mats Bengtsson
Quoting Tim Rowe : Thanks. With that I've got something that is very nearly right. Having given the music element pretty obvious names, I have in a simultaneous section of the score: \new Voice = "mel" { \autoBeamOff \chorus \new Voice = "vs" {\verse} } Here, I would rather say \new Staff {

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
2009/5/11 Jonathan Kulp : > And maybe this is the snippet Kieren's thinking of? > > http://lsr.dsi.unimi.it/LSR/Item?id=333 Thanks. It looks as if "learn more scheme" is the answer ;-) -- Tim Rowe ___ lilypond-user mailing list lilypond-user@gnu.org

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Jonathan Kulp
Tim Rowe wrote: 2009/5/11 Kieren MacMillan : If I recall correctly, there's a Scheme function in the LSR which allows you to increment/decrement the bar number at any point -- search for "bar number" or "increment". Which is the LSR? I'd done that search in the learning manual, notation refer

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
2009/5/11 Kieren MacMillan : > If I recall correctly, there's a Scheme function in the LSR which allows you > to increment/decrement the bar number at any point -- search for "bar > number" or "increment". Which is the LSR? I'd done that search in the learning manual, notation reference, internal

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Kieren MacMillan
Hi Tim, I can kludge that by using: \set Score.currentBarNumber = #9 but that involves me counting the bars, so I'd sooner do something like \set Score.currentBarNumber = #(- 'internalBarNumber 1) except not that because it doesn't work. Drat. Am I going to have to learn more scheme, or a

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
2009/5/11 Tim Rowe : > but that involves me counting the bars, so I'd sooner do something like >  \set Score.currentBarNumber = #(- 'internalBarNumber 1) > except not that because it doesn't work. And neither does \set Score.currentBarNumber = #(- 'Score.currentBarNumber 1) nor \set Score.cur

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
2009/5/11 Trevor Daniels : > Tim, I think Mats meant the very last example in > that section, which shows two ways of coding a > solo verse followed by a 2-part harmonised refrain. > You could use either technique to code verses > and chorus.  The second method right at the end > is far easier. T

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
2009/5/11 Graham Percival : > (on the LR) > "This book explains how to begin learning LilyPond, as well as > explaining some key concepts in easy terms. You should read these > chapters in a linear fashion. Which I did. > There is a paragraph See also at the end of each section, which > contains

Re: Newbie Question -- verse and chorus

2009-05-11 Thread James E. Bailey
Am 11.05.2009 um 18:38 schrieb Graham Percival: Something like LM 1.2 About the documentation? (on the LR) "This book explains how to begin learning LilyPond, as well as explaining some key concepts in easy terms. You should read these chapters in a linear fashion. (on the NR) "This book expl

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
2009/5/11 Graham Percival : > The Learning Manual does ***NOT*** require any prior knowledge. > If you find **any** lilypond material in the LM which does not > follow from previous material, this is a bug. > (we do not explain musical terminology, although we try to add > links to the music glos

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Graham Percival
On Mon, May 11, 2009 at 05:32:29PM +0100, Tim Rowe wrote: > 2009/5/11 James E. Bailey : > > > The lilypond documentation really isn't the kind of > > documentation that you can go to when you want to know how to > > do something. It's designed to teach you how to use the > > software. > > > > Inci

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
2009/5/11 James E. Bailey : > The lilypond documentation really isn't the kind of > documentation that you can go to when you want to know how to do > something. It's designed to teach you how to use the software. > > That's a beautiful quote.  Valentin, could you include it in the > next Report? 

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
> Actually, the manuals are pretty good. After a fashion, yes. What's there is clear and well written. But the indexing and cross referencing is weak (too often it leads to where a concept is just mentioned rather than explained) and there seem to be gaps (although that might be because I can't fi

Re: Newbie Question -- verse and chorus

2009-05-11 Thread James E. Bailey
Am 11.05.2009 um 17:18 schrieb Graham Percival: On Mon, May 11, 2009 at 05:11:53PM +0200, James E. Bailey wrote: The lilypond documentation really isn't the kind of documentation that you can go to when you want to know how to do something. It's designed to teach you how to use the software.

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Graham Percival
On Mon, May 11, 2009 at 04:03:51PM +0100, Anthony W. Youngman wrote: > Graham's quite cuddly when you get to know him - like a hedgehog > you just have to be very careful how you cuddle him :-) Aww, you're making me blush. :) > The difficulty is that steep learning curve. Any decent lilypond pie

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Graham Percival
On Mon, May 11, 2009 at 05:11:53PM +0200, James E. Bailey wrote: > > The lilypond documentation really isn't the kind of > documentation that you can go to when you want to know how to do > something. It's designed to teach you how to use the software. That's a beautiful quote. Valentin, could y

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Graham Percival
On Mon, May 11, 2009 at 11:59:12AM +0100, Tim Rowe wrote: > In the case of every question I have asked, I have not only scoured > the manuals -- not just the learning manual -- but also searched the > snippets repository and the web in general for anything that might > give me a clue. Did you, or

Re: Newbie Question -- verse and chorus

2009-05-11 Thread James E. Bailey
Am 11.05.2009 um 12:59 schrieb Tim Rowe: 2009/5/11 Graham Percival : RTF Learning Manual. It's written specifically for this purpose. - Graham Really I find this attitude very aggressive, hostile and unwelcoming, and quite unlike all of the other email groups for software that I use. In t

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Anthony W. Youngman
In message , Tim Rowe writes 2009/5/11 Graham Percival : RTF Learning Manual.  It's written specifically for this purpose. - Graham Really I find this attitude very aggressive, hostile and unwelcoming, and quite unlike all of the other email groups for software that I use. Graham's quite

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
2009/5/11 Graham Percival : > RTF Learning Manual.  It's written specifically for this purpose. > - Graham Really I find this attitude very aggressive, hostile and unwelcoming, and quite unlike all of the other email groups for software that I use. In the case of every question I have asked, I h

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Graham Percival
On Mon, May 11, 2009 at 09:13:41AM +0100, Tim Rowe wrote: > That looks like what I need, but I don't quite understand it -- > probably because I don't properly understand contexts -- the in > documentation, all the index entries for contexts take me to sections > that assume I already know what the

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
2009/5/11 Trevor Daniels : > Tim, I think Mats meant the very last example in > that section, which shows two ways of coding a > solo verse followed by a 2-part harmonised refrain. > You could use either technique to code verses > and chorus.  The second method right at the end > is far easier. A

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Tim Rowe
2009/5/10 James E. Bailey : > There are different ways of doing this. I prefer to have separate voice > contexts for the verse and lyrics, i.e., music = { \context Voice = Verse > \relative {} \context Voice = Chorus \relative {} } and then corresponding > lyrics contexts: verse = \context Lyrics

Re: Newbie Question -- verse and chorus

2009-05-11 Thread Trevor Daniels
From: "Tim Rowe" wrote Monday, May 11, 2009 12:29 AM 2009/5/10 Mats Bengtsson : This is explained in Sect. "3.2.3 Voices and vocals" in the Learning Manual for LilyPond. I can't see anything relating to it there -- it was the first place I looked! Perhaps you don't understand what I want, o

Re: Newbie Question -- verse and chorus

2009-05-10 Thread Tim Rowe
2009/5/10 Mats Bengtsson : > This is explained in Sect. "3.2.3 Voices and vocals" in the Learning Manual > for LilyPond. I can't see anything relating to it there -- it was the first place I looked! Perhaps you don't understand what I want, or perhaps I can't see what't in front of my face (wouldn

Re: Newbie Question -- verse and chorus

2009-05-10 Thread Mats Bengtsson
James E. Bailey wrote: Some prefer to use \skip1*32 (or appropriate). I can't imagine that anybody prefers this option (at least not when using \addlyrics or \lyricsto), since it doesn't work. This will not skip 32 bars and not even 32 notes, but just a single note. /Mats ___

Re: Newbie Question -- verse and chorus

2009-05-10 Thread Mats Bengtsson
This is explained in Sect. "3.2.3 Voices and vocals" in the Learning Manual for LilyPond. /Mats Tim Rowe wrote: Sorry for all the newbie questions -- I'm getting what I can from the documentation and examples, but as you can tell a few things are tripping me up. This one is a song that has

Re: Newbie Question -- verse and chorus

2009-05-10 Thread James E. Bailey
Am 10.05.2009 um 22:54 schrieb Tim Rowe: Sorry for all the newbie questions -- I'm getting what I can from the documentation and examples, but as you can tell a few things are tripping me up. This one is a song that has verses and a chorus. I can't work out how to set them all against the mus

Re: Newbie question: Brief alternative lyrics-and-notes during repeat

2009-02-14 Thread Jonathan Kulp
aliteralmind wrote: This is exactly what I'm looking for, thank you Jon. Your example code taught me big time. Thanks for the help. I haven't tried the following yet, but I think I also understand now, how to make this work both with or without a second verse of lyrics. A combination of two vers

Re: Newbie question: Brief alternative lyrics-and-notes during repeat

2009-02-14 Thread aliteralmind
This is exactly what I'm looking for, thank you Jon. Your example code taught me big time. Thanks for the help. I haven't tried the following yet, but I think I also understand now, how to make this work both with or without a second verse of lyrics. A combination of two versus, and two VOICES, w

Re: Newbie question: brief alternative notes-and-lyrics in repeat

2009-02-14 Thread Jonathan Kulp
Jeff, I responded to this last night, although I suppose it's possible my response didn't answer all of your questions. Check the archives if you're not subscribed to the list. :) Jon Jeff Epstein wrote: How do you create lyrics for brief alternative notes, existing in repeated sections (

Re: Newbie question: Brief alternative lyrics-and-notes during repeat

2009-02-13 Thread Jonathan Kulp
Welcome to Lilypond, Jeff. :) What you're trying to do I would approach with more than one set of lyrics, coded as verseOne, verseTwo, etc., and with the voices separated into variables that can be assembled in a separate \score block. I've taken your code and made an example of how I would a

Re: newbie question about long scores / compilation times / memory allocation

2009-02-03 Thread Bertalan Fodor (LilyPondTool)
joel mellin wrote: Hi Bert, Yes, it's a dual core machine. With 4 GB of RAM. I guess it just seems strange that it would limit itself at 50% when other processess use as much as they need when they need it. No, they do only if they are using parallel computing. If the process only uses on

Re: newbie question about long scores / compilation times / memory allocation

2009-02-03 Thread joel mellin
Hi Bert, Yes, it's a dual core machine. With 4 GB of RAM. I guess it just seems strange that it would limit itself at 50% when other processess use as much as they need when they need it. If it needs more memory, and is generating memory allocations errors as a result, doesn't it seems like it

Re: newbie question about long scores / compilation times / memory allocation

2009-02-03 Thread Bertalan Fodor (LilyPondTool)
Please keep the discussion on the list using "Reply All" to let others fix my wrong thoughts. :-) It has nothing to do with the CPU. I suppose you have a dual core or hyperthreading processor. Look for the memory consumption of lilypond.exe in task manager. Use a value like 60. It also may ha

Re: newbie question about long scores / compilation times / memory allocation

2009-02-03 Thread Bertalan Fodor (LilyPondTool)
I'm sure that LILYPOND_GC_YIELD is not ignored, I tried it. See http://www.mail-archive.com/lilypond-user@gnu.org/msg38982.html However, I don't know if 90 is really high or not. I used to recommend a number below 70. Bert joel mellin wrote: Hi Lilyponders. newbie question - I'm entering t

Re: Newbie question: tie between a and b

2009-01-05 Thread Valentin Villenave
2009/1/5 Werner LEMBERG : > Actually, there is: { c-sharp ~ d-flat }. > > This is not (yet?) supported in lilypond. Yep, and it should be: http://code.google.com/p/lilypond/issues/detail?id=461 (I know you know about the tracker page, it's just a reminder for myself when I browse the archive.)

Re: Newbie question: tie between a and b

2009-01-05 Thread Werner LEMBERG
> There's no such thing as a tie between two different notes. Actually, there is: { c-sharp ~ d-flat }. This is not (yet?) supported in lilypond. Werner ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/

Re: Newbie question: tie between a and b

2009-01-05 Thread James E. Bailey
Am 05.01.2009 um 11:24 schrieb Gyula P. Szokoly: Hi, GNU LilyPond 2.10.33, input is at the end. The tie between the two 'a's works, but not between a and b. The problem seems to be related to the orientation of the stem (i.e. tie between opposite stems) but forcing the stem (\stemUp) does

Re: Newbie question: tie between a and b

2009-01-05 Thread Mats Bengtsson
Please check in a dictionary (and in the LilyPond documentation) about the difference between a tie and a slur. I'm afraid that the Music Glossary included in the LilyPond documentation does not yet include Hungarian, perhaps you would be interested in helping out with that? /Mats Gyula P.

Re: Newbie question: tie between a and b

2009-01-05 Thread Cameron Horsburgh
On Mon, Jan 05, 2009 at 11:24:44AM +0100, Gyula P. Szokoly wrote: > Hi, > > GNU LilyPond 2.10.33, input is at the end. The tie between the two 'a's > works, but not between a and b. The problem seems to be related to the > orientation of the stem (i.e. tie between opposite stems) but forcing > t

Re: Newbie question about variable durations

2007-11-09 Thread Rune Zedeler
(going back on list) Ben Fagin skrev: I've revised my implementation to set up variables using the make-pitch function instead of variables and it works now. Thank you! Now that I think about it, you do not have to use make-pitch. You can extract the pitch information from a note, like this:

Re: Newbie question about variable durations

2007-11-04 Thread Wilbert Berendsen
Op zaterdag 3 november 2007, schreef Ben: > I thought I had this figured out, but now I'm stuck. My program generates > midi notes and converts them to lily variables (ie noteone = {ees'} ). What > I need to do next is add my durations onto them. It seems so simple but I > get error after error. Y

Re: Newbie question about variable durations

2007-11-03 Thread Rune Zedeler
Ben skrev: I thought I had this figured out, but now I'm stuck. My program generates midi notes and converts them to lily variables (ie noteone = {ees'} ). What I need to do next is add my durations onto them. It seems so simple but I get error after error. I don't understand what you are using

Re: Newbie Question about cadenzas

2006-10-13 Thread Mats Bengtsson
Did you search for "hidden note" in the index to the manual? You may also want to use the feature described in the section on "Scaling Durations". /Mats Silouan wrote: Everything is just about perfect! Thank you again for your help. I have (hopefully) one last question. I need to put in a nu

Re: Newbie Question about cadenzas

2006-10-12 Thread Silouan
Everything is just about perfect! Thank you again for your help. I have (hopefully) one last question. I need to put in a number between the verses in the lyrics, but there won't be a note above the number. I tried to enclose the number in a string with the last syllable of the verse, but the

Re: Newbie Question about cadenzas

2006-10-11 Thread Silouan
Thank you thank you thank you thank you! I had assumed (I know--bad idea) that the whichBar was associated with the removal of the time signature. Shows what I know! It looks great! Thanks again! Silouan Rick Hansen (aka RickH) wrote: > > Your example prints the bar lines if you simply co

Re: Newbie Question about cadenzas

2006-10-10 Thread Rick Hansen (aka RickH)
I have not had the need to use whichBar yet, so I had to look it up too ;) Silouan wrote: > > Thank you thank you thank you thank you! > > I had assumed (I know--bad idea) that the whichBar was associated with the > removal of the time signature. Shows what I know! It looks great! > > Tha

Re: Newbie Question about cadenzas

2006-10-10 Thread Rick Hansen (aka RickH)
Your example prints the bar lines if you simply comment out the line that says: whichBar = #"" at the layout staff scope level. Setting whichBar at staff level seems to override your already correct \bar "|" statements. Silouan wrote: > > I've just started learning Lilypond and am very exc

Re: Newbie question on abc2ly

2005-02-21 Thread Mats Bengtsson
Please always tell what LilyPond version you are using when you send a question to the mailing list. There has been some recent discussions about bugs and limitations in abc2ly on the mailing list, check the mailing list archives for lilypond-devel and bug-lilypond. /Mats Chuck Boody wrote: Well

Re: newbie question on scheme functions

2004-12-31 Thread Andrea Rossato
Nicolas Sceaux wrote: In your input file, the module in which you work is (*anonymous-ly-0*), ... %% 3) switch back to (*anonymous-ly-0*) #(define-module (*anonymous-ly-0*)) These were the missing points. Thanks a lot for you kindness. Happy new year. Andrea __

Re: newbie question on scheme functions

2004-12-31 Thread Nicolas Sceaux
Andrea Rossato <[EMAIL PROTECTED]> writes: > Nicolas Sceaux wrote: >> You can do >> #(define-module (lily)) >> #(export accidental->markup) >> #(define-module (*anonymous-ly-0*)) >> at the beginning of your file, or alternatively, copy and paste the >> `accidental->markup' definition from scm/acci

Re: newbie question on scheme functions

2004-12-31 Thread Andrea Rossato
Nicolas Sceaux wrote: You can do #(define-module (lily)) #(export accidental->markup) #(define-module (*anonymous-ly-0*)) at the beginning of your file, or alternatively, copy and paste the `accidental->markup' definition from scm/accidental->markup to your input file. yes, both methods work perfec

Re: newbie question on scheme functions

2004-12-31 Thread Nicolas Sceaux
Andrea Rossato <[EMAIL PROTECTED]> writes: > I get: > > prova.ly:8:8: In expression (accidental->markup (ly:pitch-alteration > pitch)): > prova.ly:8:8: Unbound variable: accidental->markup > > The very same function in chord-name.scm works perfectly. > I'm I missing something? Ok sorry. That's be

Re: newbie question on scheme functions

2004-12-31 Thread Andrea Rossato
Nicolas Sceaux wrote: Putting the sharp sign should really do it: #(define-public (note-name->italian-markup pitch) Thanks Nicolas for your kind attention. But this does not actually work. Ideed, when compiling this file: %%% \version "2.4.2" #(define-public (note-name->itamarkup pitch)

Re: newbie question on scheme functions

2004-12-30 Thread Nicolas Sceaux
Andrea Rossato <[EMAIL PROTECTED]> writes: > I'm trying to find a cleaner solution: is it possible to define that > function inside a .ly file? > > I tried, by adding a # before the definition, but I get an error message. Putting the sharp sign should really do it: #(define-public (note-name->i

Re: newbie question

2004-04-11 Thread Mark Van den Borre
Op zo 11-04-2004, om 06:17 schreef Brian Prunka: > When trying to use Lilypond the first time, i went through your test > page and get the following error when I try to run the test file: > > [Brian-Prunkas-Computer:~] brianprunka% lilypond test > GNU LilyPond 1.6.9ERROR: ^ Thi

Re: newbie question

2003-11-10 Thread Mats Bengtsson
You should only apply the \autochange command to the voice that you want to move between the staves, not to both the upper voices. I've attached a version where the automatic stave change works. Also, I declared an identifier for each of the voices to make it easier to get an overview of the struct

Re: Newbie question: Repeat bars

2003-11-05 Thread David Raleigh Arnold
AIL PROTECTED] > Betreff: Re: Newbie question: Repeat bars > > > Take a look at > > http://mail.gnu.org/archive/html/lilypond-user/2003-10/msg00234.htm > >l to learn how to handle the accidental placement. > > Thank you. > > > I haven't checked any re

Re: Newbie question: Repeat bars

2003-11-05 Thread Thomas Scharkowski
Datum: Wed, 05 Nov 2003 10:23:03 +0100 Von:Mats Bengtsson <[EMAIL PROTECTED]> An: Thomas Scharkowski <[EMAIL PROTECTED]> Kopie an: [EMAIL PROTECTED] Betreff: Re: Newbie question: Repeat bars > Take a

Re: Newbie question: Repeat bars

2003-11-05 Thread Mats Bengtsson
Take a look at http://mail.gnu.org/archive/html/lilypond-user/2003-10/msg00234.html to learn how to handle the accidental placement. I haven't checked any references on music typesetting, but I'm certain that the notation used in LilyPond for :||: repeats corresponds to standard conventions. What

Re: Newbie question: Repeat bars

2003-11-04 Thread Thomas Scharkowski
[EMAIL PROTECTED] wrote: > > Why not use \repeat volta 2 {...} instead of \bar ? daveA > Thank you for the hint, but this gave the same result. The accidential in line 3 is on the wrong side of the repeat bar, should be next to the clef! Thomas P.S: I forgot: "Lilypond 2.0.1, Cygwin, Win98SE

Re: Newbie question: Repeat bars

2003-11-04 Thread David Raleigh Arnold
On Sunday 02 November 2003 11:28 am, Thomas Scharkowski wrote: > Hi all, > > I have made my first try with lilypond. Here is my question (I found > no > solution in either manual or archive): > > The repeat bars in both versions of the little Bach Bourrée are > different but both wrong: > > When I

Re: Newbie question

2003-09-22 Thread Mats Bengtsson
Did you look at the section on "An orchestral part" in the Tutorial? There's no right or wrong here, in addition to the tutorial, you could also get some hints by looking at files at http://www.mutopiaproject.org/ /Mats Bernard Meylan wrote: After a time of practice, I wish now to enter a bigge

Re: Newbie question

2003-09-20 Thread David Raleigh Arnold
On Saturday 20 September 2003 08:38 am, Bernard Meylan wrote: > After a time of practice, I wish now to enter a bigger orchestral > piece. I don't no exactly the right following order; firts the parts > and after the score? Or otherwise? And what is the best way to make a > .ly file so "clean" and

Re: Newbie question

2003-09-19 Thread Graham Percival
On Fri, 19 Sep 2003 20:57:16 -0300 Ricardo Kirkner <[EMAIL PROTECTED]> wrote: > > Please provide an example and tell us what version you're using. Are you > > setting the midiInstrument property instead of instrument? > > here is a part of my source file Sorry, could you provide a complete examp

Re: Newbie question

2003-09-19 Thread Graham Percival
On Sat, 20 Sep 2003 14:49:11 +1200 Warren Stickney <[EMAIL PROTECTED]> wrote: > I use two global sections, one for paper and one for midi (to give me tempo > changes without getting warning messages about junking tempo request) as in > a typical example below: BTW, now that metronome markings have

Re: Newbie question

2003-09-19 Thread Warren Stickney
\SopranoB \Tenor > \midi { \tempo 2=108 } } Warren Stickney Wellington, New Zealand Replying to your: ---------- Message: 7 Date: Fri, 19 Sep 2003 20:57:16 -0300 From: "Ricardo Kirkner" <[EMAIL PRO

Re: Newbie question

2003-09-19 Thread Ricardo Kirkner
> > | some notes | == 1 bracket > > Ah, I see. In North America, a "bracket" is normally called a "bar". > first of all, thank you for correcting my terminology. at least now I can refer to this term correctly :-) > Please provide an example and tell us what version you're using. Are you > sett

Re: Newbie question

2003-09-19 Thread Hans Forbrich
Your Question 1: Historically it has been considerd a bad idea to keep the bar spacing the same between 'lines', presumably because it is wasy to lose track of which 'line' you are reading. Most music publishers/typesetters I have seen will actually go out their way to ensure the lengths are not

Re: Newbie question

2003-09-19 Thread Graham Percival
On Fri, 19 Sep 2003 09:14:45 -0300 Ricardo Kirkner <[EMAIL PROTECTED]> wrote: > > > 1- How do you tell lilypond to typeset all brackets of equal lenghts > > > (or at least not each bracket out of two on a different lenght). > > > > I don't know what you mean by this. Could you give an example? >

Re: Newbie question

2003-09-19 Thread Ricardo Kirkner
Thank you for your quick answer > On Thu, 18 Sep 2003 22:41:53 -0300 > Ricardo Kirkner <[EMAIL PROTECTED]> wrote: > > 1- How do you tell lilypond to typeset all brackets of equal lenghts > > (or at least not each bracket out of two on a different lenght). > > I don't know what you mean by this.

Re: Newbie question

2003-09-18 Thread Graham Percival
On Thu, 18 Sep 2003 22:41:53 -0300 Ricardo Kirkner <[EMAIL PROTECTED]> wrote: > 1- How do you tell lilypond to typeset all brackets of equal lenghts > (or at least not each bracket out of two on a different lenght). I don't know what you mean by this. Could you give an example? > 2- How do you p

Re: newbie question about "unaccent" symbol

2003-06-22 Thread Jacob Smullyan
On Sun, Jun 22, 2003 at 09:34:34PM +0200, Jeremy wrote: > > JS> I'd like to mark a note as unaccented using the symbol whose use I > JS> associate with Schoenberg, the bottom half of a flattened circle > JS> (there must be a name for this symbol, but I don't know what it is). > JS> How can this be

Re: newbie question about "unaccent" symbol

2003-06-22 Thread Jeremy
JS> I'd like to mark a note as unaccented using the symbol whose use I JS> associate with Schoenberg, the bottom half of a flattened circle JS> (there must be a name for this symbol, but I don't know what it is). JS> How can this be done? Have you looked at the reference manual section on articul