Re: markup for partial measures

2011-06-25 Thread Reinhold Kainhofer
Am Samstag, 25. Juni 2011, 02:47:45 schrieben Sie: thanks for the information but i really prefer my workaround because the score in the example on the long-repeats is 1) incorrect as the code says repeat volta 4 and the score does not show that some measure need to be repeated 4 times and 2)

Fwd: ERROR: Unable to find file ice-9/boot-9.scm in load path

2011-06-25 Thread Jacek Gajek
In PATH I have C:\Program Files (x86)\LilyPond\usr\bin. It is a correct path (the folder exists). When I type lilypond: GNU LilyPond 2.12.3 programming error: cannot find absolute argv0 continuing, cross fingers ERROR: In procedure primitive-load-path: ERROR: Unable to find file ice-9/boot-9.scm

stave length!

2011-06-25 Thread Mario Moles
Hi! I don't understand whether to lengthen the stave up to the right border. Can you help me? \version 2.14.0 global = { \key c \major \time 4/4 } classicalGuitar = \relative c { \global % Qui segue la musica. c1|d|e| f|g|f|e|d|c|\bar |. } \score { \new Staff \with {

Re: How to generate small example PNGs

2011-06-25 Thread Orm Finnendahl
Hi Ralf, did you try the -dclipsystems option? Its explained in 3.4.1 of the notation reference (Extracting fragments of music). -- Orm Am Thursday, den 23. June 2011 um 10:06:47 Uhr (+) schrieb Ralf Mattes: Hello list, for a webproject with music examples I need to create PNG files

Re: stave length!

2011-06-25 Thread Phil Holmes
You adjust the paper and margins. See here: http://lilypond.org/doc/v2.14/Documentation/notation/horizontal-spacing-_005cpaper-variables -- Phil Holmes - Original Message - From: Mario Moles To: lilypond-user@gnu.org Sent: Saturday, June 25, 2011 3:43 PM Subject: stave

Re: stave length!

2011-06-25 Thread Phil Holmes
Oh - for a single line you may also need to change ragged-right (see the same page for details). -- Phil Holmes - Original Message - From: Phil Holmes To: Mario Moles ; lilypond-user@gnu.org Sent: Saturday, June 25, 2011 4:32 PM Subject: Re: stave length! You adjust

Re: stave length!

2011-06-25 Thread Thomas Scharkowski
composer = J. Sagreras arranger = (Barcellona, 13-2-1778 – Parigi, 10-7-1839) ..and the arranger dates are Fernando Sor's. ;-) Thomas ___ lilypond-user mailing list lilypond-user@gnu.org

Re: Dynamic + text aligned: BEST solution?

2011-06-25 Thread Valentin Villenave
On Sat, Jun 25, 2011 at 3:12 AM, Marc Mouries m...@mouries.net wrote: Is there a doc about opus-libre with examples? off-topicness It mainly amounts to a README file for now: http://git.savannah.gnu.org/cgit/opus-libre.git/tree/doc As far as examples go, there's the Free Software Song included

Re: stave length!

2011-06-25 Thread Mario Moles
In data sabato 25 giugno 2011 17:51:22, hai scritto: Oh - for a single line you may also need to change ragged-right (see the same page for details). -- Phil Holmes Oh yes! I have seen. I have resolved. Thank's. -- oiram/bin/selom MkarlM-HomePage

Re: stave length!

2011-06-25 Thread Mario Moles
In data sabato 25 giugno 2011 18:21:37, Thomas Scharkowski ha scritto: composer = J. Sagreras arranger = (Barcellona, 13-2-1778 – Parigi, 10-7-1839) ..and the arranger dates are Fernando Sor's. ;-) Thomas This is true! Thanks!

Writing makefile for simple project

2011-06-25 Thread Jesse Engle
Hello, I'm trying to write a makefile for a simple project with the following directory layout: ritual/ |-- Makefile |-- build/ |-- include |-- |-- defs.ily |-- |-- three-stroke-ruff.ily |-- |-- single-drag.ily |-- |-- ... |-- main.ly I'd like to have the makefile rebuild the project and place

Re: Writing makefile for simple project

2011-06-25 Thread Jonathan Kulp
On Sat, Jun 25, 2011 at 7:12 PM, Jesse Engle engle...@gmail.com wrote: Hello, I'm trying to write a makefile for a simple project with the following directory layout: ritual/ |-- Makefile |-- build/ |-- include |-- |-- defs.ily |-- |-- three-stroke-ruff.ily |-- |-- single-drag.ily |--

Re: Writing makefile for simple project

2011-06-25 Thread Jesse Engle
Can you post the text of your makefile so we can see what you've tried so far? PIECE=ritual INCDIR=include INCS=$(INCDIR)/defs.ly \ $(INCDIR)/three-stroke-ruff.ily \ $(INCDIR)/single-drag.ily $(PIECE).pdf: main.ly $(INCS) lilypond $(OPTS) -o $(PIECE) $; \ if test -f

Re: Writing makefile for simple project

2011-06-25 Thread Jonathan Kulp
On Sat, Jun 25, 2011 at 7:25 PM, Jesse Engle engle...@gmail.com wrote: Can you post the text of your makefile so we can see what you've tried so far? PIECE=ritual INCDIR=include INCS=$(INCDIR)/defs.ly \     $(INCDIR)/three-stroke-ruff.ily \     $(INCDIR)/single-drag.ily $(PIECE).pdf:

Options (was Re: How to generate small example PNGs)

2011-06-25 Thread Matthew Collett
On 23/06/2011, at 10:45 pm, Orm Finnendahl wrote: did you try the -dclipsystems option? Its explained in 3.4.1 of the notation reference (Extracting fragments of music). Is there anywhere a comprehensive list of the options that can follow '-d' on the command-line (or be set by

Spacing between staves

2011-06-25 Thread Richard Opheim
I used to be able to control the space between staves using \override VerticalAxisGroup #'minimum-Y-extent but recently, it seems to have lost functionality. For example, in the snippet below, no matter what numerical values I insert into the parentheses, the ossia staff doesn't change its

Re: Options (was Re: How to generate small example PNGs)

2011-06-25 Thread Colin Campbell
On 11-06-25 06:49 PM, Matthew Collett wrote: On 23/06/2011, at 10:45 pm, Orm Finnendahl wrote: did you try the -dclipsystems option? Its explained in 3.4.1 of the notation reference (Extracting fragments of music). Is there anywhere a comprehensive list of the options that can follow '-d' on

Re: Writing makefile for simple project

2011-06-25 Thread Dean Herington
It looks like your file is include/defs.ily but you've spelled it include/defs.ly in INCS. At 8:25 PM -0400 6/25/11, Jesse Engle wrote: Can you post the text of your makefile so we can see what you've tried so far? PIECE=ritual INCDIR=include INCS=$(INCDIR)/defs.ly \