Re: Ending slur on a different voice

2024-10-30 Thread Cameron Hall
On Wed, 30 Oct 2024 15:14:59 +0100 David Kastrup wrote: > Cameron Hall writes: > > > Here is a short simplified excerpt of a piece I'm trying to notate. > > I need a slur to start on the quarter note C and end on the D in > > measure 3. However, it doesn't

Ending slur on a different voice

2024-10-30 Thread Cameron Hall
d for this? %%% \version "2.24.4" \fixed c'' { \time 3/4 r2 c4~( | c8 d e f g a | << { b a g f e d) } \\ { r4 q } >> | c2. | } %%% Thanks, Cameron

Re: Dynamics are ignored when part splits into multiple voices

2024-10-30 Thread Cameron Hall
On Mon, 28 Oct 2024 17:46:22 -0400 (EDT) msk...@ansuz.sooke.bc.ca wrote: > On Mon, 28 Oct 2024, Cameron Hall wrote: > > > Is there any way to apply dynamics to a single part that splits into > > multiple voices? Here's a short excerpt of a piano piece. The &g

Dynamics are ignored when part splits into multiple voices

2024-10-28 Thread Cameron Hall
plits into separate voices in measure 2, they no longer apply and both voices are at the default loud volume again. Thanks, Cameron %%% \version "2.24.4" common = { \time 6/8 s2.*6\p \bar "|." } top = \fixed c' { g8 c' e' g c' e' << g&#x

Re: Text alignment of page-ref

2024-10-16 Thread Cameron Hall
(list (make-hspace-markup gap) page-markup))) If I copy the function, but remove the "(make-hspace-markup gap)", then I get the left-aligned page number like I want. Thanks, Cameron

Re: [version 2.25.20] Odd behavior with unfold within volta repeat

2024-10-16 Thread Cameron Hall
On Tue, 15 Oct 2024 15:47:52 -0400 Nikolai Hedler wrote: > The current documentation states that \alternative outside is the > older syntax; I guess I'll keep doing it that way. > - Nikolai > > > On Tue, Oct 15, 2024 at 3:42 PM Xavier Scheuer > wrote: > > > On Tue, 15 Oct 2024 at 21:35, Nikol

Text alignment of page-ref

2024-10-13 Thread Cameron Hall
This may seem very nitpicky, but how can I control the alignment of the text in a page-ref? I'm using "000" as the placeholder, since I want this to work with up to 3 digits of page numbers. Lilypond seems to compute the width of the "000" then *right* align the text inside of that space, so if the

Re: Vertical re-order of text markup

2024-10-13 Thread Cameron Hall
On Sun, 13 Oct 2024 17:57:25 +0200 Helge Kruse wrote: > I am experimenting with some fuzzy notation examples. These examples > shall sometimes "violate" the standard rules of good note engraving. > > In one example some annotations are added to the notes, similar as > shown in the PNG. I found a

Re: Using a Scheme function that returns a bookpart?

2024-10-13 Thread Cameron Hall
On Sun, 13 Oct 2024 10:20:29 +0200 Thomas Morley wrote: > Am Sa., 12. Okt. 2024 um 20:33 Uhr schrieb Cameron Hall > : > > > > In this example, I have function called "scorePart" that returns a > > staff that I use to make parts in the score, and this works.

Using a Scheme function that returns a bookpart?

2024-10-12 Thread Cameron Hall
hen I attempt to use it I get an error complaining about bad expression type. What is going on here that it will accept a staff but not a bookpart? Thanks, Cameron %%% \version "2.24.4" \header { title = "Example" } flute.name = "Flute" flute.key = c' flute.mu

Re: Strange behavior with repeat immediately before alternate endings

2024-10-11 Thread Cameron Hall
On Thu, 10 Oct 2024 10:06:03 -0700 Knute Snortum wrote: > On Thu, Oct 10, 2024 at 9:27 AM Lucas Cavalcanti > wrote: > > > Put brackets before and after the "repeat unfold 3". Don't know what > > causes this bug, but it still happens in version 2.25.19. > > > > %% > > \fixed c'' { > > \repeat

Re: Dynamics with multiple voices

2024-10-10 Thread Cameron Hall
On Tue, 8 Oct 2024 17:29:00 -0700 Knute Snortum wrote: > On Tue, Oct 8, 2024 at 9:38 AM Cameron Hall > wrote: > > > I'm trying to add dynamics to a part that splits into two, then goes > > back into a unison section. The problem is that the crescendo > > starts i

Strange behavior with repeat immediately before alternate endings

2024-10-10 Thread Cameron Hall
I've run into a strange problem that I think may be a bug. In this MWE, I have a repeat with alternate endings. However, the "\repeat unfold 3 { c1 }" is causing the volta brackets to disappear for some reason. If I instead write out "c1 c1 c1", it works as expected. If I add another note right bef

Dynamics with multiple voices

2024-10-08 Thread Cameron Hall
ndo to start in measure two and end with the forte in measure 7. Thanks, Cameron %%% \version "2.24.4" { \clef bass \time 3/4 <>^"div." << { \repeat unfold 4 { r4 e e | } } \\ { \repeat unfold 2 { c2. | g,2. | } } \new Dynamics { s2.\p | s2.*3\< | } >> e4^"unis." f g | f e d | c2.\f | } %%%

Horizontal positioning of items above the staff

2024-10-07 Thread Cameron Hall
I'm trying to figure out how the layout and positioning system works. Lilypond is able to move some of these outside-staff objects vertically to avoid them overlapping, though I'd rather some items get pushed horizontally rather than stack and take up more vertical space. I know I can use outside-s

Re: Combining drum parts

2024-10-04 Thread Cameron Hall
On Fri, 4 Oct 2024 22:53:35 +0200 Thomas Morley wrote: > Am Fr., 4. Okt. 2024 um 19:37 Uhr schrieb Cameron Hall > : > > > > I'd like to have separate drum parts for readability purposes but > > combine them into one staff on the conductor's score. To my > >

Combining drum parts

2024-10-04 Thread Cameron Hall
voices. However, this doesn't merge any duplicate items like partCombine can, so any dynamics or rests in both parts will be printed twice. Any way to achieve this? Thanks, Cameron %%% \version "2.24.4" \header { title = "Example" } snare = \drummode { sn4\p\< 8 8 r4

Some code to make tremolos work in MIDI output

2024-10-04 Thread Cameron Hall
There are two ways to write a tremolo on a single note. You can use the "\repeat tremolo" form or add a colon with the tremolo duration after a note. While these are engraved identically, they are not represented the same way internally. The \unfoldRepeats command is able to unfold the "\repeat tre

Re: MIDI format and MIDI resolution

2024-10-03 Thread Cameron Hall
I know this is late, but there are plenty of tools to convert between format 0 and 1, including timidity. `timidity input.mid -Om -o output.mid` will convert format 1 to format 0, for example.

Re: Problems with alternate endings

2024-10-03 Thread Cameron Hall
On Mon, 30 Sep 2024 12:45:25 -0700 Knute Snortum wrote: > On Mon, Sep 30, 2024 at 11:54 AM Cameron Hall > wrote: > > > However, I still can't get the slur to work. > > > > I don't know the answer for the repeats, but use a \repeatTie for the > pa

Re: Problems with alternate endings

2024-10-02 Thread Cameron Hall
On Mon, 30 Sep 2024 15:55:14 -0700 Knute Snortum wrote: > On Mon, Sep 30, 2024 at 2:31 PM Cameron Hall > wrote: > > > On Mon, 30 Sep 2024 12:45:25 -0700 > > Knute Snortum wrote: > > > > > On Mon, Sep 30, 2024 at 11:54 AM Cameron Hall > > > wrote: &

Problems with alternate endings

2024-09-30 Thread Cameron Hall
I am experimenting some more with Lilypond, and I've run into a few problems trying to use the volta repeat with alternate endings. I've decided to put all of the dynamics and structure of the piece into a variable called common. This example is in 3/8 time with an eighth note pickup. Because of th

Re: Poor formatting when using partCombine and quoteDuring

2024-09-27 Thread Cameron Hall
On Thu, 26 Sep 2024 21:36:58 -0500 David Wright wrote: > On Wed 25 Sep 2024 at 16:35:51 (-0500), Cameron Hall wrote: > > Hello, I'm a fairly new user, and I'm trying to combine some > > similar parts together in a score which may contain quoted > > section

Poor formatting when using partCombine and quoteDuring

2024-09-25 Thread Cameron Hall
Hello, I'm a fairly new user, and I'm trying to combine some similar parts together in a score which may contain quoted sections. However, it seems that using quoteDuring screws up the layout. Instead of getting neat chords, the stem direction isn't right, it prints "Solo II" even though both pa

Re: Fine-tuning footer alignment

2024-06-11 Thread Cameron Horsburgh
Hi Jean, Thanks so much for that. It works perfectly! I did see \general-align in the docs, but it didn't immediately jump out at me as what I needed. Thanks for helping me out! Cameron Horsburgh On Tue, 11 Jun 2024 at 16:22, Jean Abou Samra wrote: > \version "2.25.13

Re: Distinguishing semibreve and minim rests without a staff

2024-05-27 Thread Cameron Horsburgh
Ah, great, thanks for that. I knew there had to be a way! Regards, Cameron Horsburgh On Mon, 27 May 2024 at 16:09, Xavier Scheuer wrote: > On Mon, 27 May 2024 at 06:09, Cameron Horsburgh > wrote: > > > > Hi folks, > > > > I'm writing a resource for beginn

Distinguishing semibreve and minim rests without a staff

2024-05-26 Thread Cameron Horsburgh
can't think of any straightforward way to do this in LilyPond though. Has anyone else found a way around this problem? Cameron Horsburgh

Re: GhostScript problem (I think)

2023-10-10 Thread Cameron Horsburgh
, and I'm now in business! Thanks for your help! Cam Cameron Horsburgh On Wed, 11 Oct 2023 at 13:35, Jean Abou Samra wrote: > Ouch, I think I see the cause. Could you move LilyPond to a folder whose > full path doesn't contain any parentheses and retry? > >

Re: GhostScript problem (I think)

2023-10-10 Thread Cameron Horsburgh
Apologies for not including the list--my usual client does that default, but I'm not using my usual client! Here's the .ly file as requested. Cameron Horsburgh On Wed, 11 Oct 2023 at 13:14, Jean Abou Samra wrote: > Le mercredi 11 octobre 2023 à 13:03 +1030, Cameron Hors

GhostScript problem (I think)

2023-10-10 Thread Cameron Horsburgh
1. * Given the lack of bug reports about this that I can see, I assume it has something to do with my setup! Any ideas? Cameron Horsburgh

Re: LilyPond-aware text editors

2015-11-05 Thread Cameron Horsburgh
I use an app called Koder on iOS. It does syntax highlighting and some keyword completion for LilyPond files straight out of the box. It's not particularly useful for heavy or even medium weight lifting, but it's great for a quick proofread when I'm away from my main machine. Ca

partcombine and bendAfter don't always play nicely

2013-05-22 Thread Cameron Horsburgh
. However, if I use the partcombiner so that a stem shared (example 3), the falls are not typeset. This isn't simply an issue with the stem though---the problem persists if I use whole notes. Is this a bug in LilyPond or just the user? -- Cameron Horsburgh

Re: List-email Suggestion

2010-09-05 Thread Cameron Horsburgh
ast add it to the end of the subject. Surely the regexp you filter on can handle that. Cameron Horsburgh blog: http://spiritcry.wordpress.com On 6 September 2010 10:14, Brett McCoy wrote: > On Sun, Sep 5, 2010 at 3:03 PM, Kaz Kylheku wrote: >> >> On Sun, 5 Sep 2010 14:22:35 -04

Re: RFC: new vertical layout engine

2009-06-17 Thread Cameron Horsburgh
At Wed, 17 Jun 2009 14:24:18 +0300, Joe Neeman wrote: > > On Tue, Jun 16, 2009 at 3:32 PM, Cameron Horsburgh > wrote: > > > I produce a lot of conductor's scores (with one system to a page) but > I've always found the spacing to detract a lot from

Re: RFC: new vertical layout engine

2009-06-16 Thread Cameron Horsburgh
c position, rather than the > overridden position). What I would ideally like (for systems-per-page = #1) is for the top line of the top staff and the bottom line of the bottom staff to be the same for every page, and everything suitably spread out between. In other words, the to

Re: The fastest way to typeset orchestral scores, especially when splitting the work to many workers

2009-05-27 Thread Cameron Horsburgh
nstrument? Definitely. It'll be far easier to combine it all when they're done. > Of course, these are only my opinions, but I hope they help! -- Cameron Horsburgh Blog: http://spiritcry.wordpress.com/ ___ lilypond-user mailing list l

Re: about beam, stacato dots, and chord

2009-04-12 Thread Cameron Horsburgh
jEdit editor from http://www.jedit.org/ and add the lilypondtool plugin http://lilypondtool.organum.hu/ That will do useful things like syntax highlighting and generate templates to get you started on your scores. See if you can figure out how to fix the problems you're having, and don'

Re: (de)cresendi syntax

2009-04-11 Thread Cameron Horsburgh
e, listing 'crescendos' and 'crescendi' as the plural forms. It also lists the term as an adverb/adjective and a verb. The Merriam-Webster offers similar defnitions while recognising the original Italian from is adjectival. http://www.askoxfor

Re: I don't remember how to do this ...

2009-04-10 Thread Cameron Horsburgh
ranpose it from there. The only problem I can see is if you've used notes from F major instead of G (i.e. you've flattened your B's but not sharpened your F's). If that's the case I don't think the tranpose function wi

Re: How to input keysignature or timesignature in \markup?

2009-04-07 Thread Cameron Horsburgh
xactly are you trying to produce your learning notes? Are you using lilypond-book snippets? Are you using lilypond scores with lots of text markup blocks? If you tell us exactly what it is you're trying to do we might be able to help more, or come up with even better wa

Re: Concert Pitch (a second try)

2009-04-06 Thread Cameron Horsburgh
uments do not make sense and their players should be treated with the utmost respect and suspicion. -- Cameron Horsburgh Blog: http://spiritcry.wordpress.com/ ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: How to get a single notation of clefs, keys, or others?

2009-04-06 Thread Cameron Horsburgh
st here in case of a compilation failure: The glyphs are also listed in the documentation. This is the 2.13 docs, but I'm sure it's also in the 2.12 docs. http://lilypond.org/doc/v2.13/Documentation/user/lilypond/The-Feta-font#The-F

Re: Trying to figure out a beat grouping

2009-03-20 Thread Cameron Horsburgh
On Thu, Mar 19, 2009 at 11:37:52PM -, Trevor Daniels wrote: > > Cameron Horsburgh wrote Thursday, March 19, 2009 10:28 AM >> >> I'm having trouble trying to modify the automatic beaming for a piece >> I'm working on. This piece has many examples of this fig

Re: Making lilypond ignore some clashes

2009-03-19 Thread Cameron Horsburgh
On Thu, Mar 19, 2009 at 06:11:09PM +, Alberto Simões wrote: > > I just would like to make lilypond to shut up about those specific clashes. > > Is there any way to do that? Try \override NoteColumn #'ignore-collision = ##t -- Cameron Horsburgh Blog: http://spirit

Re: Trying to figure out a beat grouping

2009-03-19 Thread Cameron Horsburgh
es. > >/Mats Sorry, yes. Group of four quavers covering beats one and two or beats three and four should be beamed together. -- Cameron Horsburgh Blog: http://spiritcry.wordpress.com/ ___ lilypond-user mailing list lilypond-user@gnu.or

Trying to figure out a beat grouping

2009-03-19 Thread Cameron Horsburgh
cide whether or not to put a beam between between beats one and two? If the semiquavers came at the end of beat one it probably wouldn't be that hard. Is this the sort of thing the 'begin' beam-limit type was intended for? -- Cameron Horsburgh Blog:

Re: Line break and page fit do not work

2009-03-10 Thread Cameron Horsburgh
4/4 a4 a a % <--- This bar is missing a beat \repeat volta 20 {a2 a} % <--- None of these notes will begin at the start of % a measure, because they're all offset by a % beat. -- Cameron Horsburgh Blog: http://spiritcry.wordp

Re: LilyPond 2.12 and emacs on Ubuntu

2009-03-04 Thread Cameron Horsburgh
sed strangely. I have to use M-x LilyPond-mode because M-x lilypond-mode isn't recognised. -- Cameron Horsburgh Blog: http://spiritcry.wordpress.com/ ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: problem with installing frescobaldi

2009-02-25 Thread Cameron Horsburgh
ort.cgi?bug=335828 -- Cameron Horsburgh Blog: http://spiritcry.wordpress.com/ ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: (de)cresendi syntax

2009-02-22 Thread Cameron Horsburgh
e in C++. > > Could you please comment on these propositions and give any other ideas. > > F. Bron > > PS: attached is a file that show the behaviour of the commands. > ___ > lilypond-user mailing list > lilypond-user@gnu.org &g

Re: Long compilation times

2009-01-13 Thread Cameron Horsburgh
On Mon, Jan 12, 2009 at 06:58:07AM +1100, Cameron Horsburgh wrote: > On Sun, Jan 11, 2009 at 05:29:14PM +0100, John Mandereau wrote: > > Cameron Horsburgh a écrit : > >> I'm running a 2.4 GHz P4 with 1.25 Gig of Ram. The machine is aging, > >> but it should be up

Re: Long compilation times

2009-01-11 Thread Cameron Horsburgh
On Sun, Jan 11, 2009 at 05:29:14PM +0100, John Mandereau wrote: > Cameron Horsburgh a écrit : >> I'm running a 2.4 GHz P4 with 1.25 Gig of Ram. The machine is aging, >> but it should be up to this challenge. I've noticed scores compile >> much quicker on much

Long compilation times

2009-01-11 Thread Cameron Horsburgh
ontext Staff = BbTubas { \set Staff.instrumentName = \markup {"B"\flat" Tuba" } \set Staff.shortInstrumentName = \markup {"B"\flat" Tuba" } \set Staff.midiInstrument = "tuba" \transpose c c { \relative c { \clef bass \global } } } >> \context DrumStaff = BandPercussion { \set DrumStaff.instrumentName = \markup { "Percussion" } \set DrumStaff.shortInstrumentName = \markup { "Perc." } \transpose c c { \relative c { \global } } } >> \layout {} \header {} } \paper{ #(set-paper-size "a3" 'landscape ) line-width = #370 horizontal-shift = #5 indent = #10 ragged-last-bottom = t ragged-bottom = t after-title-space = #0 } -- Cameron Horsburgh Blog: http://spiritcry.wordpress.com/ ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: short instrument name setting

2009-01-08 Thread Cameron Horsburgh
ay of doing this---using \set short.InstrumentName in the appropriate \staff block is the more idiomatic way to go. That way the definition is *completely* removed from the content. It just seems more LilyPondish. -- Cameron Horsburgh Blog: h

Re: nvlle version -pov 3.7 beta 30

2009-01-06 Thread Cameron Horsburgh
On Tue, Jan 06, 2009 at 11:41:53PM +0100, Valentin Villenave wrote: > 2009/1/6 Cameron Horsburgh : > > > It gets better---as far as I recall (I can't find the link now) the > > lilypond language was ispired by (and based on) the POV-Ray > > langauge. The chic

Re: nvlle version -pov 3.7 beta 30

2009-01-06 Thread Cameron Horsburgh
anguage was ispired by (and based on) the POV-Ray langauge. The chickens are coming home to roost...! -- Cameron Horsburgh Blog: http://spiritcry.wordpress.com/ ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: short instrument name setting

2009-01-05 Thread Cameron Horsburgh
ri" \barisax > \new Staff = "trombone" \trombone > \new Staff = "tromboneb" \tromboneb >>> } } > \book { \score { << \new Staff = "trumpet" \with { \remove > shortInstrumentName } \trumpet >> } } > \book

Re: Newbie question: tie between a and b

2009-01-05 Thread Cameron Horsburgh
{ > \time 4/4 > a4 ~ a a ~ b } > } > } > > > > \version "2.10.0" % necessary for upgrading to future LilyPond versions. > > > > ___ > lilypond-user mailing list > lilypond-user@

Re: question about transposing an interval of a 4th

2008-12-21 Thread Cameron Horsburgh
On Sun, Dec 21, 2008 at 02:20:32PM -0800, Graham Percival wrote: > On Mon, Dec 22, 2008 at 07:41:35AM +1100, Cameron Horsburgh wrote: > > > melody = {a b c d e f g} > > > { \melody \\ { \transpose c' g \melody }} > > > > > > Hmm... I can see that

Re: question about transposing an interval of a 4th

2008-12-21 Thread Cameron Horsburgh
On Sun, Dec 21, 2008 at 09:47:53AM -0800, Graham Percival wrote: > On Sun, Dec 21, 2008 at 11:26:16PM +1100, Cameron Horsburgh wrote: > > On Sat, Dec 20, 2008 at 11:49:10PM -0800, Graham Percival wrote: > > > ... I really don't understand this question. If you already know

Re: question about transposing an interval of a 4th

2008-12-21 Thread Cameron Horsburgh
\relative c''{ <<\melody \\ {\transpose c' g {\relative c''{\melody}}}>> } -- Cameron Horsburgh Blog: http://spiritcry.wordpress.com/ ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: question about transposing an interval of a 4th

2008-12-20 Thread Cameron Horsburgh
e, if your melody is in c and goes {a b c} do you want to get {e f g} (diatonic) or {e fis g} (perfect)? > > > ___ > lilypond-user mailing list > lilypond-user@gnu.org > http://lists.gnu.org/mailman/listinfo/lilypo

Re: Lighter appearance

2008-11-15 Thread Cameron Horsburgh
r lines to match. A set of default settings would make this much easier! -- Cameron Horsburgh Blog: http://spiritcry.wordpress.com/ ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Trouble getting my page layout just right

2008-10-30 Thread Cameron Horsburgh
On Thu, Oct 30, 2008 at 07:46:16AM +1100, Cameron Horsburgh wrote: > On Wed, Oct 29, 2008 at 05:00:17PM +0100, Mats Bengtsson wrote: > > Hmm, I'm glad I'm not the only one who thinks it's strange! And it's > nothing recent either---it's been a problem since I

Re: Trouble getting my page layout just right

2008-10-29 Thread Cameron Horsburgh
me many clues as to why they're changing. Also, there are dynamic marks on page three---the cornets and basses have mf markings toward the end of the system. Thanks for your help, -- Cameron Horsburgh Blog: http://spiritcry.wordpress.com/ ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Trouble getting my page layout just right

2008-10-29 Thread Cameron Horsburgh
=0.0 \cm \context { \Score \override VerticalAlignment #'max-stretch = #ly:align-interface::calc-max-stretch } \context { \Staff \override VerticalAxisGroup #'minimum-Y-extent = #'(-2 . 2) } \context { \DrumStaff \override VerticalAxisGroup

Re: LilyPond examples

2008-10-29 Thread Cameron Horsburgh
On Thu, Oct 16, 2008 at 10:06:12PM +1100, Cameron Horsburgh wrote: > Hi folks, > > Next weekend I'll be attending a composing workshop organised by my > church. One of the sessions will cover the relevant software. It seems > the facilitator is going to be showing off Finale

LilyPond examples

2008-10-16 Thread Cameron Horsburgh
it if anyone had files I could use that show off some of the more interesting features of LilyPond. I'll produce some printed examples, and if people start scratching their heads trying to work out how I did something, I'll have done my job ;-). Thanks folks, --

Re: Double-flats used by Lilypond after transpose

2007-08-01 Thread Cameron Horsburgh
t/lsr/scheme/lily-0934c4d641.ly for clues (I haven't had a good look at this, but I think it does whayt you're after.) Hope this helps! -- = Cameron Horsburgh =

Re: Rendering two documents as one musical score

2007-07-07 Thread Cameron Horsburgh
y? > I'm not entirely sure what you're asking, but I suspect you can get what you want by using separate \score blocks in your file. -- ===== Cameron Horsburgh =

\transpose causes massive amounts of swapping

2007-06-11 Thread Cameron Horsburgh
submit it as a bug? -- ========= Cameron Horsburgh = ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Using \allowPageTurn

2007-06-06 Thread Cameron Horsburgh
t tell the function where you would like to allow page breaks.' The second part is easy enough, but I don't see any instructions for enabling it in the \paper block. Any clues (or am I missing something obvious?) -- =======

Re: Non-english letters in title and text

2007-06-06 Thread Cameron Horsburgh
careful an upgrade could install the 2.8 Lilypond in the repository which will cause all sorts of conflicts. The easy answer is to use equivs -- this fools apt into thinking that a package (or a particular version) is installed when it isn't. Check the apt manual for more info. --

Re: producing "archival" scores

2007-04-11 Thread Cameron Horsburgh
gs of MusicXML and how it differs from LilyPond. I'm not sure if it adds much to this discussion, but it might be relevant. The interview itself has disappeared, but it was Slashdotted and some kind soul posted the text of the article (and was promptly modded -1 Troll, but there you go.)

Re: producing "archival" scores

2007-04-07 Thread Cameron Horsburgh
ently used tweaks commented out, so I don't have to go searching the manual for the same thing all the time. Of course, defining style sheets can take a long time, and I'm glad I don't have to do it for each piece I set. It also helps the style of music I set doesn't seem to ch

Re: no crescendoSpanner?

2007-04-05 Thread Cameron Horsburgh
I presume you've only looked in the 2.10 manual -- the answer's in the 2.11. Try \override DynamicTextSpanner #'dash-period = #-1.0 HTH -- = Cameron Horsburgh = _

Re: Slurring into alternative endings

2007-04-02 Thread Cameron Horsburgh
in section 6.7.2 'Repeat Syntax' You need to use the \repeatTie command. > ___ > lilypond-user mailing list > lilypond-user@gnu.org > http://lists.gnu.org/mailman/

Re: Tempo mark (MM) range

2007-03-22 Thread Cameron Horsburgh
note. > > Of course, you can adjust the exact output (e.g., remove the > parentheses) in the Scheme code, to suit your needs. > > Hope this helps! > Kieren. > > Kieren, would you be willing to submit this to the LSR? -- = Ca

Re: Ugly volta brackets

2007-03-12 Thread Cameron Horsburgh
text.) Number two... hmm, I agree. Can't help though. The main reason I'm replying is to respond to number three. IIRC This has been discussed on the list a few times, so you might like to check the archives. However, I did notice that your example doesn't have a ve

Re: Need Help Posting to LSR

2007-03-06 Thread Cameron Horsburgh
On Mon, Mar 05, 2007 at 10:41:21PM -0800, Graham Percival wrote: > Cameron Horsburgh wrote: > >There is one problem --- the explanatory note is extremely large, and > >dwarfs the picture of the snippet itself. There also seems to be a > >problem with the line wrapping. > &

Re: Need Help Posting to LSR

2007-03-05 Thread Cameron Horsburgh
. However, it might be better to put the explanation in a comment in the lily code, and a note to that effect in the explanation. This way the explanation will stay with the snippet, and will be a little easier to read. -- =====

Re: Need Help Posting to LSR

2007-03-04 Thread Cameron Horsburgh
ilypond, so you'll need to modify your file to use 2.10 syntax. This may not seem to be so hard -- if I comment the version number it compiles cleanly. I've had a very quick look at the file, and I'm having trouble getting it to

Fonts missing in Ancient notation

2007-02-26 Thread Cameron Horsburgh
x27; found c d warning: clef clefs.petrucci-c2' not found warning: clef clefs.petrucci-c2' not found warning: clef clefs.petrucci-c2_change' not found ... I can't tell by the output if it's rendering correctly or not. Is this a known problem? -- ======

Issues with ancient notation

2007-02-26 Thread Cameron Horsburgh
. I don't understand gregorian notation, so I cannot say if the output is correct -- however, the ligatures in this example don't seem to have been rendered. Is this a bug, or is it nothing to worry about? -- =====

What the heck is Y-offset-callback?

2007-02-26 Thread Cameron Horsburgh
what I should do with it? -- ===== Cameron Horsburgh = ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

I don't understand this error

2007-02-26 Thread Cameron Horsburgh
grob 'text \score { \relative c''' { \override Stem #'direction = #1 \applyOutput #(outputproperty-compatibility (make-text-checker (make-simple-markup "m.d.")) 'extra-offset '(-3.5 . -4.5)) a^2^"m.d." } } % It f

Re: Repeated messages during compilation

2007-02-26 Thread Cameron Horsburgh
ut > a following "Preprocessing ..." correspond to \score blocks with only > MIDI output, i.e. without any \layout block. > > /Mats > > Quoting Cameron Horsburgh <[EMAIL PROTECTED]>: > > >Hi folks, > > > >I have a couple os lilypond files which repe

Repeated messages during compilation

2007-02-16 Thread Cameron Horsburgh
. Calculating line breaks... Drawing systems... Layout output to foo.ps'... Converting to foo.pdf'... The repeated lines iterate about sixty times. Is this normal, is there a problem with the file, or should it be forwarded to bug-lilypond? --

Confusion with naming system

2007-02-16 Thread Cameron Horsburgh
= #'((left-edge extra-space . 2.0)) \set PianoStaff.instrumentName = "Piano " Cheers, -- ===== Cameron Horsburgh = ___ lilypond-user mailing l

Re: Different notehead types sharing a stem in double-stops

2007-02-15 Thread Cameron Horsburgh
struct an example for you, but I think the \tweak command might do just what you want. Check section 9.3.5 of the 2.11 manual (it should alkso work in 2.10). -- = Cameron Horsburgh = ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Catching error messages

2007-02-14 Thread Cameron Horsburgh
On Wed, Feb 14, 2007 at 02:45:46PM +0100, Han-Wen Nienhuys wrote: > Cameron Horsburgh escreveu: > > On Mon, Feb 12, 2007 at 12:09:39PM +0100, Han-Wen Nienhuys wrote: > > > >> don't; -dlog-file=foo is the recommended method. -dseparate-log-files if > >> yo

File fails prooperty type check

2007-02-14 Thread Cameron Horsburgh
ble isn't listed in the Program Reference and the output isn't affected if I comment it out. Am I right in thinking it's safe to delete that line? -- = Cameron Horsburgh = __

Re: Catching error messages

2007-02-14 Thread Cameron Horsburgh
ted, but no log is left, even if foo.ly contains errors. lilypond -dseparate-log-files foo.ly bar.ly also compiles cleanly, but I get a warning -- warning: no such internal option: separate-log-files and no log files. Thoughts? -- ========= Camero

Re: Catching error messages

2007-02-11 Thread Cameron Horsburgh
On Sun, Feb 11, 2007 at 03:13:36PM -0800, Graham Percival wrote: > Cameron Horsburgh wrote: > >On Sun, Feb 11, 2007 at 11:40:45AM -0800, Graham Percival wrote: > >>Cameron Horsburgh wrote: > >>>I'd love to be able to specify a log file for either each file or t

Re: Catching error messages

2007-02-11 Thread Cameron Horsburgh
On Sun, Feb 11, 2007 at 11:40:45AM -0800, Graham Percival wrote: > Cameron Horsburgh wrote: > >I'd love to be able to specify a log file for either each file or the > >entire run. Does this exist? If not, does anyone have any idea how I > >might be able to do this? >

Re: Bad number of pages (?!) Error

2007-02-11 Thread Cameron Horsburgh
\new PianoStaff << \set PianoStaff.instrumentName = "Piano " \new Staff = "upper" {\clef treble \key c \major \time 4/4 c''2 d''4 bes4 } \new Staff = "lower" {\clef bass \key c \major \time 4/4 c4 f2 g4 } >> \layout { } } -- = Cameron Horsburgh = ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Catching error messages

2007-02-11 Thread Cameron Horsburgh
x27;m running Debian GNU/Linux, BTW). I'd love to be able to specify a log file for either each file or the entire run. Does this exist? If not, does anyone have any idea how I might be able to do this? -- ========

Re: get an accidental to not print

2007-02-09 Thread Cameron Horsburgh
l rules: check section 9.1.1 'Automatic accidentals' (http://lilypond.org/doc/v2.11/Documentation/user/lilypond/Automatic-accidentals#Automatic-accidentals) for more info. -- = Cameron Horsburgh = _

Re: 2 problems

2007-02-09 Thread Cameron Horsburgh
'. That might be the source of the 'unexpected =' error. Can't help with the other questions though. = Cameron Horsburgh = ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Reorganizing the contents of the \paper block

2007-02-07 Thread Cameron Horsburgh
ime_signature_engraver" > } > } > \layout has another function, although it may be a special case of one of its other uses. If a \score block contains a \midi block the \layout block is needed if PDF output is also

  1   2   >