Re: Transcriber title

2018-01-22 Thread Torsten Hämmerle
Hi Álvaro,

In the very likely case that you're using custom title markup anyway, I'd
like to mention the possibility of simply adding any desired non-standard
header variable to the \header section:

\header {
  transcriber = "Álvaro Cáceres Muñoz"
}

...and retrieving it later in your custom
bookTitleMarkup/scoreTitleMarkup/evenHeaderMarkup etc. exactly like any
other standard \header variable:

\fromproperty #'header:transcriber

On custom title markup, please refer to:
3.2.2 Custom titles headers and footers

  

HTH,
Torsten




--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

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


Re: Transcriber title

2018-01-21 Thread Malte Meyn



Am 22.01.2018 um 06:49 schrieb Brian Barker:

   arranger = \markup {
     \column {
   \fill-line { " " "Arranger: Jacob Collier" }
   \fill-line { " " "Transcriber: Álvaro Cáceres Muñoz" }
     }
   }


More simple solution for the same effect (but maybe with less side 
effects in case there is some other header on the left side):


  arranger = \markup \right-column {
"Arranger: Jacob Collier"
"Transcriber: Álvaro Cáceres Muñoz"
  }

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


Re: Transcriber title

2018-01-21 Thread Brian Barker

At 01:17 22/01/2018 +0100, Álvaro Cáceres Muñoz wrote:
I am transcribing Jacob Collier's arrangement of 
I've Told Every Little Star. Normally I make my 
own arrangements of songs, so I write in the 
"composer" and "arranger" titles. However, here 
I would need to name the original composer 
(Jerome Kern), the arranger (Jacob Collier) and 
the transcriber (me). I have looked at the 
Lilypond manual, but I can't find a specific 
title for the transcriber. Is it possible to 
create a specific field for the transcriber?


You may not need to. How about something like:

\version "2.18.2"
\header {
  composer = "Composer: Jerome Kern"
  arranger = \markup {
\column {
  \fill-line { " " "Arranger: Jacob Collier" }
  \fill-line { " " "Transcriber: Álvaro Cáceres Muñoz" }
}
  }
}
{ s1 }

Brian Barker 



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