Re: Bar numbers for broken measures

2012-10-19 Thread Xavier Scheuer
On 19 October 2012 02:52, Daniel Rosen drose...@gmail.com wrote: The piece I'm working on has a repeat that ends in the middle of a measure, with a line break at the same point: \version 2.16.0 \relative c' { \time 4/4 \repeat volta 2 { c d e } \break f | g a b } \paper { ragged-right =

Redistributing Emmentaler .otf files

2012-10-19 Thread Urs Liska
Hi list, I want to redistribute the Emmentaler .otf files as part of a GPLed LaTeX package. I recall reading that Emmentaler is GPLed with the font exception (meaning that works created using the fonts aren't implicitely covered by the GPL), but I don't seem to be able to find a copy of the

_ underscore lyric hyphen

2012-10-19 Thread Rustik
Hello everybody! Excuse me for my bad english. I am beginner lilypond user. Please help me. I need to use underscore lyric hyphen _. It must be aligned to left syllable and avtomatically be before syllable at new system. For example: Cy_ ri_ e e_ lei_ son, Cy_ _rie e_ lei_ son

Re: Bar numbers for broken measures

2012-10-19 Thread Peter Gentry
Date: Thu, 18 Oct 2012 21:27:01 -0400 From: Mark Witmer m...@markwitmer.com \version 2.16.0 \relative c' { \time 4/4 \repeat volta 2 { c d e } \once \set Score.barNumberVisibility = #(lambda (bar-number measure-position) #t) \once \set Score.barNumberFormatter = #(lambda

How to use numerals in lyric?

2012-10-19 Thread Rustik
Hello everybody! Excuse me for my bad english. I am beginner lilypond user. Please help me. I need to use numerals in lyric. For example: qw1 er2t y3 yt 0r e9w q8 Is it possible? If yes, how i can do it? -- View this message in context:

Re: How to use numerals in lyric?

2012-10-19 Thread David Kastrup
Rustik rustik...@mail.ru writes: Hello everybody! Excuse me for my bad english. I am beginner lilypond user. Please help me. I need to use numerals in lyric. For example: qw1 er2t y3 yt 0r e9w q8 Is it possible? If yes, how i can do it? quote marks will help. -- David Kastrup

Re: How to use numerals in lyric?

2012-10-19 Thread Urs Liska
Am 19.10.2012 13:23, schrieb Rustik: quote marks will help. What do you mean? He means qw1 er2t y3 yt 0r e9w q8 will give you what you seem to expect. -- View this message in context: http://lilypond.1069038.n5.nabble.com/How-to-use-numerals-in-lyric-tp135047p135049.html Sent from the

Re: How to use numerals in lyric?

2012-10-19 Thread Rustik
He means qw1 er2t y3 yt 0r e9w q8 will give you what you seem to expect. It works! Thank you a lot! -- View this message in context: http://lilypond.1069038.n5.nabble.com/How-to-use-numerals-in-lyric-tp135047p135051.html Sent from the User mailing list archive at Nabble.com.

Re: Bar numbers for broken measures

2012-10-19 Thread Janek Warchoł
Hi, On Fri, Oct 19, 2012 at 2:52 AM, Daniel Rosen drose...@gmail.com wrote: The piece I'm working on has a repeat that ends in the middle of a measure, with a line break at the same point: I would like to have a bar number, perhaps in parentheses, at the beginning of the second line,

Re: Bar numbers for broken measures

2012-10-19 Thread Eluze
I just tried to add a snippet in LSR with several of the available procedures, however the LSR is still at version 2.14 so it wouldn't compile here is what I wanted to add: barNumberVisibility.ly http://lilypond.1069038.n5.nabble.com/file/n135054/barNumberVisibility.ly hth Eluze -- View

Re: pitch name transpose into numeric pr key signature

2012-10-19 Thread MING TSANG
Hi, lily user, Just want to find out how can I fix the problem I have with the following email sent on Oct 14.   Blessing in+, Ming. From: MING TSANG tsan...@rogers.com To: lilypond-usermailinglist lilypond-user@gnu.org Sent: Sunday, October 14, 2012 6:08:56

Re: Multi-measure rests and counter in piano staff

2012-10-19 Thread Helge Kruse
Do you have any idea how to combine the two multi-rest bar counts in a piano staff? Helge 2012/10/17 Helge Kruse helge.kr...@gmx.net When playing in an orchestra it's important to count rests. To make this tasks easier you can write numbers into rest measures. Especially for a piano staff

predicate pitch-or-music? - getting rid of ##{ #} ?

2012-10-19 Thread Thomas Morley
Hi, I tried to create a function which should accept a pitch _or_ music. So I defined a pitch-or-music? predicate: #(define (pitch-or-music? x) (or (ly:pitch? x) (ly:music? x))) Calling the function, I have to use ##{ ... #} for music _and_ for a single pitch. Calling the function for a

Re: Bar numbers for broken measures

2012-10-19 Thread Thomas Morley
2012/10/19 Eluze elu...@gmail.com: I just tried to add a snippet in LSR with several of the available procedures, however the LSR is still at version 2.14 so it wouldn't compile here is what I wanted to add: barNumberVisibility.ly

RE: Bar numbers for broken measures

2012-10-19 Thread Daniel Rosen
Here's what I ended up using, and it works fine: \version 2.16.0 \relative c' { \set Score.barNumberVisibility = #(lambda (bar-number measure-position) #t) \time 4/4 \repeat volta 2 { c d e } \break f | g a b } \paper { ragged-right = ##t } This is essentially Mark's solution,

Re: predicate pitch-or-music? - getting rid of ##{ #} ?

2012-10-19 Thread David Kastrup
Thomas Morley thomasmorle...@googlemail.com writes: Hi, I tried to create a function which should accept a pitch _or_ music. So I defined a pitch-or-music? predicate: #(define (pitch-or-music? x) (or (ly:pitch? x) (ly:music? x))) Calling the function, I have to use ##{ ... #} for music

Re: _ underscore lyric hyphen

2012-10-19 Thread Thomas Morley
2012/10/19 Rustik rustik...@mail.ru: Hello everybody! Excuse me for my bad english. I am beginner lilypond user. Please help me. I need to use underscore lyric hyphen _. It must be aligned to left syllable and avtomatically be before syllable at new system. I've never seen this before, but

Re: predicate pitch-or-music? - getting rid of ##{ #} ?

2012-10-19 Thread Thomas Morley
2012/10/19 David Kastrup d...@gnu.org: Thomas Morley thomasmorle...@googlemail.com writes: Hi, I tried to create a function which should accept a pitch _or_ music. So I defined a pitch-or-music? predicate: #(define (pitch-or-music? x) (or (ly:pitch? x) (ly:music? x))) Calling the

subdividing sixteenth-note triplet beam groups

2012-10-19 Thread Steve Yegge
I would like this: \times 2/3 { c16 c c c c c } to render with two beamed groups of three notes each, with the two groups connected by a single beam, like so: c c c c c c | | | | | | = = I have tuplet numbers and brackets set to transparent. I tried #set

Re: Bar numbers for broken measures

2012-10-19 Thread Eluze
Thomas Morley wrote how about adding it to the LSR, commenting the 2.16-part? Or extend http://lsr.dsi.unimi.it/LSR/Item?id=559 ? modulo-bar-number-visible works in 2.14.2 already, but is not documented, AFAIK. At least it would be nice to have it in the LSR.

Re: subdividing sixteenth-note triplet beam groups

2012-10-19 Thread Nick Payne
On 20/10/12 08:58, Steve Yegge wrote: I would like this: \times 2/3 { c16 c c c c c } to render with two beamed groups of three notes each, with the two groups connected by a single beam, like so: c c c c c c | | | | | | = = I have tuplet numbers and brackets

Re: Glissando between single notes in chord

2012-10-19 Thread David Nalesnik
Hi pabuhr. On Wed, Oct 17, 2012 at 10:48 PM, pabuhr pab...@fastmail.fm wrote: I've been working on the last version of David Nalesnik's guide-finger code. The reason is a horizontal and vertical placement problem when the guide line is long and/or at a steep angle. I have managed to fix the