random notes

2014-11-03 Thread Stefan Thomas
Dear community,
I've found this snippet
http://lsr.di.unimi.it/LSR/Snippet?id=274
and I would like to know:
how can I generate pitches with sharp and flats?
How can I change the range of input notes?
Can someone give me a hint?
Thanks,
Stefan
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


point-and-click (was: Re: vim pointing to pdf-viewer and reverse)

2014-11-03 Thread Rutger Hofman

One more step needed nowadays

Edit /etc/apparmor.d/abstractions/evince to add the following 2 lines
(replace /usr/ with the prefix of your Lilypond installation):

/usr/bin/lilypond-invoke-editor Ux,
/usr/bin/lilypond-wrapper.guile Ux,

# ln -s /etc/apparmor.d/usr.bin.evince 
/etc/apparmor.d/disable/usr.bin.evince

# /etc/init.d/apparmor restart

On 03/07/2012 11:26 AM, Rutger Hofman wrote:

On 03/07/2012 11:09 AM, Rutger Hofman wrote:

On 03/07/2012 09:12 AM, David Kastrup wrote:

Stjepan Horvat writes:


On Tue, Mar 6, 2012 at 5:48 PM, David Kastrup wrote:

Stjepan Horvat writes:


Hello..can somebody please tell me how to get vim and a pdf viewer
(xpdf or evince of zathura) to work with vim lilypond-invoke-editor

[snip]


Evince appears to have its own set of obstacles. Some Ubuntu pages seem
to suggest the problem (Permission denied) is related to apparmor.d but
I have no clue how to make that behave as desired.


I got it to work after all on Ubuntu Lucid:

I followed instructions in
http://lists.gnu.org/archive/html/lilypond-user/2007-06/msg00185.html
(and Mark Knoop's follow-up at a lower speed). IFAIU, this configures
Gnome apps to handle 'textedit' commands by invoking
lilypond-invoke-editor.

The apparmor.d stuff:

Edit /etc/apparmor.d/abstractions/evince to add the following 2 lines
(replace /usr/ with the prefix of your Lilypond installation):

/usr/bin/lilypond-invoke-editor Ux,
/usr/bin/lilypond-wrapper.guile Ux,

The second line appears necessary because lilypond-invoke-editor is a
symlink to lilypond-wrapper.guile which is actually executed.

Then

$ sudo /etc/init.d/apparmor reload

Rutger



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


how to get "h" instead of "b" in notenames

2014-11-03 Thread Stefan Thomas
Dear community,
in the below quoted snippet I get "b" instead of the german "h". How can I
achieve it?

\version "2.18.2"

\language "deutsch"

onthelines = \relative e' { e1 g h d f }


\score {

<<

\new Staff \onthelines

\new NoteNames \onthelines

>>

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


Re: Happy 18th birthday, LilyPond

2014-11-03 Thread Robert Schmaus
Well, it's called All *Saints* day - you can't get more nebulous (or even 
imaginary) than that. A "Day for celebrating Music", now *that* would be a 
truly global and human thing to celebrate ...

__

The men who radically altered history, the great creative scientists and 
mathematicians, are seldom mentioned [in biographical history], if at all. 
--Martin Gardner

> On 4 Nov 2014, at 05:40, Shane Brandes  wrote:
> 
> Vote early, vote often! Personally, I liked the idea of an All Saints
> day birthday for Lilypond. It is too bad the date is much more
> nebulous than that.
> 
> Shane
> 
>> On Mon, Nov 3, 2014 at 2:21 PM, Chris Crossen  wrote:
>> 
>>> On Nov 3, 2014, at 12:17 PM, Tim Reeves  wrote:
>>> 
>>> 
>>> So Lilypond is old enough to vote in tomorrow's general election! (in the 
>>> US) ;)
>> 
>> And it probably will, several times, in Chicago.
>> ___
>> 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
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Happy 18th birthday, LilyPond

2014-11-03 Thread Shane Brandes
Vote early, vote often! Personally, I liked the idea of an All Saints
day birthday for Lilypond. It is too bad the date is much more
nebulous than that.

Shane

On Mon, Nov 3, 2014 at 2:21 PM, Chris Crossen  wrote:
>
> On Nov 3, 2014, at 12:17 PM, Tim Reeves  wrote:
>>
>>
>> So Lilypond is old enough to vote in tomorrow's general election! (in the 
>> US) ;)
>>
>
> And it probably will, several times, in Chicago.
> ___
> 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: barnumber | post-event in music function

2014-11-03 Thread David Nalesnik
Hi Urs,

I'll try to address your first problem--which is pretty tricky!

On Mon, Nov 3, 2014 at 11:06 AM, Urs Liska  wrote:

>  Hi Scheme wizards, can you help me?
>
> I have two unrelated questions regarding the attached file.
> It is a very much stripped down version of a function actually in use.
>
> It takes an annotation from the input file, produces a clickable message
> on the console and colors the affected object. (In reality it does and will
> do more, but that's what's necessary for the example/question).
>
> ###
> The first question should be quite simple, but I don't seem to find a
> solution on my own: How can I make the function be able to affect only
> selected items, e.g. only one note of the chord in the example (or only a
> specific tie etc.)
>
>
This is hard to explain, and I'm afraid I'm not going to do a good job of
it.

The issue here is that your function needs to be able to distinguish
between tweaks and overrides.  Ideally, it should also be able to handle
basic and directed tweaks.

The predicate for the last argument, ly:symbol-list-or-music?, is there to
distinguish between tweak and override, and it is used in several functions
for this purpose (\shape, \offset, and \alterBroken are those I know
about).  If what follows is music, we get a tweak, if there is a
symbol-list we get an override.

Since that variable needs to be fed either NoteHead in your example or a
music expression, and you need NoteHead to specify the grob you want in a
directed tweak, I added an optional variable, for use with the directed
tweak form.  For a regular tweak, you just leave out that initial NoteHead.

This makes for a bit of awkwardness when you want to specify the object of
your tweak and not let LilyPond determine it for you, but I don't see any
other way.

Hope this helps,
David

%

\version "2.18.2"

annotate =
#(define-music-function (parser location name properties item)
   ((symbol?) ly:context-mod? symbol-list-or-music?)
   ;; annotates a musical object for use with lilypond-doc

   (let
(
  ;; create dummy alist (is that necessary?)
  (props '( )))

;; Add or replace props entries taken from the properties argument
(map (lambda (mod) (set! props
 (assoc-set! props
   (symbol->string (cadr mod)) (caddr mod
  (ly:get-context-mods properties))
;; produce a clickable message
(ly:input-message location "Annotation")

;; Print a message with all properties to the console
(map (lambda (prop)
   (ly:message (format "~a: ~a" (car prop) (cdr prop
  props)
(ly:message "\n"))

   ;; Color the affected grob
   (cond
((and (ly:music? item) (symbol? name))
 #{
   \tweak #`(,name color) #darkgreen #item
 #})
((ly:music? item)
 #{
   \tweak color #darkgreen #item
 #})
(else
 #{
   \once \override #item #'color = #darkgreen
 #})))


%%
% Usage examples

% OVERRIDE SYNTAX
{
  \annotate \with {
author = "Urs Liska"
message = "Important information"
  } NoteHead
  -> d' e'
}

% BASIC TWEAK

{
  -> d' e'
}

% DIRECTED TWEAK

{
  -> d' e'
}
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Looking for a suggestion with \autochange modification

2014-11-03 Thread Gilberto Agostinho
Hello all,

I'd like to ask you how difficult it would be for me to change the
\autochange function in order to always have pitches c and cis in the treble
clef, as opposed to the current behaviour where the previous note is taken
into consideration?

This is what I am looking for:

 

Would it be possible for me to include a modified autochange function inside
my .ly file so I get the behaviour I want only in this composition? And if
so, how difficult would this modification be? I had a look on what I believe
is the autochange function (
https://github.com/stevage/Lilypond/blob/master/scm/autochange.scm ) but I
can't see what needs to be modified. If someone could point me in the right
direction, I'd really appreciate it.

Thanks really a lot and take care,
Gilberto



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Looking-for-a-suggestion-with-autochange-modification-tp168364.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: Happy 18th birthday, LilyPond

2014-11-03 Thread Chris Crossen

On Nov 3, 2014, at 12:17 PM, Tim Reeves  wrote:
> 
> 
> So Lilypond is old enough to vote in tomorrow's general election! (in the US) 
> ;) 
> 

And it probably will, several times, in Chicago.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Happy 18th birthday, LilyPond

2014-11-03 Thread Tim Reeves
> Date: Sat, 1 Nov 2014 18:33:52 +0100
> From: Francisco Vila 
> To: David Kastrup 
> Cc: LilyPond-Devel list ,   LilyPond-User list
>
> Subject: Re: Happy 18th birthday, LilyPond
> Message-ID:
>
> Content-Type: text/plain; charset=UTF-8
> 
> 2014-11-01 11:43 GMT+01:00 David Kastrup :
> > So it's more like 19 since July for (work on?) version 1.0.1 though 
our
> > git history seems rather messed up.  Just out of interest: where did 
you
> > get that 18-year number?
> 
> You guessed it: I used the most na?ve method possible. I moved the
> scroll bar in gitk (without --all) at the bottom and there it was:
> 
> commit 4f4ad24a3bfeb77cfd0ecca104319607bfd28a63
> Author: Han-Wen Nienhuys 
> Date:   Wed Oct 9 14:04:46 1996 +0100
> 
> Initial.
> 
> -- 
> Francisco Vila. Badajoz (Spain)
> www.paconet.org , www.csmbadajoz.com
> 


So Lilypond is old enough to vote in tomorrow's general election! (in the 
US) ;)


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


Text uder the score

2014-11-03 Thread Son_V
Hi, I should put some instructions at the bottom of a score; I found at
http://lilypond.org/doc/v2.18/Documentation/notation/writing-text how to
write some text, but I wasn't able to find HOW to work with the text, how to
put it on the left or right or at the center of the page, how to make
spaces, how to displace the text vertically, how to make some lines bold or
italic; I've perused in the online and the pdf manuals with no success
(maybe in the guide to Lilypond notation from page 650 up, but it confused
me), nor how to insert a blank line in the example I found. It's not a
complex work, I just want to insert simple instructions for a child's song.
What I should be glad to find is a kind of tutorial about this. Anyone can
help? Thanks.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-uder-the-score-tp168361.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: ties over voices, again

2014-11-03 Thread Mark Stephen Mrotek
Abraham,

 

Thank you for your reply and the directions. I shall experiment with it.

 

Mark

 

From: lilypond-user-bounces+carsonmark=ca.rr@gnu.org
[mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of
tisimst
Sent: Monday, November 03, 2014 10:20 AM
To: lilypond-user@gnu.org
Subject: Re: ties over voices, again

 

Mark,

 

This should do it:

 

\new Staff \with {

  \consists "Tie_engraver"

} { ... }

 

HTH,

Abraham

On Mon, Nov 3, 2014 at 11:16 AM, Mark Stephen Mrotek [via Lilypond] <[hidden
email]> wrote:



Hello,

 

In a response to my query about creating ties over explicit voices, Mike
Solomon (thank you!) provided the following:

\layout {

\context { \Voice \remove "Tie_engraver" }

\context { \Staff \consists "Tie_engraver" }

}

 

This provided the desired ties in one staff of a Piano Staff, yet draw some
unwanted (though explainable) ones in the other.

Can these commands be altered or relocated to affect only one staff, and not
the other, of a Piano staff?

 

Thank you for your kind attention.

 

Mark


___ 
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/ties-over-voices-again-tp168354.html 

To start a new topic under User, email [hidden email] 
To unsubscribe from Lilypond, click here.
 
 NAML


 

  _  

View this message in context: Re: ties over voices, again
 
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: ties over voices, again

2014-11-03 Thread Mark Stephen Mrotek
Mike,

 

Guess I have some homework tonight!

 

Thank you.

 

Mark

 

From: Mike Solomon [mailto:m...@mikesolomon.org] 
Sent: Monday, November 03, 2014 10:19 AM
To: Mark Stephen Mrotek
Cc: lilypond-user@gnu.org
Subject: Re: ties over voices, again

 

 

On Nov 3, 2014, at 8:15 PM, Mark Stephen Mrotek 
wrote:

 

Hello,

 

In a response to my query about creating ties over explicit voices, Mike
Solomon (thank you!) provided the following:

\layout {

\context { \Voice \remove "Tie_engraver" }

\context { \Staff \consists "Tie_engraver" }

}

 

This provided the desired ties in one staff of a Piano Staff, yet draw some
unwanted (though explainable) ones in the other.

Can these commands be altered or relocated to affect only one staff, and not
the other, of a Piano staff?

 

Thank you for your kind attention.

 

Mark

 

You can create custom contexts that derive from Staff - one with this tie
trick and one without.

http://lilypond.org/doc/v2.19/Documentation/notation/defining-new-contexts

 

Cheers,

MS

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


Re: ties over voices, again

2014-11-03 Thread Urs Liska
Well, the standard way to achieve cross voice ties (or slurs) is to create a 
temporary hidden voice.

No time for an example, sorry.

Urs

Am 3. November 2014 19:19:46 MEZ, schrieb tisimst :
>Mark,
>
>This should do it:
>
>\new Staff \with {
>  \consists "Tie_engraver"
>} { ... }
>
>HTH,
>Abraham
>
>On Mon, Nov 3, 2014 at 11:16 AM, Mark Stephen Mrotek [via Lilypond] 
> wrote:
>> Hello,
>> 
>>  
>> 
>> In a response to my query about creating ties over explicit voices, 
>> Mike Solomon (thank you!) provided the following:
>> 
>> \layout {
>> 
>> \context { \Voice \remove "Tie_engraver" }
>> 
>> \context { \Staff \consists "Tie_engraver" }
>> 
>> }
>> 
>>  
>> 
>> This provided the desired ties in one staff of a Piano Staff, yet 
>> draw some unwanted (though explainable) ones in the other.
>> 
>> Can these commands be altered or relocated to affect only one staff, 
>> and not the other, of a Piano staff?
>> 
>>  
>> 
>> Thank you for your kind attention.
>> 
>>  
>> 
>> Mark
>> 
>> 
>> ___ 
>> 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/ties-over-voices-again-tp168354.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/ties-over-voices-again-tp168354p168355.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
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: ties over voices, again

2014-11-03 Thread tisimst
Mark,

This should do it:

\new Staff \with {
  \consists "Tie_engraver"
} { ... }

HTH,
Abraham

On Mon, Nov 3, 2014 at 11:16 AM, Mark Stephen Mrotek [via Lilypond] 
 wrote:
> Hello,
> 
>  
> 
> In a response to my query about creating ties over explicit voices, 
> Mike Solomon (thank you!) provided the following:
> 
> \layout {
> 
> \context { \Voice \remove "Tie_engraver" }
> 
> \context { \Staff \consists "Tie_engraver" }
> 
> }
> 
>  
> 
> This provided the desired ties in one staff of a Piano Staff, yet 
> draw some unwanted (though explainable) ones in the other.
> 
> Can these commands be altered or relocated to affect only one staff, 
> and not the other, of a Piano staff?
> 
>  
> 
> Thank you for your kind attention.
> 
>  
> 
> Mark
> 
> 
> ___ 
> 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/ties-over-voices-again-tp168354.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/ties-over-voices-again-tp168354p168355.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: ties over voices, again

2014-11-03 Thread Mike Solomon

> On Nov 3, 2014, at 8:15 PM, Mark Stephen Mrotek  wrote:
> 
> Hello,
>  
> In a response to my query about creating ties over explicit voices, Mike 
> Solomon (thank you!) provided the following:
> \layout {
> \context { \Voice \remove "Tie_engraver" }
> \context { \Staff \consists "Tie_engraver" }
> }
>  
> This provided the desired ties in one staff of a Piano Staff, yet draw some 
> unwanted (though explainable) ones in the other.
> Can these commands be altered or relocated to affect only one staff, and not 
> the other, of a Piano staff?
>  
> Thank you for your kind attention.
>  
> Mark

You can create custom contexts that derive from Staff - one with this tie trick 
and one without.
http://lilypond.org/doc/v2.19/Documentation/notation/defining-new-contexts 


Cheers,
MS___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


ties over voices, again

2014-11-03 Thread Mark Stephen Mrotek
Hello,

 

In a response to my query about creating ties over explicit voices, Mike
Solomon (thank you!) provided the following:

\layout {

\context { \Voice \remove "Tie_engraver" }

\context { \Staff \consists "Tie_engraver" }

}

 

This provided the desired ties in one staff of a Piano Staff, yet draw some
unwanted (though explainable) ones in the other.

Can these commands be altered or relocated to affect only one staff, and not
the other, of a Piano staff?

 

Thank you for your kind attention.

 

Mark

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


barnumber | post-event in music function

2014-11-03 Thread Urs Liska

Hi Scheme wizards, can you help me?

I have two unrelated questions regarding the attached file.
It is a very much stripped down version of a function actually in use.

It takes an annotation from the input file, produces a clickable message 
on the console and colors the affected object. (In reality it does and 
will do more, but that's what's necessary for the example/question).


###
The first question should be quite simple, but I don't seem to find a 
solution on my own: How can I make the function be able to affect only 
selected items, e.g. only one note of the chord in the example (or only 
a specific tie etc.)


When I change the \once \override clause to


\tweak color #magenta #item


it colors all subsequent items of the given type.


###
The other issue is probably trickier. Is it possible (at all) to 
determine the current barnumber from within such a music function? I 
want to print that to the console along with the other arguments and 
particularly to annotation files.

Is there any hope in achieving that?


TIA
Urs

\version "2.18.2"

annotate =
#(define-music-function (parser location properties item)
   (ly:context-mod? symbol-list-or-music?)
   ;; annotates a musical object for use with lilypond-doc

   (let*
(
  ;; create dummy alist (is that necessary?)
  (props '( )))

;; Add or replace props entries taken from the properties argument
(map (lambda (mod) (set! props
 (assoc-set! props
   (symbol->string (cadr mod)) (caddr mod
  (ly:get-context-mods properties))

;; produce a clickable message
(ly:input-message location "Annotation")

;; Print a message with all properties to the console
(map (lambda (prop)
   (ly:message (format "~a: ~a" (car prop) (cdr prop
  props)
(ly:message "\n"))

   ;; Color the affected grob
   #{ \tweak color #darkgreen #item #})

%%
% Usage example

{
  \annotate \with {
author = "Urs Liska"
message = "Important information"
  }
  NoteHead
  -> d' e'
}___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Unicode Font Issues

2014-11-03 Thread David Bellows
And of course KDE is nice. And if you use Kubuntu then it's installed by
default.

On Mon, Nov 3, 2014 at 7:30 AM, Shane Brandes  wrote:

> XFCE is also a useful desktop interface. Unity might be good for
> tablet minded people but, at least, I found it to be highly disruptive
> of making any sort of useful workflow. Whichever shell one chooses
> Lilypond always performs excellently.
>
> Shane Brandes
>
> On Mon, Nov 3, 2014 at 8:41 AM, Bric  wrote:
> > On 11/03/2014 08:09 AM, Martin Tarenskeen wrote:
> >>
> >>
> >>
> >> On Mon, 3 Nov 2014, Bric wrote:
> >>
> >>> One particular, however:  I would stay away from "Unity", and opt for
> >>> "GNOME" during installation. Someone could still correct me and
> persuade me
> >>> about the glory of Unity, but I have instinctively disliked it from its
> >>> inception, and am happily using the "traditional" Gnome.
> >>
> >>
> >> With "traditional" do you mean Gnome 2.x or the new Gnome 3.x +
> >> Gnome-shell?
> >>
> >> Just like Unity (which I have not tried yet) Gnome3/Gnome-shell can be
> >> quite a shock if you are looking for a "traditional" desktop. I am
> really
> >> happy with it now, but it did take some time to get used to.
> >>
> >> There are other alternatives if you are looking for something more
> >> "traditional". Linux = freedom of choice.
> >>
> >
> > good point. I guess there was a big leap from 2 to 3.  I am using 3.10.4
> > currently.  The bigger differences though are internal, AFAICT; the
> exterior
> > of 3 doesn't seem that much different from 2.0.  (And I did use the word
> > "traditional" in quotes, originally ;-)
> >
> >
> >
> > ___
> > 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
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Unicode Font Issues

2014-11-03 Thread Shane Brandes
XFCE is also a useful desktop interface. Unity might be good for
tablet minded people but, at least, I found it to be highly disruptive
of making any sort of useful workflow. Whichever shell one chooses
Lilypond always performs excellently.

Shane Brandes

On Mon, Nov 3, 2014 at 8:41 AM, Bric  wrote:
> On 11/03/2014 08:09 AM, Martin Tarenskeen wrote:
>>
>>
>>
>> On Mon, 3 Nov 2014, Bric wrote:
>>
>>> One particular, however:  I would stay away from "Unity", and opt for
>>> "GNOME" during installation. Someone could still correct me and persuade me
>>> about the glory of Unity, but I have instinctively disliked it from its
>>> inception, and am happily using the "traditional" Gnome.
>>
>>
>> With "traditional" do you mean Gnome 2.x or the new Gnome 3.x +
>> Gnome-shell?
>>
>> Just like Unity (which I have not tried yet) Gnome3/Gnome-shell can be
>> quite a shock if you are looking for a "traditional" desktop. I am really
>> happy with it now, but it did take some time to get used to.
>>
>> There are other alternatives if you are looking for something more
>> "traditional". Linux = freedom of choice.
>>
>
> good point. I guess there was a big leap from 2 to 3.  I am using 3.10.4
> currently.  The bigger differences though are internal, AFAICT; the exterior
> of 3 doesn't seem that much different from 2.0.  (And I did use the word
> "traditional" in quotes, originally ;-)
>
>
>
> ___
> 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: Place objects by hand

2014-11-03 Thread Trevor Daniels

David Nalesnik wrote Sunday, November 02, 2014 1:08 PM

> Yes, I would say it's definitely a bug.  This is a bit of misuse of 
> self-alignment-X, but the same happens with this line:
>
>  \once \override DynamicText.self-alignment-X = #5
>
> So, possibly it's a problem with the Dynamics context?

After a little more experimentation, it turns out it's the way the Dynamics 
context works.  I'm guessing from experimenting, rather than reading code, but 
it seems just the notes above and below all the dynamics in a system are 
selected and a line is centered between the lowest of the notes above a dynamic 
mark and the highest of the notes below a dynamic mark.  All the dynamics are 
then placed along this line and the distance between the staves is adjusted so 
there is (just) no overlap.  Notes without dynamics are permitted to 'poke 
through' the dynamics line.  This rather clumsy example illustrates it. 

\new PianoStaff <<
  \new Staff { e' d, d e' e' d e' e' }
  \new Dynamics { s\f s s s\p s s\f s s }
  \new Staff { a'' a'' a'' e''' a a'' e''' a'' }
>>

So if a dynamics mark is moved far enough horizontally so 'its' notes are no 
longer considered we get the effect observed.

After all this I found issues 1127 and 3299!  Should have looked first.

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


Re: Unicode Font Issues

2014-11-03 Thread Bric

On 11/03/2014 08:09 AM, Martin Tarenskeen wrote:



On Mon, 3 Nov 2014, Bric wrote:

One particular, however:  I would stay away from "Unity", and opt for 
"GNOME" during installation. Someone could still correct me and 
persuade me about the glory of Unity, but I have instinctively 
disliked it from its inception, and am happily using the 
"traditional" Gnome.


With "traditional" do you mean Gnome 2.x or the new Gnome 3.x + 
Gnome-shell?


Just like Unity (which I have not tried yet) Gnome3/Gnome-shell can be 
quite a shock if you are looking for a "traditional" desktop. I am 
really happy with it now, but it did take some time to get used to.


There are other alternatives if you are looking for something more 
"traditional". Linux = freedom of choice.




good point. I guess there was a big leap from 2 to 3.  I am using 3.10.4 
currently.  The bigger differences though are internal, AFAICT; the 
exterior of 3 doesn't seem that much different from 2.0.  (And I did use 
the word "traditional" in quotes, originally ;-)



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


Re: Unicode Font Issues

2014-11-03 Thread Martin Tarenskeen



On Mon, 3 Nov 2014, Bric wrote:

One particular, however:  I would stay away from "Unity", and opt for "GNOME" 
during installation.  Someone could still correct me and persuade me about 
the glory of Unity, but I have instinctively disliked it from its inception, 
and am happily using the "traditional" Gnome.


With "traditional" do you mean Gnome 2.x or the new Gnome 3.x + 
Gnome-shell?


Just like Unity (which I have not tried yet) Gnome3/Gnome-shell can be 
quite a shock if you are looking for a "traditional" desktop. I am really 
happy with it now, but it did take some time to get used to.


There are other alternatives if you are looking for 
something more "traditional". Linux = freedom of choice.


--

MT

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


Re: Unicode Font Issues

2014-11-03 Thread Bric

On 11/02/2014 05:22 AM, Jay Vara wrote:
Yes, you are right. The unicode fonts failed on 2.19.5. I even tried 
the new windows 10 and it failed.


Now that I know it works on linux (thanks to Bric), I will try to get 
access to linux using virtual box and try it out.


Just my two cents about Linux and Ubuntu:  Installing Ubuntu has become 
a breeze.  Also, there are a plethora of cool utilities that make 
compiling easy, too (it's nice to be able to compile the latest lilypond 
and whatever, locally).  Well, you need to know some basic command-line 
stuff, I suppose.


One particular, however:  I would stay away from "Unity", and opt for 
"GNOME" during installation.  Someone could still correct me and 
persuade me about the glory of Unity, but I have instinctively disliked 
it from its inception, and am happily using the "traditional" Gnome.  
And I also feel like the new newcomers who never get to experience Gnome 
would be missing its sensibility and might never know they had the 
option to choose between the two.


Well, the above is more like 25cents.  And I risk reactionary responses 
from Unity fans - but rational arguments are welcomed.


good luck with your installation and implementation.  Should be really easy.



On Sat, Nov 1, 2014 at 2:08 PM, Werner LEMBERG > wrote:



> If it works on Linux, I may have a way to get Linux on the windows
> PC using Virtual Box. On the other hand I am using version 2.18.2 -
> perhaps I should try 2.19.5 first.

I fear that 2.19.5 will fail on Windows as 2.18.2 does.


Werner




___
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: Mark not visible at the beginning of a line

2014-11-03 Thread Jacques Menu
Hello Knute and Xavier,

Thanks a lot for your help, I would never had been able to devise an engraver…

The is the good tool for me. You can enrich the snippet with a tie over the 
double bar line, which I need actually, as in :

\relative c' {
c1 | c | c | c ~ \toCoda
\bar "||" \break
\mark \default
\time 2/2
c1 | c |
\mark \default
\markDown "23"
c | c
}

A nice day!

JM

> Le 3 nov. 2014 à 10:22:22, Xavier Scheuer  a écrit :
> 
> On 2 November 2014 11:12, Jacques Menu  > wrote:
> >
> > Hello folks,
> >
> > In the following sample, how can I have the second mark displayed
> > at the beginning of the second line?
> >
> > Adding the hidden measure and bar line trick prevents the new time
> > indication to be printed at the end of the first line, unfortunately.
> 
> Hi Jacques,
> 
> I use Neil's #multi-mark-engraver.
> http://lists.gnu.org/archive/html/lilypond-user/2011-08/msg00157.html 
> 
> Very easy to use, and you can have different settings for simultaneaous
> rehearsal marks.
> 
> https://code.google.com/p/lilypond/issues/detail?id=3166 
> 
> 
> Cheers,
> Xavier
> 
> -- 
> Xavier Scheuer mailto:x.sche...@gmail.com>>
> 

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


Re: Mark not visible at the beginning of a line

2014-11-03 Thread Xavier Scheuer
On 2 November 2014 11:12, Jacques Menu  wrote:
>
> Hello folks,
>
> In the following sample, how can I have the second mark displayed
> at the beginning of the second line?
>
> Adding the hidden measure and bar line trick prevents the new time
> indication to be printed at the end of the first line, unfortunately.

Hi Jacques,

I use Neil's #multi-mark-engraver.
http://lists.gnu.org/archive/html/lilypond-user/2011-08/msg00157.html
Very easy to use, and you can have different settings for simultaneaous
rehearsal marks.

https://code.google.com/p/lilypond/issues/detail?id=3166

Cheers,
Xavier

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