Re: Add \mark entries with edition-engraver?

2015-01-12 Thread Urs Liska
Hi Kieren (and implicitly Jan-Peter), Am 11.01.2015 um 21:52 schrieb Kieren MacMillan: Hi Jan-Peter, thank you for this snippet! I will work on it next week :) While you’re in there… ;) 1. If you \set Score.currentBarNumber, everything gets wonky from there on. =) 2. Please consider

Re: segmented glissando lines

2015-01-12 Thread Pierre Perol-Schneider
Nice Harm ! Thanks for the code. Cheers, Pierre 2015-01-12 0:39 GMT+01:00 Urs Liska u...@openlilylib.org: Am 12.01.2015 um 00:37 schrieb Thomas Morley: 2015-01-12 0:06 GMT+01:00 Urs Liska u...@openlilylib.org: Hi Harm, this is terrific! I'm about to collect a number of examples why

Re: instrumentSwitch and addInstrumentDefinition use

2015-01-12 Thread Kieren MacMillan
Hi Keith, Thanks for the function and snippet. Here is a [compiling, but non-functional] revision showing how I *want* to use it: SNIPPET BEGINS \version 2.19.15 transpositionUpdateKey = #(define-music-function (parser location new-transposition) (ly:pitch?) (_i Set instrument

Re: instrumentSwitch and addInstrumentDefinition use

2015-01-12 Thread Kieren MacMillan
Hi Keith, I guess you enter the notes in concert pitch, then ? Yes — I can’t imagine entering it any other way and maintaining my sanity. :) Do you use the \quoteDuring mechanism (as below) or Jan-Peter's auto-transposing engraver to generate the engraved pitches for each instrument?

output PDF

2015-01-12 Thread Peter Jongh Visscher
I started using Lilypond and the in the PDF output the first line(staff) jumps a little bit forward(see Example) I can not find a command to set all the staff starting at the same point. Met vriendelijke groet, Peter Jongh Visscher Stationsweg 172 1852 LN HEILOO telefoon +31 (0)72

Re: output PDF

2015-01-12 Thread Paul Morris
Welcome to LilyPond! Peter Jongh Visscher wrote I started using Lilypond and the in the PDF output the first line(staff) jumps a little bit forward(see Example) I can not find a command to set all the staff starting at the same point. For this, use indent = #0 in the \layout block as

Re: output PDF

2015-01-12 Thread Brian Barker
At 16:54 12/01/2015 +0100, Peter Jongh Visscher wrote: I started using Lilypond and the in the PDF output the first line (staff) jumps a little bit forward (see Example) I can not find a command to set all the staff starting at the same point. Try: \layout { indent = #0 } I trust this helps.

RE: output PDF

2015-01-12 Thread Mark Stephen Mrotek
Peter: Use: \layout { indent = #0 } Mark From: lilypond-user-bounces+carsonmark=ca.rr@gnu.org [mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of Peter Jongh Visscher Sent: Monday, January 12, 2015 7:55 AM To: lilypond-user@gnu.org Subject: output PDF I

Re: output PDF

2015-01-12 Thread Kieren MacMillan
Hi Peter, I started using Lilypond Welcome to the ‘Pond!! =) I can not find a command to set all the staff starting at the same point. \paper { indent = 0\in } See http://www.lilypond.org/doc/v2.18/Documentation/notation/horizontal-spacing-paper-variables for more information on how to

Re: Overriding preset tablature for ukulele

2015-01-12 Thread Anton Curl
Hi Ryan! If you want to control the string number, you can use this: \score { \new TabStaff { \relative c' { e\1 e\2 e\3 e\4 } } } (You can use \omit Voice.StringNumber in the layout block if you also use a staff) Or this: \score { \new TabStaff \relative c { \set

Tablature for Pedal Steel Guitar - 'text' in tab

2015-01-12 Thread and...@andis59.se
I want to write some music for Pedal Steel Guitar. Most player are using tablature so I want to use it also. One of my problems is that the Pedel Steel Guitar has pedals! They re-tune one or more strings when pressed. (There is of cause no standard on how many pedals or which strings they

Adjusting the position of tempo indications

2015-01-12 Thread David Sumbler
The default position of tempo indications is, to my eye, rather too close to whatever is beneath them, be it a stave, a note or a slur. I have tried experimenting with \override TextScript #'padding = #4 and \override TextScript.padding = #4 (I was unsure of the syntax) just to see if I can

Re: Adjusting the position of tempo indications

2015-01-12 Thread Thomas Morley
2015-01-12 22:37 GMT+01:00 David Sumbler da...@aeolia.co.uk: The default position of tempo indications is, to my eye, rather too close to whatever is beneath them, be it a stave, a note or a slur. I have tried experimenting with \override TextScript #'padding = #4 and \override

Re: Adjusting the position of tempo indications

2015-01-12 Thread Dominic
You probably need to adjust MetronomeMark.padding in the score context rather than TextScript.padding in the Staff context, thus: /\override Score.MetronomeMark.padding = #4/ -- View this message in context:

snippet throws programming errors

2015-01-12 Thread Cynthia Karl
The following snippet: \version 2.19.15 music = \relative c'' { e2 g, } \score { \new Staff \key c \major \music \layout { \context { \Voice \consists Ambitus_engraver } } } throws the following two programming errors: * programming error: Note-column without

Re: snippet throws programming errors

2015-01-12 Thread Jim Long
On Mon, Jan 12, 2015 at 05:25:55PM -0600, Cynthia Karl wrote: The following snippet: \version 2.19.15 music = \relative c'' { e2 g, } \score{ \new Staff \key c \major \music \layout { \context { \Voice \consists Ambitus_engraver } } } Your Staff line is

Re: instrumentSwitch and addInstrumentDefinition use

2015-01-12 Thread Jan-Peter Voigt
Hi Keith, thanks for that snippet! It should be possible to add KeySignatures to the edition-engraver ... and to automatically create a KeySig on change of instrument transposition ... Cheers, Jan-Peter Am 12.01.2015 um 06:28 schrieb Keith OHara: ... \version 2.19.15 transpositionUpdateKey

Re:snippet throws programming errors (Jim Long) 53

2015-01-12 Thread Cynthia Karl
Message: 7 Date: Mon, 12 Jan 2015 20:10:20 -0800 From: Jim Long lilyp...@umpquanet.com Subject: Re: snippet throws programming errors On Mon, Jan 12, 2015 at 05:25:55PM -0600, Cynthia Karl wrote: The following snippet: \version 2.19.15 music = \relative c'' { e2 g, } \score

Re: snippet throws programming errors

2015-01-12 Thread Keith OHara
Cynthia Karl pckarl at mac.com writes: \score{ \new Staff \key c \major \music \layout { \context { \Voice \consists Ambitus_engraver } } } throws the following two programming errors: Programming errors are intended to report conditions that a programmer thinks

Re: instrumentSwitch and addInstrumentDefinition use

2015-01-12 Thread Keith OHara
On Mon, 12 Jan 2015 06:36:15 -0800, Kieren MacMillan kieren_macmil...@sympatico.ca wrote: how I *want* to use it: flute_part = { c'2 c'' | b'4 g'8 a' b'4 c'' | c'2 a' | g'2. r4 | \prep_alto R1*4 | % [input below in concert pitch] \play_alto a2 f' | %[ desired typeset

Re: snippet throws programming errors (Jim Long) 53

2015-01-12 Thread Keith OHara
Cynthia Karl pckarl at mac.com writes: IMO, the problem is that my simple snippet causes LilyPond to declare that programing errors have occurred. Programming errors are a serious problem. Programming errors are only solved by correcting the program, not by avoiding them by modifying the