Quasiconf/FrosCON: are you making music with LISP?

2013-06-07 Thread Jan Nieuwenhuizen

FYI

http://quasiconf.twoticketsplease.de/

Parenthetical Art

If you use Lisp for composing music, crafting visualizations or making
games then this is your opportunity to show it off. Lisp is not just
about code as data, it’s also about programming as art!

Jan

-- 
Jan Nieuwenhuizen  | GNU LilyPond http://lilypond.org
Freelance IT http://JoyofSource.com | Avatar®  http://AvatarAcademy.nl  

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


Re: Removing fingerings from the general score

2013-06-07 Thread Jacques Menu
Hello folks,

Thanks for the help about tags and Fingering_engraver, and a nice day!

--

Jacques Menu
Ch. de la Pierre 12
1023 Crissier

mailto:jacques.m...@tvtmail.ch



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


Re: osia: hide first bar line on left hand of key signature

2013-06-07 Thread Konstatin Heuer

Great. Thank you very much. 
How simple.






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


Re: Frecobaldi 2 Mac OS X install guide

2013-06-07 Thread Jean-Alexis Montignies
Hi,

I've got a bit of experience on frescobaldi builds. I have started doing a .app 
bundle for Mac, but never succeeded and I am slow because of the low available 
time for this project.

So if you want to continue upon what I have discovered, I'll switch to more 
technical matter. (I'm CCing this message to lilypond-user, but I think it 
would be appropriate for the frescobaldi list)

For macports, the only package missing before frescobaldi if py-poppler.

I have a frozen folder here that works and even results in frescobaldi using 
the retina display (texts only but it's a great enhancement). I have played 
with the setup and freeze scripts.

cx_freeze now have a bdist_mac target, which would result in a .app bundle.
cx_freeze installed from macports is too old to have this target, so I had to 
modify the port file to get the last version. I'll send it to macports.

Just modifying the script setup.py does not create a working .app. cx_freeze 
must have missed some dependencies, I don't know which ones.
Modifying the freeze.py to remove windows specific things does create a folder 
with apparently everything needed (and even some things not needed). But from 
there I don't know how to invoke cx_freeze to create a bundle.

Jean-Alexis

#! python

# This script freezes Frescobaldi to a standalone application without
# needing to install any dependencies.
#
# Usage:
# C:\Python27\Python freeze.py
#
# How it works:
# It creates, using cx_Freeze, a frescobaldi executable inside the frozen/
# directory, along with all used (manually specified) Python modules.
# Then the whole frescobaldi_app directory is copied and the Python scripts
# byte-compiled.
# Finally, an installer is created using the Inno Setup console-mode compiler.

# the Inno Setup console-mode compiler
iscc = 'c:\\Program Files\\Inno Setup 5\\ISCC'

# where to build the frozen program folder
target_dir = 'frozen'

# import standard modules and cx_Freeze
import imp
import os
import py_compile
import shutil
import subprocess
import sys
from cx_Freeze import Executable, Freezer

# access meta-information such as version, etc.
from frescobaldi_app import info

# find pypm by adding the dir of pygame to sys.path
sys.path.append(imp.find_module('pygame')[1])

includes = [
'sip',
'PyQt4.QtCore',
'PyQt4.QtGui',
'PyQt4.QtWebKit',
'PyQt4.QtNetwork',
'PyQt4.QtSvg',
'PyQt4.QtXml',
'popplerqt4',
'pypm',

'__future__',
'bisect',
'contextlib',
'difflib',
'fractions',
'glob',
'json',
'itertools',
'functools',
'optparse',
'os',
'platform',
're',
'sys',
'shutil',
'struct',
'subprocess',
'traceback',
'types',
'unicodedata',
'weakref',
'xml.etree.ElementTree',
]

excludes = [
'frescobaldi_app',  # we'll add this one manually

]

frescobaldi = Executable(
'frescobaldi',
#icon = 'frescobaldi_app/icons/frescobaldi.ico',
appendScriptToExe = True,
#base = 'Win32GUI', # no console
)

f = Freezer(
[frescobaldi],
includes = includes,
excludes = excludes,
targetDir = target_dir,
copyDependentFiles = True,
compress = False,
# silent = True,
)

f.Freeze()

def copy_plugins(name):
"""Copies a folder from the Qt4 plugins directory."""
path = imp.find_module('PyQt4')[1]
# folder = os.path.join(path, 'plugins', name)
folder = '/opt/local/share/qt4/plugins'
target = os.path.join(target_dir, name)
shutil.rmtree(target, ignore_errors = True)
shutil.copytree(folder, target)

# copy Qt4 imageformat plugins
copy_plugins('imageformats')

# copy Qt4 iconengine plugins
copy_plugins('iconengines')

# copy the frescobaldi_app directory
subprocess.call([sys.executable, 'setup.py', 'build_py',
	'--build-lib', target_dir, '--compile'])

# make an Inno Setup installer
inno_script = b'''
[Setup]
AppName=Frescobaldi
AppVersion={version}
AppVerName=Frescobaldi {version}
AppPublisher={author}
AppPublisherURL={homepage}
AppComments={comments}

DefaultDirName={{pf}}\\Frescobaldi
DefaultGroupName=Frescobaldi
UninstallDisplayIcon={{app}}\\frescobaldi.exe
Compression=lzma2
SolidCompression=yes

SourceDir={target}\\
OutputDir=..\\dist\\
OutputBaseFilename="Frescobaldi Setup {version}"
SetupIconFile=frescobaldi_app\\icons\\frescobaldi.ico
LicenseFile=..\\COPYING
WizardImageFile=..\\frescobaldi-wininst.bmp
WizardImageStretch=no

[Files]
Source: "*.*"; DestDir: "{{app}}"; Flags: recursesubdirs;

[Icons]
Name: "{{group}}\Frescobaldi"; Filename: "{{app}}\\frescobaldi.exe";

[Tasks]
Name: assocly; Description: "{{cm:AssocFileExtension,Frescobaldi,.ly}}";

[Registry]
Root: HKCR; Subkey: "LilyPond\\shell\\frescobaldi";\
 ValueType: string; ValueName: ""; ValueData: "Edit with &Frescobaldi...";\
 Flags: uninsdeletekey
Root: HKCR; Subkey: "LilyPond\\shell\\frescobaldi\\command";\
 ValueType: string; ValueName: ""; ValueData: """{{app}}\\frescobaldi.exe"" ""%1"""
Tasks: assocly; Root: HKCR; Subkey: "LilyPond\

Re: Improper handling of acciaccaturas and grace notes

2013-06-07 Thread pls
It's a well known issue.
Workaround: use s8 instead of r8 in measure 5 (flute).

hth
patrick
On 07.06.2013, at 16:44, Jacques Menu  wrote:

> Hello folks,
> 
> I ran into this with irregular bars combined with repeats, but only with 
> multiple staves.
> The source and PDF are attached.
> 
> Thanks if you can help solve this!
> 
> Regards,
> 
> 
> 
> 
> --
> 
> Dr Jacques MENU
> HPC-DIT Support
> http://hpc-dit.epfl.ch/
> mailto:hpc-dit-supp...@epfl.ch
> 
> 
> 
> 
> 
> 
> ___
> 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: Improper handling of acciaccaturas and grace notes

2013-06-07 Thread Eluze

I just compiled with 2.17.5 and upwards - it looks nice now!

Eluze


Am 07.06.2013 17:24, schrieb pls:

It's a well known issue.
Workaround: use s8 instead of r8 in measure 5 (flute).

hth
patrick
On 07.06.2013, at 16:44, Jacques Menu  wrote:


Hello folks,

I ran into this with irregular bars combined with repeats, but only with 
multiple staves.
The source and PDF are attached.

Thanks if you can help solve this!

Regards,




--

Dr Jacques MENU
HPC-DIT Support
http://hpc-dit.epfl.ch/
mailto:hpc-dit-supp...@epfl.ch






___
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: Improper handling of acciaccaturas and grace notes

2013-06-07 Thread Jim Long
Eluze,

I don't have 2.17.x handy just now  Would you mind checking
this code (attached), and seeing whether it also has been fixed?
I haven't seen any reply on this issue from May.

Thank you!

Jim

http://lists.gnu.org/archive/html/lilypond-user/2013-05/msg00367.html


On Fri, Jun 07, 2013 at 06:20:41PM +0200, Eluze wrote:
> I just compiled with 2.17.5 and upwards - it looks nice now!
> 
> Eluze
> 
> 
> Am 07.06.2013 17:24, schrieb pls:
> > It's a well known issue.
> > Workaround: use s8 instead of r8 in measure 5 (flute).
> >
> > hth
> > patrick
> > On 07.06.2013, at 16:44, Jacques Menu  wrote:
> >
> >> Hello folks,
> >>
> >> I ran into this with irregular bars combined with repeats, but only with 
> >> multiple staves.
> >> The source and PDF are attached.
> >>
> >> Thanks if you can help solve this!
> >>
> >> Regards,
> >>
> >> 
> >> 
> >>
> >> --
> >>
> >> Dr Jacques MENU
> >> HPC-DIT Support
> >> http://hpc-dit.epfl.ch/
> >> mailto:hpc-dit-supp...@epfl.ch
> >>
> >>
> >>
> >>
> >>
> >>
> >> ___
> >> 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

\version "2.16.2"

Chords = \new ChordNames {
  \set chordChanges = ##t
  \chordmode { e1 e1 }
}

\score { % this score has a chord symbol on the 2nd line
  <<
\Chords
\new Staff {
  \repeat unfold 8 e'8 \break
%  \acciaccatura fis'8
  \repeat unfold 8 e'8
}
  >>
}

\score { % this score is missing a chord symbol on the 2nd line
  <<
\Chords
\new Staff {
  \repeat unfold 8 e'8 \break
  \acciaccatura fis'8
  \repeat unfold 8 e'8
}
  >>
}
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Improper handling of acciaccaturas and grace notes

2013-06-07 Thread Eluze
here is the out put wiht 2.17.19:  tiny-JimLong.png
  
is that what you expect?

Eluze


Jim Long wrote
> Eluze,
> 
> I don't have 2.17.x handy just now  Would you mind checking
> this code (attached), and seeing whether it also has been fixed?
> I haven't seen any reply on this issue from May.
> 
> Thank you!
> 
> Jim
> 
> http://lists.gnu.org/archive/html/lilypond-user/2013-05/msg00367.html
> 
> 
> On Fri, Jun 07, 2013 at 06:20:41PM +0200, Eluze wrote:
>> I just compiled with 2.17.5 and upwards - it looks nice now!
>> 
>> Eluze
>> 
>> 
>> Am 07.06.2013 17:24, schrieb pls:
>> > It's a well known issue.
>> > Workaround: use s8 instead of r8 in measure 5 (flute).
>> >
>> > hth
>> > patrick
>> > On 07.06.2013, at 16:44, Jacques Menu <

> Jacques.Menu@

> > wrote:
>> >
>> >> Hello folks,
>> >>
>> >> I ran into this with irregular bars combined with repeats, but only
>> with multiple staves.
>> >> The source and PDF are attached.
>> >>
>> >> Thanks if you can help solve this!
>> >>
>> >> Regards,
>> >>
>> >> 
> 
>> >> 
> 
>> >>
>> >> --
>> >>
>> >> Dr Jacques MENU
>> >> HPC-DIT Support
>> >> http://hpc-dit.epfl.ch/
>> >> mailto:

> hpc-dit-support@

>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> ___
>> >> lilypond-user mailing list
>> >> 

> lilypond-user@

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

> lilypond-user@

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

> lilypond-user@

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

> lilypond-user@

> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> 
> tiny.ly (517 bytes)
> ;





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Improper-handling-of-acciaccaturas-and-grace-notes-tp146826p146832.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: Improper handling of acciaccaturas and grace notes

2013-06-07 Thread Jim Long
On Fri, Jun 07, 2013 at 11:08:23AM -0700, Eluze wrote:
> here is the out put wiht 2.17.19:  tiny-JimLong.png
>   
> is that what you expect?
> 
> Eluze

Um, yes and no.  Yes, in that the output still looks much like
the PNG file I posted last month.  But no, in that the output is
not what I would expect from Lilypond.  Thank you for confirming
that this behaviour persists in the current devel version.  I'm
still unclear whether this is a known bug.

I'm curious that you say "what you expect."  Given the source
code, is the output what YOU expect?  I don't think my
expectations are unreasonable, but they have been before! :)

Thanks again,

Jim



> Jim Long wrote
> > Eluze,
> > 
> > I don't have 2.17.x handy just now  Would you mind checking
> > this code (attached), and seeing whether it also has been fixed?
> > I haven't seen any reply on this issue from May.
> > 
> > Thank you!
> > 
> > Jim
> > 
> > http://lists.gnu.org/archive/html/lilypond-user/2013-05/msg00367.html
> > 
> > 
> > On Fri, Jun 07, 2013 at 06:20:41PM +0200, Eluze wrote:
> >> I just compiled with 2.17.5 and upwards - it looks nice now!
> >> 
> >> Eluze
> >> 
> >> 
> >> Am 07.06.2013 17:24, schrieb pls:
> >> > It's a well known issue.
> >> > Workaround: use s8 instead of r8 in measure 5 (flute).
> >> >
> >> > hth
> >> > patrick
> >> > On 07.06.2013, at 16:44, Jacques Menu <
> 
> > Jacques.Menu@
> 
> > > wrote:
> >> >
> >> >> Hello folks,
> >> >>
> >> >> I ran into this with irregular bars combined with repeats, but only
> >> with multiple staves.
> >> >> The source and PDF are attached.
> >> >>
> >> >> Thanks if you can help solve this!
> >> >>
> >> >> Regards,
> >> >>
> >> >> 
> > 
> >> >> 
> > 
> >> >>
> >> >> --
> >> >>
> >> >> Dr Jacques MENU
> >> >> HPC-DIT Support
> >> >> http://hpc-dit.epfl.ch/
> >> >> mailto:
> 
> > hpc-dit-support@
> 
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> >> >> ___
> >> >> lilypond-user mailing list
> >> >> 
> 
> > lilypond-user@
> 
> >> >> https://lists.gnu.org/mailman/listinfo/lilypond-user
> >> >
> >> >
> >> >
> >> > ___
> >> > lilypond-user mailing list
> >> > 
> 
> > lilypond-user@
> 
> >> > https://lists.gnu.org/mailman/listinfo/lilypond-user
> >> 
> > 
> >> ___
> >> lilypond-user mailing list
> >> 
> 
> > lilypond-user@
> 
> >> https://lists.gnu.org/mailman/listinfo/lilypond-user
> > 
> > 
> > ___
> > lilypond-user mailing list
> 
> > lilypond-user@
> 
> > https://lists.gnu.org/mailman/listinfo/lilypond-user
> > 
> > 
> > tiny.ly (517 bytes)
> > ;
> 
> 
> 
> 
> 
> --
> View this message in context: 
> http://lilypond.1069038.n5.nabble.com/Improper-handling-of-acciaccaturas-and-grace-notes-tp146826p146832.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: Improper handling of acciaccaturas and grace notes

2013-06-07 Thread Eluze
I was referring to Patrick's

/It's a well known issue.
Workaround: use s8 instead of r8 in measure 5 (flute)./

which clearly has to do with graces & co in multi staff situations.

your code/bug report seems to deal with other problems!

Eluze



Jim Long wrote
> On Fri, Jun 07, 2013 at 11:08:23AM -0700, Eluze wrote:
>> here is the out put wiht 2.17.19:  tiny-JimLong.png
>> ;  
>> is that what you expect?
>> 
>> Eluze
> 
> Um, yes and no.  Yes, in that the output still looks much like
> the PNG file I posted last month.  But no, in that the output is
> not what I would expect from Lilypond.  Thank you for confirming
> that this behaviour persists in the current devel version.  I'm
> still unclear whether this is a known bug.
> 
> I'm curious that you say "what you expect."  Given the source
> code, is the output what YOU expect?  I don't think my
> expectations are unreasonable, but they have been before! :)
> 
> Thanks again,
> 
> Jim





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Improper-handling-of-acciaccaturas-and-grace-notes-tp146826p146834.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: Improper handling of acciaccaturas and grace notes

2013-06-07 Thread Jacques Menu
OK, thanks!

JM

Le 7 juin 2013 à 21:03, Eluze  a écrit :

> I was referring to Patrick's
> 
> /It's a well known issue.
> Workaround: use s8 instead of r8 in measure 5 (flute)./
> 
> which clearly has to do with graces & co in multi staff situations.
> 
> your code/bug report seems to deal with other problems!
> 
> Eluze
> 
> 
> 
> Jim Long wrote
>> On Fri, Jun 07, 2013 at 11:08:23AM -0700, Eluze wrote:
>>> here is the out put wiht 2.17.19:  tiny-JimLong.png
>>> ; 
>>>  
>>> is that what you expect?
>>> 
>>> Eluze
>> 
>> Um, yes and no.  Yes, in that the output still looks much like
>> the PNG file I posted last month.  But no, in that the output is
>> not what I would expect from Lilypond.  Thank you for confirming
>> that this behaviour persists in the current devel version.  I'm
>> still unclear whether this is a known bug.
>> 
>> I'm curious that you say "what you expect."  Given the source
>> code, is the output what YOU expect?  I don't think my
>> expectations are unreasonable, but they have been before! :)
>> 
>> Thanks again,
>> 
>> Jim
> 
> 
> 
> 
> 
> --
> View this message in context: 
> http://lilypond.1069038.n5.nabble.com/Improper-handling-of-acciaccaturas-and-grace-notes-tp146826p146834.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


Acciaccaturas with chords

2013-06-07 Thread Andrew Bernard

Greetings List,

How does one specify a particular note of a chord to slur an 
acciaccatura to? In the following snippet, I want it to connect to a not d.


\version "2.17.18"

\relative c {
  \clef bass

  \acciaccatura gis8 2^> ^>
}


Andrew


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


Re: osia: hide first bar line on left hand of key signature

2013-06-07 Thread Konstatin Heuer
> 
In case someone is ever interested in this issue again, 
I will post my final solution, 
that I found with your help.

I think it is the simplest way to synchronize scores 
with any kind of systemStartDelimiter 
and without connection by a primary bar line.

\score{
\layout {\context {\Score \remove System_start_delimiter_engraver }}
\new StaffGroup
\with { systemStartDelimiter = #'SystemStartBar }
<<{f'1f'}
\new StaffGroup
<<
\new GrandStaff
<<
{e'e'}
{d'd'}
>>
{c'c'}
>>
>>
>>
\new StaffGroup
\with { systemStartDelimiter = #'SystemStartBar }
<<{f'f'}
\new StaffGroup
<<
\new GrandStaff
<<
{e'e'}
{d'd'}
>>
{c'c'}
>>
>>
>>
}



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


Re: Acciaccaturas with chords

2013-06-07 Thread Nick Payne

On 08/06/13 10:59, Andrew Bernard wrote:

Greetings List,

How does one specify a particular note of a chord to slur an
acciaccatura to? In the following snippet, I want it to connect to a not d.

\version "2.17.18"

\relative c {
   \clef bass

   \acciaccatura gis8 2^> ^>
}


\version "2.17.18"

\relative c {
  \clef bass

  \once \override Stem.direction = #DOWN
  \once \override Slur.direction = #UP
  \acciaccatura gis8 2^> ^>
}

You can leave out the override of the stem direction, but then the 
acciaccatura sits at the top of the stems and collides with the stem of 
the G#.



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