text categories in scores (was: Changing midi-tempo within score)

2017-01-09 Thread Noeck
Hi Simon, all, next to the notes, there are usually these kinds of texts: 1 tempo: bold, above the staff 2 dynamics: in italics, below the staff (depends on the instrument etc.) 3 articlulation 4 other Examples: 1 Allegro, Tempo I, … 2 dolce, dim., cresc., … 3 dolce, staccato, … 4 m.d., simile,

Re: Changing midi-tempo within score

2017-01-08 Thread Simon Albrecht
On 08.01.2017 19:15, Flaming Hakama by Elaine wrote: So if the composer wrote a tempo indication, use \tempo; if the composer didn’t write anything and it’s just a tempo modification, use the latter. This strikes me as odd: when would you change tempo unless it was indicated by

Re: Changing midi-tempo within score

2017-01-08 Thread Flaming Hakama by Elaine
> So, what is the better way for changing the tempo? >> Doing it with \tempo seems more... semantic. Isn't it? >> > > So if the composer wrote a tempo indication, use \tempo; if the composer > didn’t write anything and it’s just a tempo modification, use the latter. > This strikes me as odd:

Re: Changing midi-tempo within score

2017-01-08 Thread Simon Albrecht
On 08.01.2017 01:07, UCas wrote: So, what is the better way for changing the tempo? Doing it with \tempo seems more... semantic. Isn't it? Is there any up- or downside with this two commands? Well, the difference is just that with \tempo it will be printed as well, setting

Re: Changing midi-tempo within score

2017-01-07 Thread UCas
Am 08.01.2017 um 00:07 schrieb Noeck: > { > a1 > \once\omit Score.MetronomeMark > \tempo 4 = 50 > a1 > \tempo 4 = 60 > a1 > } > > HTH, > Joram Uh, nice. I just used \tempo for things like \tempo "Andante" and I did not know, that I can use it this way. Thank you. Am 08.01.2017 um

Re: Changing midi-tempo within score

2017-01-07 Thread Malte Meyn
Am 07.01.2017 um 23:34 schrieb UCas: > I am able to set midi-tempo in my header-file with > > \midi { > \context { > \Score tempoWholesPerMinute = #(ly:make-moment miditempo 4) > } > } > > but how can I change this tempo within the score? \set

Re: Changing midi-tempo within score

2017-01-07 Thread Noeck
Hi UCas, Am 07.01.2017 um 23:34 schrieb UCas: > but how can I change this tempo within the score? You can use the normal \tempo command and hide it: { a1 \once\omit Score.MetronomeMark \tempo 4 = 50 a1 \tempo 4 = 60 a1 } HTH, Joram ___

Changing midi-tempo within score

2017-01-07 Thread UCas
Hi, at the moment I am working on a medley with changing time signature and tempo. I am able to set midi-tempo in my header-file with \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment miditempo 4) } } but how can I change this tempo within the score?