\emptyText for rehearsal marks?

2007-06-17 Thread Panteck
Is there an equivalent to \emptyText for rehearsal marks, or some other way to accomplish the same thing? \version "2.11.26" \paper{ ragged-right=##t } { \clef bass \time 4/4 % This mark stretches the measure of rest out \once \override Score.RehearsalMark #'self

Divided parts

2005-09-27 Thread Panteck
I'm writing a piece that has divided parts. My problem is that Lilypond is putting brackets around every line, not just the lines where the divisi occurs. I though that the SystemStartBracket.collapse-height property would take care of this for me automatically, but even when I try overriding th

Pitched trill?

2006-04-24 Thread Panteck
Is there a way to do this in Lilypond (2.8)? I've looked at the \pitchedTrill command, but that specifies a note to trill to, and I'd rather just specify sharp, flat, or natural in the trill line. --Steven PitchedTrill.PNG Description: PNG image _

Bracketed non-div notes?

2006-04-24 Thread Panteck
I'm writing some music that has a large div. section, with occasional chords that should be played non-div. I've seen this notated as brackets around the notes that should be played together before. I searched the docs, but either I don't know the correct musical term for this, or I'm really b

Re: Producing postscript for custom paper size (9x12" manuscript paper)?

2006-05-30 Thread Panteck
Sorry to resurrect this thread again, but I've been busy with work and haven't had time to read the list lately :) I haven't fully tested this, but on Windows XP with Lilypond 2.9, just changing paper.scm to include the following line works for me: ("archA" . (cons (* 9.0 in) (* 12.0 in))) arch

RE: Very basic problem with manual beaming

2006-06-04 Thread Panteck
Try this: c''[ 16 d'' d''] a'[ d'' d''] c''[ d'' d'' d''] e''[ d'' e'' fis''] --Steven -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ed Bradburn Sent: Sunday, June 04, 2006 10:36 AM To: lilypond-user@gnu.org Subject: Very basic problem with manual beam

Can you add blank pages in Lilypond?

2006-07-21 Thread Panteck
I'm using Lilypond 2.8.4 on Windows XP. I'm trying to optimize page turns in a double-sided printing scenario, and need to add blank pages in the PDF at appropriate locations. Is it possible to add a completely blank page (or a page that says "This page intentionally left blank") in Lilypond?

Re: Can you add blank pages in Lilypond?

2006-07-24 Thread Panteck
t blank to facilitate page turning)" } \bar " " \revert Staff.StaffSymbol #'line-count \stopStaff \startStaff \pageBreak } --Steven - Original Message - From: "Graham Percival" <[EMAIL PROTECTED]> To: "Panteck" <[EMAIL PROTECTED]> Cc:

Re: Sharp and flat trills

2006-08-22 Thread Panteck
Here's what I did to get trb: % Create new trill line string trillFlat = \markup { \musicglyph #"scripts.trill" \super \flat } v1 = new \Voice { \once \override TrillSpanner #'padding = #1.5 \once \override TrillSpanner #'edge-text = #(cons trillFlat "" ) a'1 ( \startTrillSpan | a'2

Laissez vibrer question

2006-08-28 Thread Panteck
Windows XP, Lilypond 2.8.6 I'm trying to force the direction of a laissez vibrer tie like so: \version "2.8.6" \score { \new Voice { \clef bass \time 4/4 \override LaissezVibrerTie #'direction = #UP c4 \laissezVibrer d4 \laissezVibrer e4 \laissezVibrer f4 \laissezVibrer g4 \laissezVibr

RE: overriding Auto Beam

2006-11-05 Thread Panteck
Try: c4. c8 b8[ a8] The [] characters are used to manually start and stop beams. --Steven -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christopher A. LaFond Sent: Sunday, November 05, 2006 2:23 PM To: lilypond-user@gnu.org Subject: overriding Auto Be

Combining multiple \tags?

2007-01-23 Thread Panteck
I've got three sets of tags ( letter/a4/bigprint, part/score, and original/edit ). What I want to do is something like \keepWithTag #'letter #'part #'edit, but \keepWithTag doesn't take multiple values, and \keepWithTag #'value1{ \keepWithTag #'value2 } doesn't work, because the inner \keep st