Re: Pull in external LilyPond files into a score of movements

2014-04-27 Thread Urs Liska
Am 27.04.2014 00:22, schrieb Knute Snortum: Okay, that looks good. But there are two things: First, can the files be *.ly files instead of *.ily files? As Paul said, the file extension is purely a convenience for human readers. When \include-ing a file LilyPond will simply read in that file

Re: Pull in external LilyPond files into a score of movements

2014-04-27 Thread Nick Payne
On 27/04/14 16:13, Urs Liska wrote: Am 27.04.2014 00:22, schrieb Knute Snortum: Okay, that looks good. But there are two things: First, can the files be *.ly files instead of *.ily files? As Paul said, the file extension is purely a convenience for human readers. When \include-ing a file

Re: Pull in external LilyPond files into a score of movements

2014-04-27 Thread Jan-Peter Voigt
Hi All, to use a file for including definitions and also to compile it stand-alone, I use a command to conditionally create the score. It is integrated in a system to execute templates: https://github.com/openlilylib/snippets/tree/master/templates/lalily Attached is a short example, which

Pagination

2014-04-27 Thread Charles Berger
Je viens de decouvrir Lilypond J'ai ecris ma premiere partition musicale a 2 voix Le logiciel m'a retranscrit le tout sur 1 premiere ligne normal et la 2eme portee est hors pagination (en gravant avec le format de sortie SVG j'appercois le reste de la partition hors pagination) J'ai essaye la

Re: Pagination

2014-04-27 Thread Urs Liska
Am 27.04.2014 12:34, schrieb Charles Berger: Je viens de decouvrir Lilypond J'ai ecris ma premiere partition musicale a 2 voix Le logiciel m'a retranscrit le tout sur 1 premiere ligne normal et la 2eme portee est hors pagination (en gravant avec le format de sortie SVG j'appercois le reste de

Re: Pagination

2014-04-27 Thread Pierre Perol-Schneider
Le 27 avril 2014 12:34, Charles Berger charlesberge...@yahoo.fr a écrit : Je viens de decouvrir Lilypond Bonjour Charles et bienvenue, J'ai ecris ma premiere partition musicale a 2 voix Le logiciel m'a retranscrit le tout sur 1 premiere ligne normal et la 2eme portee est hors pagination

Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Pierre Perol-Schneider
Hi LilyPonders, I'm stucked with this code : %% \version 2.18.2 \relative c' { \repeat volta 2 { c4 d e f | } \alternative { { c2 e \bar :|] } { \once\override Score.VoltaBracket.X-offset = #.9 f2 g | }

Re: Pagination

2014-04-27 Thread Trevor Daniels
Charles vois avez ecrit Sunday, April 27, 2014 11:34 AM Je viens de decouvrir Lilypond :) J'ai ecris ma premiere partition musicale a 2 voix Le logiciel m'a retranscrit le tout sur 1 premiere ligne normal et la 2eme portee est hors pagination Cela peut vous aider:

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread David Kastrup
Pierre Perol-Schneider pierre.schneider.pa...@gmail.com writes: Does anyone know how to reduce the second VoltaBracketSpanner in order to stop it at the barline ? %% \version 2.18.2 \relative c' { \repeat volta 2 { c4 d e f | } \alternative { { c2 e

Re: Pagination

2014-04-27 Thread Francois Planiol
Salut Charles, lorsque lily compile, il doit t'indiquer dans le discours un moment ou il rencontre un problème. Il suffit d'une petite erreur, comme un 3 au lieu d'un 4, un point de trop ou qui manque, et lily ne peut plus faire de mise à la ligne dans le reste de la musique. En général, le log

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Pierre Perol-Schneider
Great, thanks David ~Pierre ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Pierre Perol-Schneider
Well, now the problem comes at the ending barline : % \version 2.18.2 \relative c' { \partial 8 c'8 \repeat volta 2 { c,4 d e f | } \alternative { { c2 e } { f2 g | } } \bar |. } \relative c'

Re: Collision between tuplet bracket and accidental

2014-04-27 Thread James Harkins
On Friday, 25 April 2014 15:59:16 HKT, Pierre Perol-Schneider wrote: 2014-04-25 7:29 GMT+02:00 James Harkins jamshar...@gmail.com: I have a case (attached) where LilyPond doesn't leave enough space for an accidental. Try : \once\override NoteColumn.X-offset = #1 Perfect, thanks! hjh

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Malte Meyn
On 27.04.2014 16:28, Pierre Perol-Schneider wrote: Well, now the problem comes at the ending barline : \once\override Score.VoltaBracket.shorten-pair = #'(1 . 0) Try a negative value like -1 instead of 0 here. ___ lilypond-user mailing

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Pierre Perol-Schneider
2014-04-27 16:56 GMT+02:00 Malte Meyn lilyp...@maltemeyn.de: Try a negative value like -1 instead of 0 here. Perfect, thanks Malte. ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Thomas Morley
2014-04-27 13:41 GMT+02:00 Pierre Perol-Schneider pierre.schneider.pa...@gmail.com: Hi LilyPonders, I'm stucked with this code : %% \version 2.18.2 \relative c' { \repeat volta 2 { c4 d e f | } \alternative { { c2 e \bar :|]

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Pierre Perol-Schneider
2014-04-27 19:31 GMT+02:00 Thomas Morley thomasmorle...@gmail.com: It is a simple typo in bar-line.scm replace: (define-bar-line :|] :|] #f |) with (define-bar-line :|] :|] #f | ) and all should work. Note the added space! For now you should use 'shorten-pair as shown. I'll do some

easyHeadsOn with numbers or solfege coded in {...}\\{..} construct

2014-04-27 Thread MING TSANG
Hi, lilyponders: Refer to the example (attached .ly file and png): 1. Bar 1, 5-6 female staff, not all notes are displayed numbered notehead. 2. The same happens on male staff bar 3. How can this be resolved? I don't know scheme, so I cannot attempt to solve this.  Any help is appreciated.

frescobaldi vs. org-babel-lilypond

2014-04-27 Thread Steven Arntson
I may be getting in over my head with this question. I'm a new user of Lilypond, transitioning away from Musescore. I've been using Frescobaldi a bit, and am impressed with it so far. However, I see there's an Emacs mode available through org-babel called Arrange Mode. I'm a user of Emacs (though

Pull in external LilyPond files into a score of movements

2014-04-27 Thread zvm
When I'm doing a multi-movement score I use LATEX ... that way all my files can remain stand-alone but is published in one PDF with a concurrent page count and header and footers ... Zack ___ lilypond-user mailing list lilypond-user@gnu.org

Re: easyHeadsOn with numbers or solfege coded in {...}\\{..} construct

2014-04-27 Thread Pierre Perol-Schneider
2014-04-27 20:06 GMT+02:00 MING TSANG tsan...@rogers.com: Hi, lilyponders: Hi Emmanuel, Refer to the example (attached .ly file and png): 1. Bar 1, 5-6 female staff, not all notes are displayed numbered notehead. 2. The same happens on male staff bar 3. How can this be resolved? You

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Richard Shann
On Sun, 2014-04-27 at 19:31 +0200, Thomas Morley wrote: It is a simple typo in bar-line.scm replace: (define-bar-line :|] :|] #f |) with (define-bar-line :|] :|] #f | ) and all should work. Note the added space! For now you should use 'shorten-pair as shown. hmm, does this mean that

Re: easyHeadsOn with numbers or solfege coded in {...}\\{..} construct

2014-04-27 Thread MING TSANG
Pierre, Thank you. It works. Emmanuel, Ming On Sunday, April 27, 2014 2:41:06 PM, Pierre Perol-Schneider pierre.schneider.pa...@gmail.com wrote: 2014-04-27 20:06 GMT+02:00 MING TSANG tsan...@rogers.com: Hi, lilyponders: Hi Emmanuel,   Refer to the example (attached .ly file and png): 1. Bar

Re: easyHeadsOn with numbers or solfege coded in {...}\\{..} construct

2014-04-27 Thread MING TSANG
Hi Pierre, On Sunday, April 27, 2014 5:09:46 PM, MING TSANG tsan...@rogers.com wrote: Pierre, Thank you. It works. Emmanuel, Ming On Sunday, April 27, 2014 2:41:06 PM, Pierre Perol-Schneider pierre.schneider.pa...@gmail.com wrote: 2014-04-27 20:06 GMT+02:00 MING TSANG tsan...@rogers.com:

Absolute size for \epsfile, i.e. independent of global-staff-size

2014-04-27 Thread Rutger Hofman
Good evening list, I want to include a title page w/ an \epsfile image in a number of files (score, parts), where the point size for the files may differ: score has smaller font than parts, basically. Now I want to write one include file that makes the title page, and I want that title page

Re: easyHeadsOn with numbers or solfege coded in {...}\\{..} construct

2014-04-27 Thread Pierre Perol-Schneider
2014-04-28 0:07 GMT+02:00 MING TSANG tsan...@rogers.com: I try to code the following two lines for male staff instrumentName = \markup \center-column { T. B. } shortInstrumentName = \markup \center-column { T. B. } and I got the following error: Updated .ly is attached. Where

Re: easyHeadsOn with numbers or solfege coded in {...}\\{..} construct

2014-04-27 Thread MING TSANG
Pierre, Thank you. You save my day. Emmanuel, Ming. On Sunday, April 27, 2014 6:37:18 PM, Pierre Perol-Schneider pierre.schneider.pa...@gmail.com wrote: 2014-04-28 0:07 GMT+02:00 MING TSANG tsan...@rogers.com:   I try to code the following two lines for male staff     instrumentName = \markup

Re: frescobaldi vs. org-babel-lilypond

2014-04-27 Thread Urs Liska
Am 27.04.2014 20:15, schrieb Steven Arntson: I may be getting in over my head with this question. I'm a new user of Lilypond, transitioning away from Musescore. I've been using Frescobaldi a bit, and am impressed with it so far. However, I see there's an Emacs mode available through org-babel

Re: frescobaldi vs. org-babel-lilypond

2014-04-27 Thread Steven Arntson
Urs Liska u...@openlilylib.org writes: Am 27.04.2014 20:15, schrieb Steven Arntson: I may be getting in over my head with this question. I'm a new user of Lilypond, transitioning away from Musescore. I've been using Frescobaldi a bit, and am impressed with it so far. However, I see there's

Re: Absolute size for \epsfile, i.e. independent of global-staff-size

2014-04-27 Thread madMuze
Greetings, Rutger: Rather than query the font size, I use a simple calculation on the global staff size: In the individual files, globalSize = 18 % or 20 or 15, or what-you-will In the file of included definitions (thus always accessible): mgnStf = #(/ 20 globalSize) Then the eps file is

Re: frescobaldi vs. org-babel-lilypond

2014-04-27 Thread Vaughan McAlley
On 28 April 2014 09:56, Steven Arntson ste...@stevenarntson.com wrote: Urs Liska u...@openlilylib.org writes: Am 27.04.2014 20:15, schrieb Steven Arntson: I may be getting in over my head with this question. I'm a new user of Lilypond, transitioning away from Musescore. I've been using

Re: easyHeadsOn with numbers or solfege coded in {...}\\{..} construct

2014-04-27 Thread MING TSANG
Hi, Pierre: On Sunday, April 27, 2014 6:52:36 PM, MING TSANG tsan...@rogers.com wrote: Pierre, Thank you. You save my day. Emmanuel, Ming. On Sunday, April 27, 2014 6:37:18 PM, Pierre Perol-Schneider pierre.schneider.pa...@gmail.com wrote: 2014-04-28 0:07 GMT+02:00 MING TSANG