Re: Solving espressivo problem

2024-05-13 Thread morten
Thank you all ... I learned a lot fromt your answers Now I just have to implement a solution. Greetings Morten Lukas-Fabian Moser skrev den 2024-05-11 16:32: Here’s one approach: %%% SNIPPET BEGINS \version "2.25.11" esp = \markup \lower #1 \scale #'(1.375 . 1) \musicglyph #"scripts.espr"

Re: Solving espressivo problem

2024-05-11 Thread Lukas-Fabian Moser
Here’s one approach: %%% SNIPPET BEGINS \version "2.25.11" esp = \markup \lower #1 \scale #'(1.375 . 1) \musicglyph #"scripts.espr" stuff = \relative { \time 4/4 r4 b'4 a2-\tweak self-alignment-X #-1.25 _\esp ~ a2 b4 4( c1)-\tweak self-alignment-X #-0.5 _\esp b2-\tw

Re: Solving espressivo problem

2024-05-11 Thread Kieren MacMillan
Hi Mats, > On May 11, 2024, at 11:51 AM, Mats Bengtsson wrote: > I would rather do something like the following I started down that path, but when I saw that the output was I realized it would take far too much manual tweaking to make it visually attractive, whereas my \esp version gives with

Re: Solving espressivo problem

2024-05-11 Thread Mats Bengtsson
On 2024-05-11 15:18, Kieren MacMillan wrote: Hi Morten, Here’s one approach: %%% SNIPPET BEGINS \version "2.25.11" esp = \markup \lower #1 \scale #'(1.375 . 1) \musicglyph #"scripts.espr" stuff = \relative { \time 4/4 r4 b'4 a2-\tweak self-al

Re: Solving espressivo problem

2024-05-11 Thread Kieren MacMillan
Hi Morten, Here’s one approach: %%% SNIPPET BEGINS \version "2.25.11" esp = \markup \lower #1 \scale #'(1.375 . 1) \musicglyph #"scripts.espr" stuff = \relative { \time 4/4 r4 b'4 a2-\tweak self-alignment-X #-1.25 _\esp ~ a2 b4 4( c1)-\tweak self-alignment-X #-0.5 _\esp

Re: Solving espressivo problem

2024-05-11 Thread morten
wished for results. Can anybody help? * \version "2.24.3" stuff = \relative { \time 4/4 r4 b'4 a2~\< <>\! a2\> <>\! b4 4( c1\espressivo) b2\< <>\!\> c2\! c1\espressivo b4\< c2\!\> b4\! \bar "|" } \score {

Solving espressivo problem

2024-05-11 Thread morten
? * \version "2.24.3" stuff = \relative { \time 4/4 r4 b'4 a2~\< <>\! a2\> <>\! b4 4( c1\espressivo) b2\< <>\!\> c2\! c1\espressivo b4\< c2\!\> b4\! \bar "|" } \score { << \new Staff

Re: Espressivo type custom dynamics

2020-09-23 Thread Aaron Hill
On 2020-09-23 2:06 am, Andrew Bernard wrote: Harm's great code for making longer espressivo marks was posted on the list in 2013. It's excellent. But now say I want similar custom dynamics similar to an espressivo but with a dynamic inside, like where < and > are the arms of the

Espressivo type custom dynamics

2020-09-23 Thread Andrew Bernard
Harm's great code for making longer espressivo marks was posted on the list in 2013. It's excellent. But now say I want similar custom dynamics similar to an espressivo but with a dynamic inside, like where < and > are the arms of the espressivo. I'd like this because althou

Re: Espressivo marks

2020-07-26 Thread Martín Rincón Botero
#{ \tweak #'stencil #(longer-script x-val) \tweak Script.padding #1.0 \espressivo #}) \relative c'' { c4 e f\scaleEspr #2 g | f e g f | } Regards, Martín. PS: For some reason the code I copied and pasted in the first message, was pasted with a backslash in every line. -- www.martinrinconbotero.com

Re: Espressivo marks

2020-07-26 Thread DJF
On Jul 26, 2020, at 12:32 PM, Martín Rincón Botero wrote: > > There's an old thread, where Thomas Morley came up with this script for > longer \espressivo marks. > This script however adds horizontal space before or after the note to make > room for the longer "ar

Espressivo marks

2020-07-26 Thread Martín Rincón Botero
There's an old thread, where Thomas Morley came up with this script for longer \espressivo marks. \version "2.17.15" \language "english" \#(define ((longer-script x) grob) (let* ((stil (ly:script-interface::print grob))) (ly:stencil-scale stil x 1))) scaleEspr = \#(defi

Re: Dynamic next to espressivo

2019-01-23 Thread Andrew Bernard
Hi Saul, Thanks, but you missed the point, sorry. There's a thread about the \espressivo mark <> and how to adjust it. That's what I am referring to, not the text word 'espressivo'. Dynamics are different to Script, which is what \espressivo is. I am wanting to s

Re: Dynamic next to espressivo

2019-01-23 Thread Saul Tobin
% % \new Staff \with { % \omit TimeSignature % } \relative c' { % c1\dynText "p" "sub." % c1\dynText "fff" "espressivo" % c1\dynText "p" "espressivo" % c1\dynText "f" "sub." % \break % c1\p % c1\fff % c

Re: Making espressivo longer

2019-01-23 Thread Carl Sorensen
On 1/22/19, 8:07 PM, "Aaron Hill" wrote: NOTE: I could not find a predicate for an association list, so I provided one here. If I overlooked something that already exists, then we should swap out the predicate for that one. When I was creating fret diagrams, Han-Wen di

Dynamic next to espressivo

2019-01-23 Thread Andrew Bernard
Hi All, Now that we have a great espressivoII function, I want to put a dynamic next to the espressivo, on the left, at the same level. How do we do this? This is not specific to expressivo - how does one line up a dynamic and a script on the same horizontal level and snugged up to each other

Re: Making espressivo longer

2019-01-23 Thread Andrew Bernard
Hi Aaron, This is excellent. Highly useful for me. In order to disseminate this, I believe it should go in openlilylib. That's better in my view than a snippet because then you can include the actual code in your project. I'd be happy to format it all up and code it according to the standard for

Re: Making espressivo longer

2019-01-22 Thread Aaron Hill
- perhaps why the code omitted that feature to begin with. Espressivo marks are just hairpin-like objects, and I suppose I can just revert to using hairpins, but it's a bit annoying as you have to make a separate voice for the hairpins to start and finish on non-existent notes. Would the foll

Re: Making espressivo longer

2019-01-22 Thread Andrew Bernard
. Espressivo marks are just hairpin-like objects, and I suppose I can just revert to using hairpins, but it's a bit annoying as you have to make a separate voice for the hairpins to start and finish on non-existent notes. This is one of those lilypond things where you give a person an inch and

Re: Making espressivo longer

2019-01-22 Thread Ben
On 1/22/2019 7:45 AM, Andrew Bernard wrote: What is the current best practice for scaling espressivo indicators, making them longer? There's a scale function in the archives from Harm, but I wonder if there is a mechanism built in to 2.19.82 and so on? Andrew Hi Andrew, I had asked

Re: Making espressivo longer

2019-01-22 Thread Valentin Villenave
On 1/22/19, David Kastrup wrote: > People _want_ to believe that what you did was extraordinary enough that > they don't need to try themselves. Well in this specific case I certainly do want to try; I can only wish my code was as neat as Harm’s :-) Programmer or not, the Free Software world has

Re: Making espressivo longer

2019-01-22 Thread David Kastrup
Thomas Morley writes: > Am Di., 22. Jan. 2019 um 22:45 Uhr schrieb Valentin Villenave > : >> >> On 1/22/19, Andrew Bernard wrote: > >> > There's a scale function in the archives from Harm, but I wonder if there >> > is a mechanism built in to 2.19.82 and so on? >> >> I assume you’re referring to

Re: Making espressivo longer

2019-01-22 Thread Thomas Morley
Am Di., 22. Jan. 2019 um 22:45 Uhr schrieb Valentin Villenave : > > On 1/22/19, Andrew Bernard wrote: > > There's a scale function in the archives from Harm, but I wonder if there > > is a mechanism built in to 2.19.82 and so on? > > I assume you’re referring to > https://lists.gnu.org/archive/ht

Re: Making espressivo longer

2019-01-22 Thread Valentin Villenave
On 1/22/19, Andrew Bernard wrote: > What is the current best practice for scaling espressivo indicators, making > them longer? Apart from overriding the grob’s stencil, I don’t think it’s easily achievable. I looked into redefining the script-stencil property, but it only accepts a feta

Making espressivo longer

2019-01-22 Thread Andrew Bernard
What is the current best practice for scaling espressivo indicators, making them longer? There's a scale function in the archives from Harm, but I wonder if there is a mechanism built in to 2.19.82 and so on? Andrew ___ lilypond-user mailing

Re: Help with espressivo adjustments

2013-04-15 Thread Thomas Morley
2013/4/13 Janek Warchoł : > This excellent! it's premium material for extending manual - could > you post it as a patch? If you don't have time to texinfo it, let's > at least add an issue to the tracker. > > Janek Hi Janek, for some time I'm thinking about writing a tutorial about overriding s

Re: Help with espressivo adjustments

2013-04-15 Thread Janek Warchoł
Hi, 2013/4/15 Thomas Morley : > for some time I'm thinking about writing a tutorial about overriding > stencils, manipulating them, adding or combining sth, how to create a > new etc, etc ... > I'm not familiar with texinfo, though the main problem is my lack of time. > And currently I've less tha

Re: Help with espressivo adjustments

2013-04-13 Thread Marc Hohl
Am 13.04.2013 14:09, schrieb luis jure: on 2013-04-13 at 02:23 Thomas Morley wrote: Ok, I'll try, though, please remember I'm not a programmer. My explanations may be not complete. excellent tutorial, thank you. i found it very instructive. +1 Kudos! Marc _

Re: Help with espressivo adjustments

2013-04-13 Thread luis jure
on 2013-04-13 at 02:23 Thomas Morley wrote: > Ok, I'll try, though, please remember I'm not a programmer. My > explanations may be not complete. excellent tutorial, thank you. i found it very instructive. ___ lilypond-user mailing list lilypond-user@

Re: Help with espressivo adjustments

2013-04-13 Thread Janek Warchoł
> >> Ben > > Ok, I'll try, though, please remember I'm not a programmer. My > explanations may be not complete. > > I decided to develope the code in step by step manner. > (You'll notice that in the end the code is changed a bit, compared > with my previo

Re: Help with espressivo adjustments

2013-04-12 Thread SoundsFromSound
gt;> >> Thank you again, >> >> Ben > > Ok, I'll try, though, please remember I'm not a programmer. My > explanations may be not complete. > > I decided to develope the code in step by step manner. > (You'll notice that in the end the code is ch

Re: Help with espressivo adjustments

2013-04-12 Thread Thomas Morley
? > > Thank you again, > > Ben Ok, I'll try, though, please remember I'm not a programmer. My explanations may be not complete. I decided to develope the code in step by step manner. (You'll notice that in the end the code is changed a bit, compared with my previ

Re: Help with espressivo adjustments

2013-04-12 Thread SoundsFromSound
/12 SoundsFromSound < > soundsfromsound@ > >: >> Hello all, >> >> I'm trying to adjust the length (not /size/, per se) of the espressivo >> markings in this particular score and I can't figure out what I'm doing >> wrong. > &

Re: Help with espressivo adjustments

2013-04-12 Thread Thomas Morley
2013/4/12 SoundsFromSound : > Hello all, > > I'm trying to adjust the length (not /size/, per se) of the espressivo > markings in this particular score and I can't figure out what I'm doing > wrong. Hi Ben, try: \version "2.17.15" \language "engli

Help with espressivo adjustments

2013-04-12 Thread SoundsFromSound
Hello all, I'm trying to adjust the length (not /size/, per se) of the espressivo markings in this particular score and I can't figure out what I'm doing wrong. I've checked out a previous thread here: http://lilypond.1069038.n5.nabble.com/Changing-hairpin-size-in-esp

Re: Moving an espressivo sign

2009-07-21 Thread Alexander Kobel
Alexander Kobel wrote: Josh Nichols wrote: I am trying to move the espressivo sign down below the staff [...] \override Voice . Script #'padding = #whatYouWantInStaffSpace But: Why does this work? I've found some other mail about it, but according to what I understand

Re: Moving an espressivo sign

2009-07-21 Thread Alexander Kobel
Josh Nichols wrote: I am trying to move the espressivo sign down below the staff in the following example: \version "2.12.2" \relative c'' { c4_\espressivo a8 a b g } Pardon? It is below the staff here for me... If you want to increase the distance to th

Moving an espressivo sign

2009-07-21 Thread Josh Nichols
I am trying to move the espressivo sign down below the staff in the following example: \version "2.12.2" \relative c'' { c4_\espressivo a8 a b g } Could someone help me or direct me in the right direction? Thanks! ---

Re: Changing hairpin size in espressivo

2007-06-02 Thread Neil Puttock
Thanks Mats - that works a treat. Mats Bengtsson wrote: The expressivo marks and all other articulations are typeset as symbols in the font with musical symbols that's included with LilyPond, see Appendix C.4 "The Feta font" for a full list (the espressivo symbol is called scri

Re: Changing hairpin size in espressivo

2007-06-01 Thread Mats Bengtsson
The expressivo marks and all other articulations are typeset as symbols in the font with musical symbols that's included with LilyPond, see Appendix C.4 "The Feta font" for a full list (the espressivo symbol is called script.espr). This means that you have to change the font-s

Changing hairpin size in \espressivo

2007-05-31 Thread Neil Puttock
Hello, I'm trying to make the hairpin size a bit larger when using \espressivo, but so far Lilypond refuses to play ball. As suggested in the documentation, I've tried overriding Hairpin #'minimum-length, which works fine when applied to standard hairpins, but has no effect

Re: \espressivo

2004-12-05 Thread Arno Waschk
Hi Will, being the culprit for committing the \espressivo sign added i am pretty sure that this does not affect midi output. It makes a <> sign centered above/below the note as is done with \accent \fermata, or what ever. It might be interesting to tweak that sign more for individual

\espressivo

2004-12-04 Thread Will Oram
A few questions about the new \espressivo: * Does this script affect MIDI or PS/PDF output, or both? * Can someone make a picture of this command in action? I'm too scared to install 2.5 this early in development. :) If this command does what I think it does, I am ecstacic. The mess I had