Re: Conflict with "poet" and "Composer"

2017-03-30 Thread Son_V
Just maybe to the wings of a butterfly. I got what I would (not at the best)
by using Abraham suggestion.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Conflict-with-poet-and-Composer-tp201761p201777.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Conflict with "poet" and "Composer"

2017-03-30 Thread Jeffery Shivers
Who in the world is this addressed to?

On Thu, Mar 30, 2017 at 5:31 PM, Son_V  wrote:
> Hi, I've tried to use your solution, bu I didn't got a good file; if I send
> it to you, may you work on it to obtain what I would?
> Thanks.

-- 

Jeffery Shivers
 jefferyshivers.com
 soundcloud.com/jefferyshivers

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Conflict with "poet" and "Composer"

2017-03-30 Thread Son_V
Hi, I've tried to use your solution, bu I didn't got a good file; if I send
it to you, may you work on it to obtain what I would?
Thanks.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Conflict-with-poet-and-Composer-tp201761p201774.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Conflict with "poet" and "Composer"

2017-03-30 Thread Son_V
Sorry I would have answered to another person. Excuse me.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Conflict-with-poet-and-Composer-tp201761p201773.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Conflict with "poet" and "Composer"

2017-03-30 Thread Thomas Morley
2017-03-30 22:51 GMT+02:00 Son_V :
> Hi, I've tried to use your solution, bu I didn't got a working file; if I
> send it to you, may you work on it to obtain what I would?


Hi,

first, please make clear whom you adress. You likely mean me, at least
I think so.

And no, I'll not work on your file, but we could discuss the method
how you could integrate a suggestion you received into your file.

But we should agree _which_ suggestion you want to test. I posted four
different ones.
Which of them?

Cheers,
  Harm

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Conflict with "poet" and "Composer"

2017-03-30 Thread Son_V
Hi, I've tried to use your solution, bu I didn't got a working file; if I
send it to you, may you work on it to obtain what I would?



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Conflict-with-poet-and-Composer-tp201761p201769.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Conflict with "poet" and "Composer"

2017-03-30 Thread Thomas Morley
2017-03-30 20:43 GMT+02:00 Son_V :
> Hi,
> if the field in "poet = " is too long, the words mix over the words of the
> field "composer = ".
>
> How can I get rid of this? Thanks.

The default bookTitleMarkup (see titling-init.ly) prints poet and
composer in one line.

Basically like: \markup fill-line { "poet" "composer" }

Thus, long words/expressions collide:

\markup \fill-line {
"long"
"looger"
}


You have several possibilities to tackle this:
(1) Break the expressions in two or more lines as suggested by Abraham
(2) Try a smaller fontsize

\header {
  title = "Jesu Rex admirabilis"
  poet = \markup \fontsize #-1 "Simone Verovio (1575 – 1607) - dal
'Diletto Spirituale'"
  composer = \markup \fontsize #-1 "Attrib. Giovanni Pierluigi da
Palestrina (1525 ca. – 1594)"

  tagline = "24 marzo 2017"
}

\markup \null

(3) Try a narrow font

\header {
  title = "Jesu Rex admirabilis"
  poet =
\markup
  \override #'(font-name . "Times New Roman,")
  "Simone Verovio (1575 – 1607) - dal 'Diletto Spirituale'"
  composer =
\markup
  \override #'(font-name . "Times New Roman,")
  "Attrib. Giovanni Pierluigi da Palestrina (1525 ca. – 1594)"

  tagline = "24 marzo 2017"
}

\markup \null

(4) Redefine bookTitleMarkup

myBookTitleMarkup =\markup {
\override #'(baseline-skip . 3.5)
\column {
  \fill-line { \fromproperty #'header:dedication }
  \override #'(baseline-skip . 3.5)
  \column {
\fill-line {
  \huge \larger \larger \bold
  \fromproperty #'header:title
}
\fill-line {
  \large \bold
  \fromproperty #'header:subtitle
}
\fill-line {
  \smaller \bold
  \fromproperty #'header:subsubtitle
}
%% changed from here
\fill-line {
  \large \bold \fromproperty #'header:instrument
}
\fill-line {
  \fromproperty #'header:poet
  \null
}
\fill-line {
  \null
  \fromproperty #'header:composer
}
%% until here
\fill-line {
  \fromproperty #'header:meter
  \fromproperty #'header:arranger
}
  }
}
  }

\paper {
  bookTitleMarkup = \myBookTitleMarkup
}

\header {
  title = "Jesu Rex admirabilis"
  poet = "Simone Verovio (1575 – 1607) - dal 'Diletto Spirituale'"
  composer = "Attrib. Giovanni Pierluigi da Palestrina (1525 ca. – 1594)"
  instrument = "whatever-instrument/voice"

  tagline = "24 marzo 2017"
}

\markup \null

HTH,
  Harm

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Conflict with "poet" and "Composer"

2017-03-30 Thread tisimst
On Thu, Mar 30, 2017 at 1:24 PM, Son_V [via Lilypond] <
ml-node+s1069038n201763...@n5.nabble.com> wrote:

> \header {
>   title = "Jesu Rex admirabilis"
>poet = "Simone Verovio (1575 – 1607) - dal 'Diletto Spirituale'"
>composer = "Attrib. Giovanni Pierluigi da Palestrina (1525 ca. – 1594)"
>
>   tagline = "24 marzo 2017"
> }
>
> But even if Frescobaldi says that it has been successfully completed, I
> don't see any pdf output.
>

Why? Because there's no \score or \markup anywhere. A lone \header block
prints nothing, so the file will compile just fine, but there's no output
without other content.

I'd recommend splitting the strings inside a \markup like:

poet = \markup {
  \left-column {
"Simone Verovio (1575 – 1607)"
" - dal 'Diletto Spirituale'"
  }
}

and the same for composer.

HTH,
Abraham




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Conflict-with-poet-and-Composer-tp201761p201764.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Conflict with "poet" and "Composer"

2017-03-30 Thread Son_V
\header {
  title = "Jesu Rex admirabilis"
   poet = "Simone Verovio (1575 – 1607) - dal 'Diletto Spirituale'"
   composer = "Attrib. Giovanni Pierluigi da Palestrina (1525 ca. – 1594)"
  
  tagline = "24 marzo 2017" 
}

But even if Frescobaldi says that it has been successfully completed, I
don't see any pdf output.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Conflict-with-poet-and-Composer-tp201761p201763.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Conflict with "poet" and "Composer"

2017-03-30 Thread Jacques Menu Muzhic
Hello Son,

Can you supply a minimal example?

JM

> Le 30 mars 2017 à 20:43, Son_V <vincenzo.a...@gmail.com> a écrit :
> 
> Hi,
> if the field in "poet = " is too long, the words mix over the words of the
> field "composer = ".
> 
> How can I get rid of this? Thanks.
> 
> 
> 
> --
> View this message in context: 
> http://lilypond.1069038.n5.nabble.com/Conflict-with-poet-and-Composer-tp201761.html
> Sent from the User mailing list archive at Nabble.com.
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Conflict with "poet" and "Composer"

2017-03-30 Thread Son_V
Hi,
if the field in "poet = " is too long, the words mix over the words of the
field "composer = ".

How can I get rid of this? Thanks.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Conflict-with-poet-and-Composer-tp201761.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user