Re: Using \partial with TACET

2015-10-09 Thread Pierre Perol-Schneider
Fine, here it goes: tacet = #(define-music-function (str) (string?) #{ \compressFullBarRests \once\override MultiMeasureRest.expand-limit = #1 \once\override MultiMeasureRestNumber.font-name = "Vera Bold" \once\override

Re: Using \partial with TACET

2015-10-09 Thread David Kastrup
Pierre Perol-Schneider writes: > Hi Andrew, > > How about: > > \version "2.19.28" > > tacet = > #(define-scheme-function (parser location str) (string?) >#{ > \compressFullBarRests You mean define-music-function here, and in version 2.19.28 the

Re: Using \partial with TACET

2015-10-09 Thread Pierre Perol-Schneider
Hi Andrew, How about: \version "2.19.28" tacet = #(define-scheme-function (parser location str) (string?) #{ \compressFullBarRests \once\override MultiMeasureRest.expand-limit = #1 \once\override MultiMeasureRestNumber.font-name = "Vera Bold" \once\override

Using \partial with TACET

2015-10-08 Thread N. Andrew Walsh
Hi List, I'm working on a collection of masses, which I've broken up into a tree of files: each mass is in its own directory, with separate files for each movement and a master file listing all the \includes. There are also now separate files for each movement's \score block, so I can have

Re: Using \partial with TACET

2015-10-08 Thread David Kastrup
"N. Andrew Walsh" writes: > Hi List, > > I'm working on a collection of masses, which I've broken up into a tree of > files: each mass is in its own directory, with separate files for each > movement and a master file listing all the \includes. There are also now >

Re: Using \partial with TACET

2015-10-08 Thread Jacques Menu
Hello A, \version "2.19.28" VITympanoMusic = \new Voice \relative c { \clef bass \partial 8 r8 | R2*54^\markup { \center-align TACET } R2.*29^\markup { \center-align TACET } } { \VITympanoMusic } This has 29 times three quater notes, so if you use the default 4/4, then you get:

Re: Using \partial with TACET

2015-10-08 Thread Jacques Menu
\markup{\huge\bold TACET} solves you second question. > Le 8 oct. 2015 à 18:04, Jacques Menu a écrit : > > Hello A, > > \version "2.19.28" > > VITympanoMusic = \new Voice \relative c { > \clef bass > \partial 8 > r8 | > R2*54^\markup { \center-align TACET } >

Re: Using \partial with TACET

2015-10-08 Thread N. Andrew Walsh
duh, I am A Idiot, sorry. That needed some extra code to work. Here's a more comprehensive version: \version "2.19.28" \time 2/4 VITympanoMusic = \new Voice \relative c { \clef bass \partial 8 r8 | R2*54^\markup { \center-align TACET } R2.*29^\markup { \center-align TACET } }

Re: Using \partial with TACET

2015-10-08 Thread David Kastrup
"N. Andrew Walsh" writes: > duh, I am A Idiot, sorry. That needed some extra code to work. Here's a > more comprehensive version: > > \version "2.19.28" > \time 2/4 [...] Uh, this will set one score containing nothing but the time signature change. But this change

Re: Using \partial with TACET

2015-10-08 Thread N. Andrew Walsh
correct. Each movement has its own \score block, in which the starting meter is set with a single \time command at the top. Subsequent meter changes are handled by the \systembreaks variable. On Thu, Oct 8, 2015 at 9:32 PM, David Kastrup wrote: > "N. Andrew Walsh"