Titles
Titles and headers
Añadir la fecha actual a una partitura
Con algo de código de Scheme, se puede añadir fácilmente la fecha
actual a una partitura.
% first, define a variable to hold the formatted date:
date = #(strftime "%d-%m-%Y" (localtime (current-time)))
% use it in the title block:
\header {
= "Including the date!"
= \date
}
\score {
\relative c'' {
c4 c c c
}
}
% and use it in a \markup block:
\markup {
\date
}
Alinear y centrar los nombres de instrumento
La alineación horizontal de los nombres de instrumento se puede
trucar modificando la propiedad Staff.InstrumentName
#'self-alignment-X
. Las variables de \layout
indent
y short-indent
definen el espacio en que se
alinean los nombres de instrumento antes del primer sistema y de
los siguientes, respectivamente.
\paper { left-margin = 3\cm }
\score {
\new StaffGroup <<
\new Staff \with {
\override InstrumentName.self-alignment-X = #LEFT
instrumentName = \markup \left-column {
"Left aligned"
"instrument name"
}
shortInstrumentName = "Left"
}
{ c''1 \break c''1 }
\new Staff \with {
\override InstrumentName.self-alignment-X = #CENTER
instrumentName = \markup \center-column {
Centered
"instrument name"
}
shortInstrumentName = "Centered"
}
{ g'1 g'1}
\new Staff \with {
\override InstrumentName.self-alignment-X = #RIGHT
instrumentName = \markup \right-column {
"Right aligned"
"instrument name"
}
shortInstrumentName = "Right"
}
{ e'1 e'1 }
>>
\layout {
ragged-right = ##t
indent = 4\cm
short-indent = 2\cm
}
}
Muestra de cada uno de los encabezamientos posibles
Muestra de todos los tipos de encabezamiento.
\header {
= "copyright"
= "title"
= "subtitle"
= "composer"
= "arranger"
= "instrument"
= "meter"
= "opus"
= "piece"
= "poet"
= "All header fields with special meanings."
= "public domain"
enteredby = "jcn"
source = "urtext"
}
\layout {
ragged-right = ##f
}
\score {
\relative c'' { c1 | c | c | c }
}
\score {
\relative c'' { c1 | c | c | c }
\header {
= "localtitle"
= "localsubtitle"
= "localcomposer"
= "localarranger"
= "localinstrument"
metre = "localmetre"
= "localopus"
= "localpiece"
= "localpoet"
= "localcopyright"
}
}
Imprimir el número de versión
Introduciendo la salida de lilypond-version
en la letra de una
canción, es posible imprimir el número de versión de LilyPond dentro
de una partitura, o en un documento generado con lilypond-book
.
Otra posibillidad es añadir el número de versión al final de la
doc-string, de esta forma:
\markup { Processed with LilyPond version #(lilypond-version) }