Re: Formatting Titles...

2015-06-10 Thread Marco Bagolin
amazing! Thank you! Il 10/giu/2015 09:37 Nathan Ho when.possi...@gmail.com ha scritto: On Tue, Jun 9, 2015 at 11:11 PM, Marco Bagolin bagolin.ma...@gmail.com wrote: Hello all. I must to format titles. I write the following code: \header { dedication = \markup \override #'(font-name .

Re: Formatting Titles...

2015-06-10 Thread Noeck
any suggestion? This might be a better approach: Changing the title layout itself and not only the single items like composer: http://lilypond.org/doc/v2.18/Documentation/notation/custom-titles-headers-and-footers#custom-layout-for-titles HTH, Joram

Re: Formatting Titles...

2015-06-10 Thread Nathan Ho
On Tue, Jun 9, 2015 at 11:11 PM, Marco Bagolin bagolin.ma...@gmail.com wrote: Hello all. I must to format titles. I write the following code: \header { dedication = \markup \override #'(font-name . Book Antiqua) \bold {Music from the Motion Picture} title = \markup \override

Re[2]: Fw: Re[2]: coloring voices vs systemStartDelimiterHierarchy

2015-06-10 Thread Thomas Schuch
So, i tried to figure out all problems I have with this function at the moment. I'd like to have general Score informations (as TimeSignature, Key, Clefs at the beginning of a line etc.) remain with the standard color (- black) and all informations regarding a specific Voice (NoteHeads, Stems,

Scheme function

2015-06-10 Thread Víctor
Hi all: solfa = #(define-music-function (parser location framed number note) (string? string? string?) #{ ^\markup{ \box \pad-to-box #'(0 . 0) #'(0 . 2.2){ #framed } #number : \italic #note } #}) \relative c' { c4^\solfa C I do } I need this function

Multiple customized score outputs

2015-06-10 Thread Mathieu Demange
Hello all, For my students, I'd need to be able to enter a simple LilyPond score that would be printed multiple times with some custom variables like this : \header { title = ... subtitle = [STUDENT NAME] - [CLASS NAME] } \score { ... } Which would render a single PDF with each

Re: Multiple customized score outputs

2015-06-10 Thread Francisco Vila
2015-06-10 15:58 GMT+02:00 Mathieu Demange mathieu.dema...@gmail.com: Hello all, For my students, I'd need to be able to enter a simple LilyPond score that would be printed multiple times with some custom variables like this : \header { title = ... subtitle = [STUDENT NAME] -

In and out of polymetric

2015-06-10 Thread William Zeitler
Below is a polymetric snippet (eighth = eighth on the two staves). After the snippet I would like to continue with polymetric turned off -- that is, 6/8 on both staves and barlines connecting them. Then a few bars later back to polymetric mode like the snippet below. How do I do that? (I'm

Formatting Titles...

2015-06-10 Thread Marco Bagolin
Hello all. I must to format titles. I write the following code: \header { dedication = \markup \override #'(font-name . Book Antiqua) \bold {Music from the Motion Picture} title = \markup \override #'(font-name . Book Antiqua) \fontsize #+2 { \bold TITLE} composer = \markup \override

Re: Scheme function

2015-06-10 Thread Víctor
Thank you very much for your answer and the documentation, I looked for scheme tutorials but only found very large books which I don't have time to read right now. I'll take a look to lilypond's scheme tutorial right away. Thanks again. Víctor El 10/06/15 a las 10:34, Simon Albrecht escibió:

Dashed line of TextSpanner in TabStaff too large

2015-06-10 Thread Peter Crighton
Hello all, I have defined a function \ringOn which adds a tweaked TextSpanner. The resulting dashed line has different dash sizes in a Staff and a TabStaff, due to Staff.StaffSymbol.staff-space being set to #1.5 in a TabStaff. How can I make the dashed lines exactly the same size in both Staff

Re: grace note duration

2015-06-10 Thread Simon Albrecht
Am 10.06.2015 um 21:25 schrieb Gilberto Agostinho: Hi David, David Kastrup wrote It _is_ actually set to another value, namely 9/40. Hardwired in remap_grace_duration defined in lily/audio-item.cc . So basically no. Thanks for the reply. So this means that my option right now would be to

Re: Question about \repeat unfold

2015-06-10 Thread Víctor
Hello Daniel: You could use a hidden voice to add markups, dynamics, whatever and leave your repeat like it is. Something like: music = { \repeat unfold 12 c4 } control = { s1*2 s1^\markup{ bla } } \score { \new Staff \new Voice \music \new

Re: grace note duration

2015-06-10 Thread David Kastrup
Gilberto Agostinho gilbertohasn...@gmail.com writes: Hi all, Quick question: our documentation clearly states that [e]ach grace note in MIDI output has a length of 1/4 of its actual duration, but is there any way to set this parameter to another value? It _is_ actually set to another value,

Re: Scheme function

2015-06-10 Thread David Kastrup
Víctor piratabonifa...@gmail.com writes: Thank you very much for your answer, this works very well. I'll be studying the scheme tutorial so I don't have to bother you people with basic things. Regards, Víctor. El 10/06/15 a las 12:04, Nathan Ho escibió: Hi Victor, Here's one way to do

Re: grace note duration

2015-06-10 Thread Gilberto Agostinho
Hi Simon, Simon Albrecht-2 wrote It’s a bit different for feature requests: please send an e-mail to lt;mailto: bug-lilypond@ gt;, describing exactly and concisely what feature you want (and why it is necessary), so the Bug Squad can create an issue. Thanks a lot for the

Re: Scheme function

2015-06-10 Thread Víctor
Thank you very much for your answer, this works very well. I'll be studying the scheme tutorial so I don't have to bother you people with basic things. Regards, Víctor. El 10/06/15 a las 12:04, Nathan Ho escibió: Hi Victor, Here's one way to do it: solfa = #(define-music-function

Re: In and out of polymetric

2015-06-10 Thread Davide Liessi
Dear William, Il 10/06/15 16.49, William Zeitler ha scritto: Below is a polymetric snippet (eighth = eighth on the two staves). After the snippet I would like to continue with polymetric turned off -- that is, 6/8 on both staves you just need to write `\time 6/8` in both staves and write the

Re: grace note duration

2015-06-10 Thread Gilberto Agostinho
Hi David, David Kastrup wrote It _is_ actually set to another value, namely 9/40. Hardwired in remap_grace_duration defined in lily/audio-item.cc . So basically no. Thanks for the reply. So this means that my option right now would be to create two files, one for the layout with the

Re: Scheme function

2015-06-10 Thread Nathan Ho
On Wed, Jun 10, 2015 at 7:17 AM, Víctor piratabonifa...@gmail.com wrote: Hi all: solfa = #(define-music-function (parser location framed number note) (string? string? string?) #{ ^\markup{ \box \pad-to-box #'(0 . 0) #'(0 . 2.2){ #framed } #number :

Question about \repeat unfold

2015-06-10 Thread Daniel Contreras
Hello ponders, I have a question about using the repeat unfold function. Is it possible to write a mark up on the second repeat. For example… I want to write a indicator and notation on the bottom of the very last measure of a passage, the passage itself repeats two times. Is there a way for

Re: Re[2]: Fw: Re[2]: coloring voices vs systemStartDelimiterHierarchy

2015-06-10 Thread Klaus Blum
Hi Thomas, Thomas Schuch wrote 2. Clefs If i want to color some music at the beginning of a system, the Clef at the SystemStart gets colored, too. If this behaviour is intended, you are absolutely right in changing Staff.Clef #'color (or did I miss something?). If you want ONLY the clef

Re: Music symbols in Inkscape

2015-06-10 Thread Carlo Stemberger
Thank you! Summing up, currently there are 3 ways: 1) importing the PDF pages with the glyphs 2) importing an SVG file generated by LilyPond 3) using the feta fonts as system fonts I find the first one not exactly quick and simple; the second one isn't good for my case (I need the glyphs, not a

Re: Das trunkne Lied on air

2015-06-10 Thread tisimst
Great show, today! Thanks for sharing these scores by Oskar Fried with us, Urs! - Abraham On Tue, Jun 9, 2015 at 1:25 AM, Urs Liska [via Lilypond] ml-node+s1069038n177635...@n5.nabble.com wrote: Ah, finally (!) there's also the detail page for the broadcast (German only) available at

Re: Music symbols in Inkscape

2015-06-10 Thread tisimst
Carlos, On Wed, Jun 10, 2015 at 5:40 PM, Carlo Stemberger-3 [via Lilypond] ml-node+s1069038n177694...@n5.nabble.com wrote: Thank you! Summing up, currently there are 3 ways: 1) importing the PDF pages with the glyphs 2) importing an SVG file generated by LilyPond 3) using the feta fonts

Re: Music symbols in Inkscape

2015-06-10 Thread Carlo Stemberger
2015-06-11 2:00 GMT+02:00 tisimst tisimst.lilyp...@gmail.com: It doesn't really matter, but I'm curious, if you don't mind my asking, what it is you planning to use them for? It's for a flyer (advertisement for a school of music) http://en.wikipedia.org/wiki/Advertisement: I'd like to put a

Re: grace note duration

2015-06-10 Thread Pierre Perol-Schneider
Hi Gilberto, Here's a workaround: \version 2.18.2 my-music = \relative { \tempo 4 = 144 c''1 \tag my-score { \grace d8 c2 } \tag my-midi { %% set grace note to a specific value: d16 c4... } d1 } \score { \keepWithTag my-score \my-music \layout {} } \score {

Re: grace note duration

2015-06-10 Thread Pierre Perol-Schneider
Oops, here again: \version 2.18.2 my-music = \relative { \tempo 4 = 144 c''1 \tag my-score { \grace d8 c2 } \tag my-midi { %% set grace note to a specific value: d16 c4... } d2 } \score { \keepWithTag my-score \my-music \layout {} } \score { \keepWithTag my-midi

Re: Fw: Re[2]: coloring voices vs systemStartDelimiterHierarchy

2015-06-10 Thread Simon Albrecht
Hello Thomas, I’m not familiar with this function, but I can help about the last two items: Am 10.06.2015 um 14:48 schrieb Thomas Schuch: 3. Beams If the colored area stops in the middle of a beam, the second part of the beam gets colored, while the NoteHeads and Stems remain black as