Re: I ought to have a bar line here...

2020-10-26 Thread Thomas Morley
Am Mo., 26. Okt. 2020 um 23:47 Uhr schrieb Carl Sorensen : > > > > On Mon, Oct 26, 2020 at 4:35 PM Thomas Morley > wrote: >> >> Hi Carl, >> >> Am Mo., 26. Okt. 2020 um 23:04 Uhr schrieb Carl Sorensen >> : >> > >> > Try this: >> >> > \defineBarLine ".|:-|." #'("|." ".|:" "") >> >> Though,

Re: I ought to have a bar line here...

2020-10-26 Thread Carl Sorensen
On Mon, Oct 26, 2020 at 4:35 PM Thomas Morley wrote: > Hi Carl, > > Am Mo., 26. Okt. 2020 um 23:04 Uhr schrieb Carl Sorensen < > c_soren...@byu.edu>: > > > > Try this: > > > \defineBarLine ".|:-|." #'("|." ".|:" "") > > Though, \defineBarLine ".|:-|." #'("|." ".|:" #f) _should_ work as well. > >

Re: I ought to have a bar line here...

2020-10-26 Thread Carl Sorensen
On Mon, Oct 26, 2020 at 4:07 PM Mike Dean wrote: > Hi Carl: > Is \include "english.ly" different from \language "english"? > It's an old form that predates \language "english". I'm an old dog, so sometimes I forget the new tricks. At any rate, your snippet didn't include \language "english",

Re: I ought to have a bar line here...

2020-10-26 Thread Thomas Morley
Hi Carl, Am Mo., 26. Okt. 2020 um 23:04 Uhr schrieb Carl Sorensen : > > Try this: > \defineBarLine ".|:-|." #'("|." ".|:" "") Though, \defineBarLine ".|:-|." #'("|." ".|:" #f) _should_ work as well. It's a bug in 'ly:bar-line::calc-anchor' in bar-line.scm, triggered by the RehearsalMark

Re: I ought to have a bar line here...

2020-10-26 Thread Aaron Hill
On 2020-10-26 3:03 pm, Mike Dean wrote: Hi Carl: Is \include "english.ly" different from \language "english"? Part of my residing in the weeds is not being sure where \define command (and its relatives like \defineBarLine) ought to go...while the compilation didn't crash, the bar line

Re: I ought to have a bar line here...

2020-10-26 Thread Mike Dean
4.-\p r16 e a8. e16 gs8. e16 | a4. r16 e a8. e16 gs8. e16 | >> >> a4 c b e | d8. c16 b8. c16 b2 | >> >> a4. r16 e a8. e16 gs8. e16 | a4. r16 e a8. e16 gs8. e16 | >> >> a4 c b e | a,4 a8. a16 a4 r | >> >> } >> >> >> >&g

Re: I ought to have a bar line here...

2020-10-26 Thread Mike Dean
> > a4. r16 e a8. e16 gs8. e16 | a4. r16 e a8. e16 gs8. e16 | > > a4 c b e | a,4 a8. a16 a4 r | > > } > > > > Carl > > > > > > *From: *lilypond-user gmail@gnu.org> on behalf of Mike Dean > *Date: *Monday, October 26, 2020 at 3:30 PM

Re: I ought to have a bar line here...

2020-10-26 Thread Carl Sorensen
a4 c b e | d8. c16 b8. c16 b2 | a4. r16 e a8. e16 gs8. e16 | a4. r16 e a8. e16 gs8. e16 | a4 c b e | a,4 a8. a16 a4 r | } Carl From: lilypond-user on behalf of Mike Dean Date: Monday, October 26, 2020 at 3:30 PM To: "lilypond-user@gnu.org" Subject: Re: I ought to have

Re: I ought to have a bar line here...

2020-10-26 Thread Mike Dean
Still stumped \version "2.20.0" { \alternative { {c c8. c16 c4 r } {c c8. c16 c4\mark "Fine" r \markup \vspace #1 \defineBarLine ".|:-|." #'("|." ".|:" #f) \markup \bold \typewriter "\".|:-|.\"" \bar ".|:-|." } } \break \repeat volta 2 { \bar ".|:"\mark "Trio" a4.\p r16

Re: I ought to have a bar line here...

2020-10-25 Thread Aaron Hill
On 2020-10-25 6:25 am, Christian Masser wrote: Aaron Hill schrieb am So., 25. Okt. 2020, 04:38 You have to use a special bar line type when it breaks across a line: \version "2.20.0" \paper { indent = 0 line-width = 3\cm ragged-right = ##f } \markup \bold \typewriter "\".|:-||\"" { R1

Re: I ought to have a bar line here...

2020-10-25 Thread Christian Masser
Aaron Hill schrieb am So., 25. Okt. 2020, 04:38 > You have to use a special bar line type when it breaks across a line: > > > \version "2.20.0" > \paper { indent = 0 line-width = 3\cm ragged-right = ##f } > > \markup \bold \typewriter "\".|:-||\"" > { R1 \bar ".|:-||" \break R1 } > Out of

Re: I ought to have a bar line here...

2020-10-24 Thread Aaron Hill
On 2020-10-24 5:05 pm, Mike Dean wrote: ...between the end of the first section and the start of the Trio, but have stumped myself in properly coding it (I went to alternative endings to ensure that I had a repeat sign) (PDF and .ly file attached, beside the snippet below) [...] You have to

Re: I ought to have a bar line here...

2020-10-24 Thread David Wright
On Sat 24 Oct 2020 at 17:05:00 (-0700), Mike Dean wrote: > ...between the end of the first section and the start of the Trio, but have > stumped myself in properly coding it (I went to alternative endings to > ensure that I had a repeat sign) > (PDF and .ly file attached, beside the snippet below)

RE: I ought to have a bar line here...

2020-10-24 Thread Mark Stephen Mrotek
: Saturday, October 24, 2020 7:22 PM To: lilypond-user@gnu.org Subject: Re: I ought to have a bar line here... Okay, I tried that, but the desire to start the trio on a new staff is not met: Hoping this wouldn't require a break-visibility command intervention. Mike Dean

Re: I ought to have a bar line here...

2020-10-24 Thread Mike Dean
ove the “\break” the empty staff disappears. > > > > Mark > > > > *From:* lilypond-user [mailto:lilypond-user-bounces+carsonmark= > ca.rr@gnu.org] *On Behalf Of *Mike Dean > *Sent:* Saturday, October 24, 2020 5:05 PM > *To:* lilypond-user@gnu.org > *Subject:* I

RE: I ought to have a bar line here...

2020-10-24 Thread Mark Stephen Mrotek
Mike, When I remove the “\break” the empty staff disappears. Mark From: lilypond-user [mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of Mike Dean Sent: Saturday, October 24, 2020 5:05 PM To: lilypond-user@gnu.org Subject: I ought to have a bar line here

I ought to have a bar line here...

2020-10-24 Thread Mike Dean
...between the end of the first section and the start of the Trio, but have stumped myself in properly coding it (I went to alternative endings to ensure that I had a repeat sign) (PDF and .ly file attached, beside the snippet below) \version "2.20.00" \repeat volta 2 { d2 d8 c d e | f4 f8.