Re: Frescobaldi creates the pdf but doesn't export it?

2015-10-12 Thread Urs Liska


Am 12.10.2015 um 07:58 schrieb Wilbert Berendsen:
> Op Sat, 10 Oct 2015 13:48:39 +0200
> Urs Liska  schreef:
>
>> The only way out of that would be if LilyPond could learn to take its
>> input from stdin. Which might be a nice thing anyway?
> I think LilyPond can :-)
>
> http://www.lilypond.org/doc/v2.18/Documentation/usage/command_002dline-usage#invoking-lilypond
>

Oops, I *knew* I should have looked that up before commenting.
But that's not a solution (to the not-really-existing problem) either:

cmd-test$ cat input.ly | lilypond -
»-« wird verarbeitet
Analysieren...
Interpretation der Musik...
Vorverarbeitung der grafischen Elemente...
Ideale Seitenanzahl wird gefunden...
Musik wird auf eine Seite angepasst...
Systeme erstellen...
Layout nach »/tmp/lilypond-yXTVDZ« ausgeben...
Konvertierung nach »-.pdf«...
Deleting `/tmp/lilypond-yXTVDZ'...
Kompilation erfolgreich beendet

Obviously LilyPond will save stdin to a temporary file itself and not
process it in-memory. The resulting file is "-.pdf".

Urs

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


Re: Evince and emacs on Ubuntu

2015-10-12 Thread David Kastrup
David Kastrup  writes:

> Andrew Bernard  writes:
>
>> Does anybody use evince on Ubuntu 15.04 for the point and click link
>> following functionality?
>>
>> I followed these instructions:
>>
>> https://github.com/markk/textedit-ly
>
> Why not the instructions included in LilyPond?
>
> 
>
>> But clicking a link invokes not one but two copies of emacsclient, and
>> each time you click a note two new copies of emacs are started (not
>> how I thought emacsclient works). Certainly I have something tangled
>> up.
>
> Certainly.

I find that the instructions fail to mention placing

(server-start)

into your .emacs file.  Without that, emacsclient will start a new Emacs
copy.

-- 
David Kastrup

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


Re: Emacs lilypond-mode

2015-10-12 Thread Urs Liska


Am 12.10.2015 um 08:08 schrieb David Kastrup:
> Andrew Bernard  writes:
>
>> Now that my current score has become large, Frescobaldi I am sorry to
>> say the text editor it provides runs like molasses on Ubuntu
>> 15.04. Hence I am abandoning it for emacs.
>>
>> With the emacs lilypond-mode, C-c C-l invokes lilypond on the
>> buffer. But I need to specify directories to search for included
>> files. How do you configure this in emacs?
> I tend to just use M-x compile RET and specify my command manually.
>
> You can also use M-x add-dir-local-variable RET
> in order to customize LilyPond-lilypond-command for one
> directory/subdirectory.  There are also file-local variables you can set
> at the end of a file using a variable block if you need this setting
> just for a single file.
>
> Of course you can also use
> M-x customize-variable RET LilyPond-lilypond-command RET
> to set this globally, but it would likely be a nuisance.  Doing it
> dir-locally is probably the most convenient option.
>

Would there be a simple way to define a set of include dirs and make
that easily (i.e. with a single command) available on directory level?
The idea is that many users will have a default set of libraries they
usually want to have available. If saving them globally is a nuisance
(could you please elaborate a bit on this?) it would be still annoying
to add a whole set of include paths to any given project directory.


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


Evince and emacs on Ubuntu

2015-10-12 Thread Andrew Bernard
Does anybody use evince on Ubuntu 15.04 for the point and click link following 
functionality?

I followed these instructions:

https://github.com/markk/textedit-ly

But clicking a link invokes not one but two copies of emacsclient, and each 
time you click a note two new copies of emacs are started (not how I thought 
emacsclient works). Certainly I have something tangled up.

Andrew



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


Re: Evince and emacs on Ubuntu

2015-10-12 Thread David Kastrup
Andrew Bernard  writes:

> Does anybody use evince on Ubuntu 15.04 for the point and click link
> following functionality?
>
> I followed these instructions:
>
> https://github.com/markk/textedit-ly

Why not the instructions included in LilyPond?



> But clicking a link invokes not one but two copies of emacsclient, and
> each time you click a note two new copies of emacs are started (not
> how I thought emacsclient works). Certainly I have something tangled
> up.

Certainly.

-- 
David Kastrup

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


Re: frescobaldi output file location

2015-10-12 Thread Wilbert Berendsen
Op Thu, 8 Oct 2015 18:22:59 +0200
Urs Liska  schreef:

> You have the menu option Lilypond->Generated files. From there you can
> open even the PDF in the temp directory in an external PDF viewer.
> From there you can save it wherever you want.

The command 'tools→open current directory' also opens the temporary
folder (in a file manager window) if the document has no name or was in
the modified state when LilyPond was started.

-- 
Wilbert Berendsen, musician
‣ web: www.wilbertberendsen.nl
‣ email: i...@wilbertberendsen.nl


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


Re: Emacs lilypond-mode

2015-10-12 Thread David Kastrup
Andrew Bernard  writes:

> Now that my current score has become large, Frescobaldi I am sorry to
> say the text editor it provides runs like molasses on Ubuntu
> 15.04. Hence I am abandoning it for emacs.
>
> With the emacs lilypond-mode, C-c C-l invokes lilypond on the
> buffer. But I need to specify directories to search for included
> files. How do you configure this in emacs?

I tend to just use M-x compile RET and specify my command manually.

You can also use M-x add-dir-local-variable RET
in order to customize LilyPond-lilypond-command for one
directory/subdirectory.  There are also file-local variables you can set
at the end of a file using a variable block if you need this setting
just for a single file.

Of course you can also use
M-x customize-variable RET LilyPond-lilypond-command RET
to set this globally, but it would likely be a nuisance.  Doing it
dir-locally is probably the most convenient option.

-- 
David Kastrup

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


Re: Unable to produce slur in ossia staff

2015-10-12 Thread David Kastrup
Seng Liang  writes:

> Hi, my name is Seng and I seem to have run into a problem when using 
> Lilypond 2.18.2 on Windows 7. I'm trying to include an ossia staff which 
> contains a principal note and two ending grace (Aftergrace) notes. I also 
> want a slur to connect the principal note and the second grace note, but 
> when I compiled the score, Lilypond gives a warning where it tells me it 
> cannot end the slur and there is an unterminated slur. The output file 
> does not have any slur at all. Here is an example of the problem:
>
> \version "2.18.2"
> \new Staff = "main" \relative c'' { \time 2/4
>   c2
>   <<
> { c2  }
>
> \new Staff \with {
>   \remove "Time_signature_engraver"
>   alignAboveContext = #"main"
>   firstClef = ##f 
> }
> { \afterGrace c2( { b16[ c]) }
>  } >>
>   }
>
> What is wrong?

Arguably a bug in LilyPond: \afterGrace appears to be written in a
manner where using it without a pre-existing Voice context results in
multiple Voice contexts being created and a slur cannot reach from one
to another.  Usually this problem would not be noticed since it is rare
for \afterGrace to be used before a voice exists, and even then this
extra Voice context tends to be rather inconspicuous and does not lead
to visible problems like the unmatched slur.

So you should change the line

 { \afterGrace c2( { b16[ c]) }

to

 \new Voice { \afterGrace c2( { b16[ c]) }

in order to work around this problem.

-- 
David Kastrup

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


Unable to produce slur in ossia staff

2015-10-12 Thread Seng Liang
Hi, my name is Seng and I seem to have run into a problem when using 
Lilypond 2.18.2 on Windows 7. I'm trying to include an ossia staff which 
contains a principal note and two ending grace (Aftergrace) notes. I also 
want a slur to connect the principal note and the second grace note, but 
when I compiled the score, Lilypond gives a warning where it tells me it 
cannot end the slur and there is an unterminated slur. The output file 
does not have any slur at all. Here is an example of the problem:

\version "2.18.2"
\new Staff = "main" \relative c'' { \time 2/4
  c2
  <<
{ c2  }

\new Staff \with {
  \remove "Time_signature_engraver"
  alignAboveContext = #"main"
  firstClef = ##f 
}
{ \afterGrace c2( { b16[ c]) }
 } >>
  }

What is wrong?

Thank you.
Seng Liang.




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


Re: dynamic with markup

2015-10-12 Thread Xavier Scheuer
On 11 October 2015 at 16:51, Mark Stephen Mrotek 
wrote:
>
> Malte Meyn:
>
> Thank you for the response and the location. Shall bookmark.

I use Graham's "make-dynamic-extra", which has two main advantages :
1. The dynamic only, and not the whole "dynamic + text", is centered
on the note (i.e. like a "normal" dynamic).
2. The dynamic is affecting the MIDI.

http://lists.gnu.org/archive/html/lilypond-user/2011-06/msg00335.html

Cheers,
Xavier

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


RE: dynamic with markup

2015-10-12 Thread Mark Stephen Mrotek
Xavier,

 

Thank you for the reference. I shall bookmark and add it to my collection of 
snippets.

 

Mark

 

From: Xavier Scheuer [mailto:x.sche...@gmail.com] 
Sent: Monday, October 12, 2015 7:49 AM
To: Mark Stephen Mrotek 
Cc: Malte Meyn ; lilypond-user Mailinglist 
; Janek Warchoł ; Urs Liska 

Subject: Re: dynamic with markup

 

On 11 October 2015 at 16:51, Mark Stephen Mrotek  > wrote:

> 

> Malte Meyn:

> 

> Thank you for the response and the location. Shall bookmark.

 

I use Graham's "make-dynamic-extra", which has two main advantages :

1. The dynamic only, and not the whole "dynamic + text", is centered

on the note (i.e. like a "normal" dynamic).

2. The dynamic is affecting the MIDI.

 

http://lists.gnu.org/archive/html/lilypond-user/2011-06/msg00335.html

 

Cheers,

Xavier

 

-- 

Xavier Scheuer  >

 

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


A title with a transposing note name

2015-10-12 Thread Richard Shann
I am trying to make a title (e.g. Sonata in F minor) which will
transpose when the music is transposed. I can do this by using
ChordNames for the name of the note in a markup using \score, thus:

\version "2.19.25"

\header {
  title = \markup {Sonata in\score {
\new ChordNames { f' }
\paper{
#(define fonts (make-pango-font-tree "Times New Roman" "Times New Roman""Luxi 
Mono" (/ staff-height pt 20)))
}
\layout{indent=0.0}
} minor}
}

\score {
  \new Voice { \clef treble s1 }
  \layout { }
}

In this I have tried to change the font of the ChordName (which defaults
to sans) by using the syntax at
http://www.lilypond.org/doc/v2.18/Documentation/notation/fonts#index-font-families_002c-setting
unfortunately the example has the \paper block outside the score block
while my version has it inside and this causes an error.
Can this be done by some variation on the route I have set out on, or do
I have to put up with the sans note name?

Richard



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


[OT] Printer with or without Postscript

2015-10-12 Thread flup2
Hello,

Until now, I always had Postscript laser printers. My printer is now out of
order, and I would like to know if there is still such a huge difference
between music scores printed with printers including postscript language,
and printers without this option (PCL5, proprietary languages, etc.).

Philippe



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/OT-Printer-with-or-without-Postscript-tp182301.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: Frescobaldi creates the pdf but doesn't export it?

2015-10-12 Thread David Wright
Quoting Urs Liska (u...@openlilylib.org):
> Am 12.10.2015 um 07:58 schrieb Wilbert Berendsen:
> > Op Sat, 10 Oct 2015 13:48:39 +0200
> > Urs Liska  schreef:
> >
> >> The only way out of that would be if LilyPond could learn to take its
> >> input from stdin. Which might be a nice thing anyway?
> > I think LilyPond can :-)
> >
> > http://www.lilypond.org/doc/v2.18/Documentation/usage/command_002dline-usage#invoking-lilypond
> 
> Oops, I *knew* I should have looked that up before commenting.

man lilypond   for 2.18.2 doesn't give any indication that you can
input through stdin. You have to delve into   info lilypond   which
I tend to forget to do. (linux version)

> But that's not a solution (to the not-really-existing problem) either:
> 
> cmd-test$ cat input.ly | lilypond -
> »-« wird verarbeitet
> Analysieren...
> Interpretation der Musik...
> Vorverarbeitung der grafischen Elemente...
> Ideale Seitenanzahl wird gefunden...
> Musik wird auf eine Seite angepasst...
> Systeme erstellen...
> Layout nach »/tmp/lilypond-yXTVDZ« ausgeben...
> Konvertierung nach »-.pdf«...
> Deleting `/tmp/lilypond-yXTVDZ'...
> Kompilation erfolgreich beendet
> 
> Obviously LilyPond will save stdin to a temporary file itself and not
> process it in-memory. [...]

Not here. The only difference I can see between reading from a file
and from stdin is that stdin reads only 4096 bytes at a time. This is
true even where stdin is connected to the file (ie   lilypond - < file.ly
rather than   cat file.ly | lilypond -   as above) so lilypond knows
the length of the file.

Cheers,
David.

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


Re: [OT] Printer with or without Postscript

2015-10-12 Thread Jonathan Webster



On 10/12/2015 04:29 PM, flup2 wrote:

Hello,

Until now, I always had Postscript laser printers. My printer is now out of
order, and I would like to know if there is still such a huge difference
between music scores printed with printers including postscript language,
and printers without this option (PCL5, proprietary languages, etc.).

Philippe





 Hello,
This does not answer your question,  but a Brothers HL-L2360D does 
understand Postscript. I went through the same questions.

Jonathan


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


acciaccatura in grace

2015-10-12 Thread Mario Moles
Hi!
How do like the image?
This is not working:
8[ \grace {fs'16( gs) fs es fs gs fs \acciaccatura {} 
ds'} ds16. cs32]
Thanks!-- 
/oiram/bin/selom/
/Da ognuno secondo le proprie capacità ad ognuno secondo i propri 
bisogni./
/MIB-kernellinux-tester/
http://mariomoles.altervista.org/[1] 
Linux[2] 
MIB[3] Lilypond[4] Frescobaldi[5] Rosegarden[6] 


[1] http://mariomoles.altervista.org/
[2] https://www.kernel.org/
[3] http://mib.pianetalinux.org/blog/
[4] http://lilypond.org/
[5] http://www.frescobaldi.org/
[6] http://www.rosegardenmusic.com/
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: acciaccatura in grace

2015-10-12 Thread Thomas Morley
2015-10-12 23:18 GMT+02:00 Mario Moles :
> Hi!
>
> How do like the image?
>
> This is not working:
>
> 8[ \grace {fs'16( gs) fs es fs gs fs \acciaccatura {} ds'}
> ds16. cs32]


Pretty ugly coding, but maybe:

  \relative c''' {
\stemUp
8[
<<
\grace {
  \slurDown fis'16([ gis) fis eis fis gis fis dis']
}
\\
\acciaccatura {s16*6 s32 \stemUp 8*1/4 \once \hideNotes dis'16 }
>>
dis16. cis32]
  }


HTH,
  Harm

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


Re: acciaccatura in grace

2015-10-12 Thread Mario Moles
It is true! It is bad  but it works!Thank you!But if anyone has a more 
elegant solution ...



In data martedì 13 ottobre 2015 00:19:47, Thomas Morley ha scritto:
> 2015-10-12 23:18 GMT+02:00 Mario Moles 
:
> > Hi!
> > 
> > How do like the image?
> > 
> > This is not working:
> > 
> > 8[ \grace {fs'16( gs) fs es fs gs fs \acciaccatura {} 
ds'}
> > ds16. cs32]
> 
> Pretty ugly coding, but maybe:
> 
>   \relative c''' {
> \stemUp
> 8[
> <<
> \grace {
>   \slurDown fis'16([ gis) fis eis fis gis fis dis']
> }
> \\
> \acciaccatura {s16*6 s32 \stemUp 8*1/4 \once 
\hideNotes dis'16 }
> 
> dis16. cis32]
>   }
> 
> 
> HTH,
>   Harm


/oiram/bin/selom/
/Da ognuno secondo le proprie capacità ad ognuno secondo i propri 
bisogni./
/MIB-kernellinux-tester/
http://mariomoles.altervista.org/[1] 
Linux[2] 
MIB[3] Lilypond[4] Frescobaldi[5] Rosegarden[6] 


[1] http://mariomoles.altervista.org/
[2] https://www.kernel.org/
[3] http://mib.pianetalinux.org/blog/
[4] http://lilypond.org/
[5] http://www.frescobaldi.org/
[6] http://www.rosegardenmusic.com/
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Repeat with alternatives [solved]

2015-10-12 Thread David Wright
Quoting s.p.korzil...@gmail.com (s.p.korzil...@gmail.com):

> I’m trying to write a piece that has repeats with alternatives. It seems that 
> “
> \repeat volta 2” is the way to go with supplying the alternatives in “\
> alternative”. However, this seems to work only for alternative endings, while 
> I
> have alternative middle parts.

Hi again, thanks to 
http://lists.gnu.org/archive/html/lilypond-user/2015-10/msg00399.html
I can now close the volta bracket with this undocumented feature,
\allowVoltaHook, thus avoiding inkscape postprocessing.

Be aware, however, that \allowVoltaHook is global and unresettable,
at least at the level of \score. (I don't use \book myself.)

I've also tidied up the code I sent previously, getting rid of the
warning by removing the redundant (volta #f). Staff, \score and \time
are also not required as they only redefine the defaults.
Score.VoltaBracket.shorten-pair might be useful too. I've tried to
indicate that the barlines both *terminate* the alternative part-
measures by shifting the hooks.

(I'm not convinced that part-measures are a good idea, but that's not
my call.)

Cheers,
David.
%%%
\version "2.18.2"
\paper { #(set-paper-size "a5") }
\header { tagline = ##f }

\allowVoltaHook "|"
{
  a'8 b' c' e' c'2 |
  a'4 b'
  \once \override Score.VoltaBracket.shorten-pair = #'(0.3 . -0.4)
  \set Score.repeatCommands = #'((volta "1."))
  d' g' |
  \once \override Score.VoltaBracket.shorten-pair = #'(0.7 . -0.5)
  \set Score.repeatCommands = #'((volta #f) (volta "2."))
  \set Timing.measureLength = #(ly:make-moment 2/4)
  d'8 e' f' g' |
  \set Score.repeatCommands = #'((volta #f))
  \set Timing.measureLength = #(ly:make-moment 4/4)
  d''4 c'' b' a' |
  a'4 b' c'' d'' \bar ":|." |
}
%%%


stan-sol.pdf
Description: Adobe PDF document
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: alternate endings without repeats

2015-10-12 Thread David Wright
Quoting Thomas Morley (thomasmorle...@gmail.com):
> 2015-10-12 23:45 GMT+02:00 Juraj :
> > http://thread.gmane.org/gmane.comp.gnu.lilypond.general/24012
> >
> > (8 years old) helped. But if there are news about, I'm interested in!

> Well, there is no convincing user-interface for it.
> 
> You can do:
> 
> voltaAdLib = \markup \normal-text { \fontsize #-1 what \italic  ever }
> \allowVoltaHook "|"

thanks for demonstrating that last command. I have used it in

http://lists.gnu.org/archive/html/lilypond-user/2015-10/msg00404.html

Now I'm figuring out the relative merits of

>   \set Score.repeatCommands = #`(,`(volta , ...

and

>   \set Score.repeatCommands = #'((volta ...

Cheers,
David.

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


Re: alternate endings without repeats

2015-10-12 Thread Juraj
http://thread.gmane.org/gmane.comp.gnu.lilypond.general/24012

(8 years old) helped. But if there are news about, I'm interested in!

Greetings

Juro




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


Re: alternate endings without repeats

2015-10-12 Thread Thomas Morley
2015-10-12 23:45 GMT+02:00 Juraj :
> http://thread.gmane.org/gmane.comp.gnu.lilypond.general/24012
>
> (8 years old) helped. But if there are news about, I'm interested in!
>
> Greetings
>
> Juro



Well, there is no convincing user-interface for it.

You can do:


voltaAdLib = \markup \normal-text { \fontsize #-1 what \italic  ever }
\allowVoltaHook "|"
\relative {
  c''1
  \once \override Score.VoltaBracket.shorten-pair = #'(0 . 0.2)
  %\set Score.repeatCommands = #(list(list 'volta voltaAdLib) 'start-repeat)
  %\set Score.repeatCommands = #`(,`(volta ,voltaAdLib))
  %\set Score.repeatCommands = #`(,`(volta ,#{ \markup \normal-text {
\fontsize #-1 what \italic  ever } #}))
  \set Score.repeatCommands = #`(,`(volta ,(markup #:normal-text
#:line (#:fontsize -1 "what" #:italic  "ever"

  c4 b d e
  \once \override Score.VoltaBracket.shorten-pair = #'(0.2 . 0)
  \set Score.repeatCommands = #'((volta #f) (volta ""))
  f1
  \set Score.repeatCommands = #'((volta #f))
}


I've wrote the command several times with different syntax ...
Also I added some other commands you may want to use.


HTH,
  Harm

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


Re: [OT] Printer with or without Postscript

2015-10-12 Thread Andrew Bernard
Hi Philippe,

It is of virtually zero concern nowadays. Whatever page description language 
your printer uses internally, the printer driver software on your computer will 
convert your file to that language format and print it. The drivers are quite 
sophisticated nowadays. It would be very hard to determine from looking at an 
average printed page with the naked eye whether the printer used Postscript or 
not. Some people claim they can tell, but for music engraving, with a good 
printer, I doubt it.

In the old days a program would produce Postscript output, and send it direct 
to the printer which would render it, having a Postscript interpreter raster 
image processor (RIP) chip built in (the chip being how Adobe made a great deal 
of money). Worked fine. Commercial shops used to have 19 inch racks of RIP’s to 
do colour separations. Now, it is all a lot simpler from the end user point of 
view.

Postscript itself is still highly relevant, PDF is essentially a  Postscript 
description, and lilypond can generate postscript, which is rendered wth 
Ghostscript - a software RIP. Postscript is by no means obsolete. Just don’t go 
concerning yourself too much trawling through printer technical specifications 
to find one that speaks Postscript to print music.

I remember programming Postscript directly to an Apple Laserwriter using a 
serial cable. (Remember serial cables?). Fun. Now you can do the same with 
Ghostscript, and save a lot of paper!

Andrew




> On 13 Oct 2015, at 07:29, flup2  wrote:

> Until now, I always had Postscript laser printers. My printer is now out of
> order, and I would like to know if there is still such a huge difference
> between music scores printed with printers including postscript language,
> and printers without this option (PCL5, proprietary languages, etc.).


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


alternate endings without repeats

2015-10-12 Thread Juraj
Hello,

I want to write alternate endings without to have a repeat. Just two
versions of the last two bars, but the alternative not not as ossia above,
but beside in the same line with volta bracket.


I found the possibility:
\set Score.repeatCommands = #'((volta "1"))
\set Score.repeatCommands = #'((volta #f))
\set Score.repeatCommands = #'((volta "2"))
\set Score.repeatCommands = #'((volta #f))

But: instead of 1 and 2 i would like a text.
Tried 
\set Score.repeatCommands = #'((volta \markup {text}))
but this doesn't work.

Could anyone give me a hint?

Thank you

Juro


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


Re: shapeII (openlilylib) with v2.19.25

2015-10-12 Thread Peter Crighton
2015-09-08 0:23 GMT+02:00 Simon Albrecht :

>
>
> Am 07.09.2015 um 22:52 schrieb Urs Liska:
>
>>
>> Simon,
>>
>> please create an issue on GitHub with this information.
>>
> 
>
>> Should be updated with a version switch.
>>
> Done. I included the new file in the issue.


Is anything preventing that fix from being included into openLilyLib? Or
should I go ahead and create a pull request for it?
For now I have updated my local copy of the file and the fix seems to be
working fine.


--
Peter Crighton | Musician & Music Engraver based in Mainz, Germany
http://www.petercrighton.de
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Emacs lilypond-mode

2015-10-12 Thread Andrew Bernard
Hi David,

Really helpful advice. Except I need a hint or two.

If I create .dir-locals.el thus:

((LilyPond-mode
  (LilyPond-lilypond-command . "lilypond -I /tmp")))

when running C-c C-l then only the command ‘lilypond’ is run - the 
customisation is ignored. Do you have to customise the elisp definition in 
entirety?

The idea is to just add -I for the include paths for the libraries of code that 
I have created.

Andrew


> On 12 Oct 2015, at 17:08, David Kastrup  wrote:
> 
> You can also use M-x add-dir-local-variable RET
> in order to customize LilyPond-lilypond-command for one
> directory/subdirectory.  

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


Re: Evince and emacs on Ubuntu

2015-10-12 Thread Andrew Bernard
Well I converted my Ubuntu 15.04 to use the latest supported GNOME 3 shell 
instead of Unity. Then as instructed, followed the steps in section 4.1.1 of 
the lilypond usage manual (2.19.28) for GNOME 3 with emacs.

When using evince and clicking a link, I get two new copies of emacs each time, 
even if the emacs server is running (and (server-start) added to init file.)

Any further clues anybody?

Andrew



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


Re: A title with a transposing note name

2015-10-12 Thread Federico Bruni
Il giorno lun 12 ott 2015 alle 18:54, Richard Shann 
 ha scritto:

I am trying to make a title (e.g. Sonata in F minor) which will
transpose when the music is transposed. I can do this by using
ChordNames for the name of the note in a markup using \score, thus:

\version "2.19.25"

\header {
  title = \markup {Sonata in\score {
\new ChordNames { f' }
\paper{
#(define fonts (make-pango-font-tree "Times New Roman" "Times New 
Roman""Luxi Mono" (/ staff-height pt 20)))

}
\layout{indent=0.0}
} minor}
}

\score {
  \new Voice { \clef treble s1 }
  \layout { }
}

In this I have tried to change the font of the ChordName (which 
defaults

to sans) by using the syntax at
http://www.lilypond.org/doc/v2.18/Documentation/notation/fonts#index-font-families_002c-setting
unfortunately the example has the \paper block outside the score block
while my version has it inside and this causes an error.


In your example the \paper block is inside the \header block. This is 
not correct:

http://www.lilypond.org/doc/v2.18/Documentation/notation/the-paper-block




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


Re: Evince and emacs on Ubuntu

2015-10-12 Thread Andrew Bernard
Ahem, a couple of reboots and it all works now. Just one of those things.

Truly beautiful to have working.

Andrew


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