Re: Nalesnik's Roman number analysis code

2014-11-20 Thread David Nalesnik
Hi Ivan,

On Mon, Nov 17, 2014 at 8:58 PM, Ivan Kuznetsov 
wrote:

> Thank you; I appreciate that.
>
> On Mon, Nov 17, 2014 at 6:04 PM, David Nalesnik
>  wrote:
> >
> > Yes--I'm pretty sure I got it to work with larger columns.  I'll have to
> > search around for that version of the file.  I'll get back to you when I
> do.
>

Not sure if this file represents the latest--it was written when 2.14.2 was
current.  There are just too many versions of this file on my computer--in
retrospect, should have used some kind of version-control.

Anyway, it will handle larger columns of figures.

Hope this is helpful--
David
\version "2.14.2"


%% A function to create Roman numerals for harmonic analysis.
%%
%% Syntax: \markup \rN { ...list of symbols... }
%%
%% List symbols in this order (as needed): Roman numeral (or note-name),
%% quality, top number of inversion symbol, bottom number, "/" (if secondary
%% function), Roman numeral (or note-name).  Usually, you can skip unnecessary
%% items, though a spacer may be needed in some cases.  Use "" instead of the
%% initial symbol to start with the quality or inversion, for example.
%%
%% Preceding or following a symbol with English alterations (f, s, ff, ss, x, n)
%% will attach accidentals: "fVII" -> flat VII; "svi" -> sharp vi; "Af" -> A-flat;
%% "As" A-sharp
%%
%% Qualities: use "o" for diminished, "h" for half-diminished,
%% "+" for augmented, "f" for flat; other indications are possible such as
%% combinations of "M" and "m" (M, m, MM7, Mm, mm, Mmm9, etc.); add, add6, etc.
%%
%% To scale all numerals: \override  LyricText #'font-size = #2
%% or \override  TextScript #'font-size = #2
%% To scale individual numerals: \markup \override #'(font-size . 2) \rN { ... }


 INPUT FORMATTING %%

%% input is split to (( . . . first part . . . ) ( . . . second part . . . ))
%% first part of input formatted as ((vii) (o) (4 3))

#(define (split-list symbols splitter)
   ;; given (vii o 4 3 / V) --> ((vii o 4 3) (/ V))
   ;; given (vii o 4 3) --> ((vii o 4 3) ())
   (let ((lst '()))
 (define (helper symbols splitter)
 (if (string= splitter (car symbols))
 (list lst symbols)
 (begin (set! lst (append lst (cons (car symbols) '(
(if (null? (cdr symbols))
(list lst '())
(helper (cdr symbols) splitter)
 (helper symbols splitter)))

#(define numbers '("2" "3" "4" "5" "6" "7" "8" "9" "11" "13"))

#(define qualities
   ;; only to allow omission of base when quality is alone
   ;; TODO--combinations of M and m, add, ADD . . . 
   '("o" "+" "h")) 

#(define (base-and-quality arg)
   (let ((len (length arg)))
 (cond ((= 0 len) '(() ()))
   ((= 1 len) 
(if (find (lambda (y) (string= (car arg) y)) qualities)
(list '() (list (car arg)))
(list (list (car arg)) '( ;; TODO figure out which is given
   ((= 2 len) (list (list (car arg)) (cdr arg))
   
#(define (segment-inversion-test symbols)
   ;; given (vii o 4 3) --> ((vii) (o) (4 3)) with call to base-and-quality
   ;; (4 3) --> (() () (4 3))
   ;; () --> (() () ())
   (let ((lst '()))
 (define (helper symbols)
 (if (find (lambda (y) (string= (car symbols) y)) numbers)
 (append (base-and-quality lst) (cons symbols '()))
 (begin
   (set! lst (append lst (cons (car symbols) '(
   (if (null? (cdr symbols))
   (append (base-and-quality lst) '(())) ; includes () for no numbers
   (helper (cdr symbols))
 (if (not (pair? symbols))
 (list '() '() '())
 (helper symbols


 NOTE NAMES / ACCIDENTALS %%
%% Based on English names.  For other languages, change the strings
%% in the three following definitions.

#(define notenames '("A" "a" "B" "b" "C" "c" "D" "d" "E" "e" "F" "f" "G" "g"))

#(define alterations '("f" "ff" "s" "ss" "x" "n"))

#(define (acc size-factor)
  `(("f" . ,(make-raise-markup (* 0.3 size-factor) (make-flat-markup)))
("ff" . ,(make-raise-markup (* 0.3 size-factor) (make-doubleflat-markup)))
("s" . ,(make-raise-markup (* 0.6 size-factor) (make-sharp-markup)))
("ss" . ,(make-raise-markup (* 0.3 size-factor) (make-doublesharp-markup)))
("x" . ,(make-raise-markup (* 0.3 size-factor) (make-doublesharp-markup)))
("n" . ,(make-raise-markup (* 0.6 size-factor) (make-natural-markup)

#(define (initial-accidental-test arg)
   ;; returns an alteration name or #f if none present
   (let ((index (1- (string-length arg

 (define (helper arg index)
   ;; find the longest prefix that matches an entry in list of alterations
   (or (find

Re: Text fonts

2014-11-20 Thread tyronicus
90% for counters and 80% for side bearings. I felt like the letters were
spaced too widely when I kept the side bearings at 90%.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168853.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Text fonts

2014-11-20 Thread tisimst
Looks good, tyronicus! Thanks for sharing that. What settings did you use?

-Abraham

Sent from my iPhone

> On Nov 20, 2014, at 10:46 AM, tyronicus [via Lilypond] 
>  wrote:
> 
> I have no idea what I'm doing (just downloaded FontForge for the first time), 
> but I tried some more relaxed settings and was really happy with the output. 
> 
> Vollkorn-Compressed2.otf
> 
> lipsum.pdf 
> 
> If you reply to this email, your message will be added to the discussion 
> below:
> http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168851.html
> To start a new topic under User, email ml-node+s1069038n...@n5.nabble.com 
> To unsubscribe from Lilypond, click here.
> NAML




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168852.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Text fonts

2014-11-20 Thread tyronicus
I have no idea what I'm doing (just downloaded FontForge for the first time),
but I tried some more relaxed settings and was really happy with the output.

Vollkorn-Compressed2.otf
  

lipsum.pdf   



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168851.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Text fonts

2014-11-20 Thread Urs Liska


Am 20.11.2014 18:02, schrieb tisimst:

Urs,

If tried it in LibreOffice, then I'm not surprised at the 
noticeable-ness (in an ugly way) of the font. I have only seen one 
font look good in that program. When you put it in a PDF, however, it 
should look a LOT better, especially in a non-body text.


I let LuaLaTeX compile a text document, with microtype support, so 
*that* is not the issue ...
However, I know the document itself wasn't really appropriate for *any* 
condensed font.
Unfortunately I don't have any time to look for a realistic test case 
right now.


Urs



-Abraham

Sent from my iPhone

On Nov 20, 2014, at 9:32 AM, Urs Liska [via Lilypond] <[hidden email] 
> wrote:




Am 20.11.2014 17:27, schrieb tisimst:

Urs,

On Thu, Nov 20, 2014 at 8:54 AM, Urs Liska [via Lilypond] <[hidden 
email] > wrote:


Am 20.11.2014 15:24, schrieb tisimst:

I'm afraid I don't entirely understand your question...


1)
Did you produce the condensed set?


Yes.


2)
If so, did you design the glyph shapes individually or through 
applying some sort of automatic scaling?


Automatic scaling. I realize this may be heresy, but it works, 
doesn't it?


I don't want to discuss if it's heresy, but it's noticeable.
I didn't test it on a score yet, only on a document with continuous 
text (where it may not be so appropriate in the first place), and the 
result *is* quite noticeable.
However, I'll have to test it as LilyPond lyrics, and maybe in a 
document with narrow columns where you'd expect a condensed font.


Thanks anyway
Urs





I think that's clearer, isnt it?

Urs


Yes, thanks for clarifying :)

Regards,
Abraham


View this message in context: Re: Text fonts 

Sent from the User mailing list archive 
 at Nabble.com 
.



___
lilypond-user mailing list
[hidden email]  
https://lists.gnu.org/mailman/listinfo/lilypond-user



___
lilypond-user mailing list
[hidden email] 
https://lists.gnu.org/mailman/listinfo/lilypond-user



If you reply to this email, your message will be added to the 
discussion below:

http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168848.html
To start a new topic under User, email [hidden email] 


To unsubscribe from Lilypond, click here.
NAML 
 




View this message in context: Re: Text fonts 

Sent from the User mailing list archive 
 at Nabble.com.



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Text fonts

2014-11-20 Thread tisimst
Urs,

If tried it in LibreOffice, then I'm not surprised at the noticeable-ness (in 
an ugly way) of the font. I have only seen one font look good in that program. 
When you put it in a PDF, however, it should look a LOT better, especially in a 
non-body text. 

-Abraham

Sent from my iPhone

> On Nov 20, 2014, at 9:32 AM, Urs Liska [via Lilypond] 
>  wrote:
> 
> 
> Am 20.11.2014 17:27, schrieb tisimst:
>> Urs,
>> 
>>> On Thu, Nov 20, 2014 at 8:54 AM, Urs Liska [via Lilypond] <[hidden email]> 
>>> wrote:
>>> 
>>> Am 20.11.2014 15:24, schrieb tisimst:
 I'm afraid I don't entirely understand your question...
>>> 
>>> 1)
>>> Did you produce the condensed set?
>> 
>> Yes.
>> 
>>> 2)
>>> If so, did you design the glyph shapes individually or through applying 
>>> some sort of automatic scaling?
>> 
>> Automatic scaling. I realize this may be heresy, but it works, doesn't it?
> 
> I don't want to discuss if it's heresy, but it's noticeable.
> I didn't test it on a score yet, only on a document with continuous text 
> (where it may not be so appropriate in the first place), and the result *is* 
> quite noticeable.
> However, I'll have to test it as LilyPond lyrics, and maybe in a document 
> with narrow columns where you'd expect a condensed font.
> 
> Thanks anyway
> Urs
> 
>> 
>>> 
>>> I think that's clearer, isnt it?
>>> 
>>> Urs
>> 
>> Yes, thanks for clarifying :)
>> 
>> Regards,
>> Abraham
>> 
>> View this message in context: Re: Text fonts
>> Sent from the User mailing list archive at Nabble.com.
>> 
>> 
>> ___
>> lilypond-user mailing list
>> [hidden email]
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> 
> ___ 
> lilypond-user mailing list 
> [hidden email] 
> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> 
> If you reply to this email, your message will be added to the discussion 
> below:
> http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168848.html
> To start a new topic under User, email ml-node+s1069038n...@n5.nabble.com 
> To unsubscribe from Lilypond, click here.
> NAML




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168849.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Text fonts

2014-11-20 Thread Urs Liska


Am 20.11.2014 17:27, schrieb tisimst:

Urs,

On Thu, Nov 20, 2014 at 8:54 AM, Urs Liska [via Lilypond] <[hidden 
email] > wrote:


Am 20.11.2014 15:24, schrieb tisimst:

I'm afraid I don't entirely understand your question...


1)
Did you produce the condensed set?


Yes.


2)
If so, did you design the glyph shapes individually or through 
applying some sort of automatic scaling?


Automatic scaling. I realize this may be heresy, but it works, doesn't it?


I don't want to discuss if it's heresy, but it's noticeable.
I didn't test it on a score yet, only on a document with continuous text 
(where it may not be so appropriate in the first place), and the result 
*is* quite noticeable.
However, I'll have to test it as LilyPond lyrics, and maybe in a 
document with narrow columns where you'd expect a condensed font.


Thanks anyway
Urs





I think that's clearer, isnt it?

Urs


Yes, thanks for clarifying :)

Regards,
Abraham


View this message in context: Re: Text fonts 

Sent from the User mailing list archive 
 at Nabble.com.



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Text fonts

2014-11-20 Thread tisimst
Urs,

On Thu, Nov 20, 2014 at 8:54 AM, Urs Liska [via Lilypond] 
 wrote:
> 
> Am 20.11.2014 15:24, schrieb tisimst:
>> I'm afraid I don't entirely understand your question...
> 
> 1)
> Did you produce the condensed set?

Yes.

> 2)
> If so, did you design the glyph shapes individually or through 
> applying some sort of automatic scaling?

Automatic scaling. I realize this may be heresy, but it works, doesn't 
it?

> 
> I think that's clearer, isnt it?
> 
> Urs

Yes, thanks for clarifying :)

Regards,
Abraham




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168847.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Text fonts

2014-11-20 Thread tisimst
Stan,

As it stands, LilyPond doesn't (yet) associate condensed, extended, 
medium, semi-bold, black, etc. variants with the normal italic, bold, 
and bold-italic variants in the font family. Thus, the condensed 
variants are used with the name "Vollkorn Condensed". If you want to 
use the medium or semi-bold variants, you'll need to reference them 
with their full names.

Regards,
Abraham

On Thu, Nov 20, 2014 at 8:18 AM, temp files [via Lilypond] 
 wrote:
> I note that the full name for Vollkorn Condensed Regular is 
> (according to Font Book) “Vollkorn,”  which is the same as the 
> full name for Vollkorn Regular. How does the style sheet distinguish 
> between the two versions?
> 
> Stan
> 
> On Nov 20, 2014, at 8:24 AM, tisimst <[hidden email]> wrote:
> 
>> I'm afraid I don't entirely understand your question...
>> 
>> -Abraham
>> 
>> Sent from my iPhone
>> 
>> On Nov 20, 2014, at 6:27 AM, Urs Liska [via Lilypond] <> href="x-msg://8/user/SendEmail.jtp?type=node&node=168842&i=0" 
>> target="_top" rel="nofollow" link="external">[hidden email]> wrote:
>> 
>>> Hey, Abraham, cool!
>>> 
>>> I think it is definitely something to try out for an alternative 
>>> LilyPond style.
>>> Did you do that? If yes, how is the relation between automated 
>>> scaling and manual decisions?
>>> 
>>> Best
>>> Urs
>>> 
>>> Am 20.11.2014 14:19, schrieb tisimst:
 Urs,
 
 Not sure if this would be of any help to you, but here's a 
 condensed variant of the full Vollkorn family.
 
 Regards,
 Abraham
 
 On Sun, Nov 16, 2014 at 9:19 AM, Urs Liska [via Lilypond] <>>> moz-do-not-send="true" 
 href="x-msg://8/user/SendEmail.jtp?type=node&node=168839&i=0" 
 target="_top" rel="nofollow" link="external">[hidden email]> wrote:
> 
> Am 16.11.2014 01:10, schrieb Noeck:
> 
> > Hi Urs, 
> > 
> > you once asked for nice fonts which come in several »degrees 
> of 
> > boldness«. You chose Minion Pro, if I remember correctly. I 
> just found 
> > »Vollkorn« which comes in 8 type faces: 
> http://vollkorn-typeface.com
> > I let you decide how you like it – I would say it is worth 
> looking at. 
> > 
> > Cheers, 
> > Joram 
> >
> Hi Joram, 
> 
> Vollkorn is a good font, and I can imagine it works well with 
> LilyPond 
> (due to its inherent weight). 
> But the main issue I am looking for is the combination of weights 
> and a 
> condensed variant. 
> 
> Having a condensed font is a huge benefit when trying to fit more 
> music 
> with lyrics on the page (because with LilyPond's default font 
> lyrics 
> generally need more horizontal space than the corresponding 
> music. 
> Minion Pro is extremely good because it also provides a nicely 
> graded 
> set of weights *onto* the condensed width. With that you can 
> really 
> fine-tune the appearance of all the different items like lyrics, 
> barnumbers, textscripts etc. to form a consistent overall 
> appearance 
> with LilyPond's music. However, I'd still like to have a free 
> alternative to that one for better usability. 
> 
> Recently I got a version of Linux Libertine that has been 
> "condensed" by 
> Abraham Lee, unfortunately I didn't have time to really test it 
> so far. 
> But this may actually be a good thing because I find Linux 
> Libertine to 
> be a very nice complement to LilyPond too. 
> 
> Best 
> Urs 
> 
> ___ 
> lilypond-user mailing list 
>  href="x-msg://8/user/SendEmail.jtp?type=node&node=168745&i=0" 
> target="_top" rel="nofollow" link="external">[hidden email] 
> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> 
> If you reply to this email, your message will be added to the 
> discussion below:
> http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168745.html
> To start a new topic under User, email  href="x-msg://8/user/SendEmail.jtp?type=node&node=168839&i=1" 
> target="_top" rel="nofollow" link="external">[hidden email] 
> To unsubscribe from Lilypond, click here.
> NAML
 
  VollkornCondensed.zip (643K) Download Attachment
 
 View this message in context: Re: Text fonts
 Sent from the User mailing list archive at Nabble.com.
 
 
 ___
 lilypond-user mailing list
 >>> href="x-msg://8/user/SendEmail.jtp?type=node&node=168840&i=0" 
 target="_top" rel="nofollow" link="external">[hidden email]
 https://lists.gnu.org/mailman/listinfo/lilypond-user
>>> 
>>> 
>>> ___ 
>>> lilypond-user mailing list 
>>> >> href="x-msg://8/user/SendEmail.jtp?type=node&node=168840&i=1" 
>>> target="_top" rel="nofollow" link="external">[hidden email] 
>>> https://lists.gnu.org/mailman/listin

Re: Text fonts

2014-11-20 Thread Urs Liska


Am 20.11.2014 15:24, schrieb tisimst:

I'm afraid I don't entirely understand your question...


1)
Did you produce the condensed set?

2)
If so, did you design the glyph shapes individually or through applying 
some sort of automatic scaling?


I think that's clearer, isnt it?

Urs



-Abraham

Sent from my iPhone

On Nov 20, 2014, at 6:27 AM, Urs Liska [via Lilypond] <[hidden email] 
> wrote:



Hey, Abraham, cool!

I think it is definitely something to try out for an alternative 
LilyPond style.
Did you do that? If yes, how is the relation between automated 
scaling and manual decisions?


Best
Urs

Am 20.11.2014 14:19, schrieb tisimst:

Urs,

Not sure if this would be of any help to you, but here's a condensed 
variant of the full Vollkorn family.


Regards,
Abraham

On Sun, Nov 16, 2014 at 9:19 AM, Urs Liska [via Lilypond] <[hidden 
email] > wrote:


Am 16.11.2014 01:10, schrieb Noeck:

> Hi Urs,
>
> you once asked for nice fonts which come in several »degrees of
> boldness«. You chose Minion Pro, if I remember correctly. I just 
found

> »Vollkorn« which comes in 8 type faces: http://vollkorn-typeface.com
> I let you decide how you like it -- I would say it is worth 
looking at.

>
> Cheers,
> Joram
>
Hi Joram,

Vollkorn is a good font, and I can imagine it works well with LilyPond
(due to its inherent weight).
But the main issue I am looking for is the combination of weights 
and a

condensed variant.

Having a condensed font is a huge benefit when trying to fit more 
music

with lyrics on the page (because with LilyPond's default font lyrics
generally need more horizontal space than the corresponding music.
Minion Pro is extremely good because it also provides a nicely graded
set of weights *onto* the condensed width. With that you can really
fine-tune the appearance of all the different items like lyrics,
barnumbers, textscripts etc. to form a consistent overall appearance
with LilyPond's music. However, I'd still like to have a free
alternative to that one for better usability.

Recently I got a version of Linux Libertine that has been 
"condensed" by
Abraham Lee, unfortunately I didn't have time to really test it so 
far.
But this may actually be a good thing because I find Linux 
Libertine to

be a very nice complement to LilyPond too.

Best
Urs

___
lilypond-user mailing list
[hidden email] 
https://lists.gnu.org/mailman/listinfo/lilypond-user



If you reply to this email, your message will be added to the 
discussion below:

http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168745.html
To start a new topic under User, email [hidden email] 


To unsubscribe from Lilypond, click here.
NAML 
 



VollkornCondensed.zip (643K) Download Attachment 




View this message in context: Re: Text fonts 

Sent from the User mailing list archive 
 at Nabble.com 
.



___
lilypond-user mailing list
[hidden email]  
https://lists.gnu.org/mailman/listinfo/lilypond-user



___
lilypond-user mailing list
[hidden email] 
https://lists.gnu.org/mailman/listinfo/lilypond-user



If you reply to this email, your message will be added to the 
discussion below:

http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168840.html
To start a new topic under User, email [hidden email] 


To unsubscribe from Lilypond, click here.
NAML 
 




View this message in context: Re: Text fonts 

Sent from the User mailing list archive 
 at Nabble.com.



___
lilypond-user mailing list
li

Re: Text fonts

2014-11-20 Thread Stan Sanderson
I note that the full name for Vollkorn Condensed Regular is (according to Font 
Book) “Vollkorn,”  which is the same as the full name for Vollkorn Regular. How 
does the style sheet distinguish between the two versions?

Stan

On Nov 20, 2014, at 8:24 AM, tisimst  wrote:

> I'm afraid I don't entirely understand your question...
> 
> -Abraham
> 
> Sent from my iPhone
> 
> On Nov 20, 2014, at 6:27 AM, Urs Liska [via Lilypond] <[hidden email]> wrote:
> 
>> Hey, Abraham, cool!
>> 
>> I think it is definitely something to try out for an alternative LilyPond 
>> style.
>> Did you do that? If yes, how is the relation between automated scaling and 
>> manual decisions?
>> 
>> Best
>> Urs
>> 
>> Am 20.11.2014 14:19, schrieb tisimst:
>>> Urs,
>>> 
>>> Not sure if this would be of any help to you, but here's a condensed 
>>> variant of the full Vollkorn family.
>>> 
>>> Regards,
>>> Abraham
>>> 
>>> On Sun, Nov 16, 2014 at 9:19 AM, Urs Liska [via Lilypond] <[hidden email]> 
>>> wrote:
 
 Am 16.11.2014 01:10, schrieb Noeck:
 
 > Hi Urs, 
 > 
 > you once asked for nice fonts which come in several »degrees of 
 > boldness«. You chose Minion Pro, if I remember correctly. I just found 
 > »Vollkorn« which comes in 8 type faces: http://vollkorn-typeface.com
 > I let you decide how you like it – I would say it is worth looking at. 
 > 
 > Cheers, 
 > Joram 
 >
 Hi Joram, 
 
 Vollkorn is a good font, and I can imagine it works well with LilyPond 
 (due to its inherent weight). 
 But the main issue I am looking for is the combination of weights and a 
 condensed variant. 
 
 Having a condensed font is a huge benefit when trying to fit more music 
 with lyrics on the page (because with LilyPond's default font lyrics 
 generally need more horizontal space than the corresponding music. 
 Minion Pro is extremely good because it also provides a nicely graded 
 set of weights *onto* the condensed width. With that you can really 
 fine-tune the appearance of all the different items like lyrics, 
 barnumbers, textscripts etc. to form a consistent overall appearance 
 with LilyPond's music. However, I'd still like to have a free 
 alternative to that one for better usability. 
 
 Recently I got a version of Linux Libertine that has been "condensed" by 
 Abraham Lee, unfortunately I didn't have time to really test it so far. 
 But this may actually be a good thing because I find Linux Libertine to 
 be a very nice complement to LilyPond too. 
 
 Best 
 Urs 
 
 ___ 
 lilypond-user mailing list 
 [hidden email] 
 https://lists.gnu.org/mailman/listinfo/lilypond-user
 
 
 If you reply to this email, your message will be added to the discussion 
 below:
 http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168745.html
 To start a new topic under User, email [hidden email] 
 To unsubscribe from Lilypond, click here.
 NAML
>>> 
>>> 
>>>  VollkornCondensed.zip (643K) Download Attachment
>>> 
>>> View this message in context: Re: Text fonts
>>> Sent from the User mailing list archive at Nabble.com.
>>> 
>>> 
>>> ___
>>> lilypond-user mailing list
>>> [hidden email]
>>> https://lists.gnu.org/mailman/listinfo/lilypond-user
>> 
>> 
>> ___ 
>> lilypond-user mailing list 
>> [hidden email] 
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
>> 
>> 
>> If you reply to this email, your message will be added to the discussion 
>> below:
>> http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168840.html
>> To start a new topic under User, email [hidden email] 
>> To unsubscribe from Lilypond, click here.
>> NAML
> 
> View this message in context: Re: Text fonts
> Sent from the User mailing list archive at Nabble.com.
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user



signature.asc
Description: Message signed with OpenPGP using GPGMail
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: would 'gn' for G-natural be useful in \language "english" ?

2014-11-20 Thread Michael Ellis
Also American, can't see the need for this because LP supports defining
your own pitch names in an include file.

For example, I once made an include file (attached) that supports both
English and Chromatic Fixed Do solfege, i.e. one can enter an E-flat major
scale as either

ef f g af bf c d ef

or

me fa sol le te do re me

or any mixture of the two systems (but that way lies madness.)


Cheers,
Mike

On Thu, Nov 20, 2014 at 12:50 AM, Paul Morris  wrote:

> Another American here, but I don't have a very strong opinion on this.  I
> can
> see arguments on both sides.
>
> -Paul
>
>
>
> --
> View this message in context:
> http://lilypond.1069038.n5.nabble.com/would-gn-for-G-natural-be-useful-in-language-english-tp165872p168834.html
> Sent from the User mailing list archive at Nabble.com.
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>


english-solfa.ly
Description: Binary data
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Text fonts

2014-11-20 Thread tisimst
I'm afraid I don't entirely understand your question...

-Abraham

Sent from my iPhone

> On Nov 20, 2014, at 6:27 AM, Urs Liska [via Lilypond] 
>  wrote:
> 
> Hey, Abraham, cool!
> 
> I think it is definitely something to try out for an alternative LilyPond 
> style.
> Did you do that? If yes, how is the relation between automated scaling and 
> manual decisions?
> 
> Best
> Urs
> 
> Am 20.11.2014 14:19, schrieb tisimst:
>> Urs,
>> 
>> Not sure if this would be of any help to you, but here's a condensed variant 
>> of the full Vollkorn family.
>> 
>> Regards,
>> Abraham
>> 
>>> On Sun, Nov 16, 2014 at 9:19 AM, Urs Liska [via Lilypond] <[hidden email]> 
>>> wrote:
>>> 
>>> Am 16.11.2014 01:10, schrieb Noeck:
>>> 
>>> > Hi Urs, 
>>> > 
>>> > you once asked for nice fonts which come in several »degrees of 
>>> > boldness«. You chose Minion Pro, if I remember correctly. I just found 
>>> > »Vollkorn« which comes in 8 type faces: http://vollkorn-typeface.com
>>> > I let you decide how you like it – I would say it is worth looking at. 
>>> > 
>>> > Cheers, 
>>> > Joram 
>>> >
>>> Hi Joram, 
>>> 
>>> Vollkorn is a good font, and I can imagine it works well with LilyPond 
>>> (due to its inherent weight). 
>>> But the main issue I am looking for is the combination of weights and a 
>>> condensed variant. 
>>> 
>>> Having a condensed font is a huge benefit when trying to fit more music 
>>> with lyrics on the page (because with LilyPond's default font lyrics 
>>> generally need more horizontal space than the corresponding music. 
>>> Minion Pro is extremely good because it also provides a nicely graded 
>>> set of weights *onto* the condensed width. With that you can really 
>>> fine-tune the appearance of all the different items like lyrics, 
>>> barnumbers, textscripts etc. to form a consistent overall appearance 
>>> with LilyPond's music. However, I'd still like to have a free 
>>> alternative to that one for better usability. 
>>> 
>>> Recently I got a version of Linux Libertine that has been "condensed" by 
>>> Abraham Lee, unfortunately I didn't have time to really test it so far. 
>>> But this may actually be a good thing because I find Linux Libertine to 
>>> be a very nice complement to LilyPond too. 
>>> 
>>> Best 
>>> Urs 
>>> 
>>> ___ 
>>> lilypond-user mailing list 
>>> [hidden email] 
>>> https://lists.gnu.org/mailman/listinfo/lilypond-user
>>> 
>>> 
>>> If you reply to this email, your message will be added to the discussion 
>>> below:
>>> http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168745.html
>>> To start a new topic under User, email [hidden email] 
>>> To unsubscribe from Lilypond, click here.
>>> NAML
>> 
>> 
>>  VollkornCondensed.zip (643K) Download Attachment
>> 
>> View this message in context: Re: Text fonts
>> Sent from the User mailing list archive at Nabble.com.
>> 
>> 
>> ___
>> lilypond-user mailing list
>> [hidden email]
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> 
> ___ 
> lilypond-user mailing list 
> [hidden email] 
> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> 
> If you reply to this email, your message will be added to the discussion 
> below:
> http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168840.html
> To start a new topic under User, email ml-node+s1069038n...@n5.nabble.com 
> To unsubscribe from Lilypond, click here.
> NAML




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168842.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re:Beginners problem with display in an include file

2014-11-20 Thread Peter Gentry
 

Thanks Paul. What I have just realised that this is actually from page 18 of 
the snippets.pdf manual. I have been using it for
sometime and forgot its origin.

The trouble is that the Scheme code takes no account of the key signature so 
that a gflat in transposed music can remain even if the
new key key contains fsharp.

I am trying (without much success) to extract the key signature maybe as list 
of sharps or flats that can be used to further modify
the transposed music.



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Text fonts

2014-11-20 Thread Urs Liska

Hey, Abraham, cool!

I think it is definitely something to try out for an alternative 
LilyPond style.
Did you do that? If yes, how is the relation between automated scaling 
and manual decisions?


Best
Urs

Am 20.11.2014 14:19, schrieb tisimst:

Urs,

Not sure if this would be of any help to you, but here's a condensed 
variant of the full Vollkorn family.


Regards,
Abraham

On Sun, Nov 16, 2014 at 9:19 AM, Urs Liska [via Lilypond] <[hidden 
email] > wrote:


Am 16.11.2014 01:10, schrieb Noeck:

> Hi Urs,
>
> you once asked for nice fonts which come in several »degrees of
> boldness«. You chose Minion Pro, if I remember correctly. I just found
> »Vollkorn« which comes in 8 type faces: http://vollkorn-typeface.com
> I let you decide how you like it -- I would say it is worth looking 
at.

>
> Cheers,
> Joram
>
Hi Joram,

Vollkorn is a good font, and I can imagine it works well with LilyPond
(due to its inherent weight).
But the main issue I am looking for is the combination of weights and a
condensed variant.

Having a condensed font is a huge benefit when trying to fit more music
with lyrics on the page (because with LilyPond's default font lyrics
generally need more horizontal space than the corresponding music.
Minion Pro is extremely good because it also provides a nicely graded
set of weights *onto* the condensed width. With that you can really
fine-tune the appearance of all the different items like lyrics,
barnumbers, textscripts etc. to form a consistent overall appearance
with LilyPond's music. However, I'd still like to have a free
alternative to that one for better usability.

Recently I got a version of Linux Libertine that has been "condensed" by
Abraham Lee, unfortunately I didn't have time to really test it so far.
But this may actually be a good thing because I find Linux Libertine to
be a very nice complement to LilyPond too.

Best
Urs

___
lilypond-user mailing list
[hidden email] 
https://lists.gnu.org/mailman/listinfo/lilypond-user



If you reply to this email, your message will be added to the 
discussion below:

http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168745.html
To start a new topic under User, email [hidden email] 


To unsubscribe from Lilypond, click here.
NAML 
 



VollkornCondensed.zip (643K) Download Attachment 




View this message in context: Re: Text fonts 

Sent from the User mailing list archive 
 at Nabble.com.



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Text fonts

2014-11-20 Thread tisimst
Urs,

Not sure if this would be of any help to you, but here's a condensed 
variant of the full Vollkorn family.

Regards,
Abraham

On Sun, Nov 16, 2014 at 9:19 AM, Urs Liska [via Lilypond] 
 wrote:
> 
> Am 16.11.2014 01:10, schrieb Noeck:
> 
> > Hi Urs, 
> > 
> > you once asked for nice fonts which come in several »degrees of 
> > boldness«. You chose Minion Pro, if I remember correctly. I just 
> found 
> > »Vollkorn« which comes in 8 type faces: 
> http://vollkorn-typeface.com
> > I let you decide how you like it – I would say it is worth 
> looking at. 
> > 
> > Cheers, 
> > Joram 
> >
> 
> Hi Joram, 
> 
> Vollkorn is a good font, and I can imagine it works well with 
> LilyPond 
> (due to its inherent weight). 
> But the main issue I am looking for is the combination of weights and 
> a 
> condensed variant. 
> 
> Having a condensed font is a huge benefit when trying to fit more 
> music 
> with lyrics on the page (because with LilyPond's default font lyrics 
> generally need more horizontal space than the corresponding music. 
> Minion Pro is extremely good because it also provides a nicely graded 
> set of weights *onto* the condensed width. With that you can really 
> fine-tune the appearance of all the different items like lyrics, 
> barnumbers, textscripts etc. to form a consistent overall appearance 
> with LilyPond's music. However, I'd still like to have a free 
> alternative to that one for better usability. 
> 
> Recently I got a version of Linux Libertine that has been "condensed" 
> by 
> Abraham Lee, unfortunately I didn't have time to really test it so 
> far. 
> But this may actually be a good thing because I find Linux Libertine 
> to 
> be a very nice complement to LilyPond too. 
> 
> Best 
> Urs 
> 
> ___ 
> lilypond-user mailing list 
> [hidden email] 
> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> 
> If you reply to this email, your message will be added to the 
> discussion below:
> http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168745.html
> To start a new topic under User, email 
> ml-node+s1069038n...@n5.nabble.com 
> To unsubscribe from Lilypond, click here.
> NAML


VollkornCondensed.zip (643K) 





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-fonts-tp168738p168839.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Ledger Lines in Key Signature?

2014-11-20 Thread Frank Z.
Hi Pierre,

thanks alot! Yes, I think your version is better because – as far as I
see – the line is attatched to the key signature and not to the Note.

Maybe that should be the default behaviour of Lilypond when placing
accidentals of the key signatures outside the standard staff lines?

Thanks again and best,

Frank

P.S. @ Pierre: Sorry, for double receiving. The first time I send this
mail only to you, but I wanted the suggestion for having ledger lines in
key signatures by default to be sent to all.

Am 18. Nov 2014 um 20:58 schrieb Pierre Perol-Schneider
:
> Hi Frank,
> 
> 2014-11-18 20:20 GMT+01:00 Frank Z.  >:
>  
> 
> There must be a better solution.
> 
> 
> Not sure if it's better but here you go :
> 
> \version "2.18.2"
> 
> \relative c' {
>   %\override Staff.KeySignature.flat-positions = #'(-1)
>   \override Staff.KeySignature.stencil =
> #(lambda (grob) (grob-interpret-markup grob
>   #{
> \markup
> \translate #'(0 . -3.5) {
> \combine
>   \translate #'(-.4 . .5)
>   \override #'(thickness . 2)
>   \draw-line #'(1.5 . 0)
>   \musicglyph #"accidentals.flat"
> }
>   #}))
>   \time 3/4
>   \key d \minor
>   %\once \override TextScript.extra-offset = #'( -6 . 0.7)
>   d2.
>   %_\markup { \override #'(thickness . 2) \draw-line #'(1.5 . 0)}
> }
> 
> HTH,
> Pierre
> 

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Log file error message - file not normalised

2014-11-20 Thread Peter Gentry
I have after some research discovered the difference between ly:message and 
(display...) and even referred to an include file
include ".\ranges\enharmonic.ly". (as in recent message to lilypond.user)

[Frescobaldi 2.0.16 Lily 2.18.2 OS Vista]

I can provide debug information to the log file but although everything works 
fine the log 
file starts with the error message 

Parsing...
Programming error: file name not normalized: .\ranges\enharmonic.ly
Continuing cross fingers

The file is "included" correctly. Is this just a minor glitch - nothing in the 
manuals for 2.18.2 refers.

regards
Peter Gentry 



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


svg output: warning: missing stencil expression `embedded-ps'

2014-11-20 Thread Thomas Scharkowski

Hello,

I have a ly file with eps image like

...
\markup { \epsfile #X #10 #"sample.eps" }

Pdf output is fine, but using the svg backend, I get this warning:
missing stencil expression `embedded-ps'
and the image is not printed.

Thank you
Thomas

--
Mac OS X 10.10, LilyPond 2.19.15 and 2.18.0

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user