Lilypond: Produce MIDI and PDF output simultaneously - lilypond

When I am evoking lilypond in order to produce midi output, I comment in an empty midi block in the score block. Then, lilypond produces a midifile instead of a PDF file. I want to create both outputs simultaneously to be able to listen to the changes and see the changes in the pdf file. Is this possible? Commenting the midi block in and out becomes a bit cumbersome after a while, and an option to produce both outputs at the same time would help me a lot!
This is an example ly file to demonstrate my workflow:
\score {
\midi {} % Commented out each time I want to produce PDF
\new PianoStaff <<
\new Staff {
\key f \minor
\mp
\relative c''' {
c
}
}
\new Staff {
\relative c {
c
}
}
>>
}

As Ole V.V suggested in his comment, it is possible to create both outputs simultaneously by adding a layout block in the score block as follows:
\score {
\midi {} % Commented out each time I want to produce PDF
\layout{} % Adding this does the trick, thanks to Ole V.V's comment
\new PianoStaff <<
\new Staff {
\key f \minor
\mp
\relative c''' {
c
}
}
\new Staff {
\relative c {
c
}
}
>>
}

Related

Lilypond: How do I insert a bracket in a chord of whole notes in a vocal score to indicate which part an extra note belongs to?

In Lilypond, I am writing a vocal score in closed form (Sop & Alto on top line, Tenor & Bass on bottom) and occasionally I need the parts to divide. This is fine in most cases because the note stems indicate which note belongs to which part, but not when the note has no stem!
The usual method that I've seen is to insert a left square bracket indicating the notes to be grouped together, like so:
I have tried searching the documentation high and low for a snippet or something to do with vertical brackets or braces but unfortunately I can't think of any keywords that don't throw up a lot of false hits.
Can anyone help?
It's done with arpeggios, which can be counterintuitive. Here is the basic setup:
\version "2.24.0"
\score {
\new StaffGroup <<
\override StaffGroup.Arpeggio.stencil = #ly:arpeggio::brew-chord-bracket
\new Staff <<
\new Voice { \voiceOne c''1 }
\new Voice { \voiceTwo g'1 }
>>
\new Staff <<
\clef bass
\new Voice { \voiceThree e' }
\new Voice { \voiceFour <c g>1\arpeggio }
>>
>>
}
You may have to adjust the bracket length, but that's another question.

Lilypond : Adding lyrics into backslash temporary voices

I'm pretty new when it comes to details on Lilypond and I'm stuck on a problem.
Whenever I introduce two new temporary voices with backslash <<{ }\\\\{ }>>, the lyrics skip over those voices :
Lyrics = \lyricmode {Et lux per -- pe -- tu -- a }
\score {
\new ChoirStaff
<<
\new Voice = "soprano"
\relative c' {
\clef treble
c4 f8 f
<<{a a}\\{f f}>>
c'4
}
\new Lyrics \lyricsto "soprano" { \Lyrics }
>>
}
Here is the document: http://lilybin.com/xbi9lm/1
I've tried a lot of things, and one that does something interesting is this:
Lyrics = \lyricmode {Et lux per a }
LyricsTwo = \lyricmode {pe -- tu }
\score {
\new ChoirStaff
<<
\new Voice = "soprano"
\relative c' {
\clef treble
c4 f8 f
<<{a a}\\{f f}\new Lyrics \lyricsto "2" {\LyricsTwo}>>
c'4
}
\new Lyrics \lyricsto "soprano" { \Lyrics }
\new Voice = "alto"
\relative c' {
\clef treble
c1
}
>>
}
Here is the document : http://lilybin.com/xbi9lm/2
Using backslashes for temporary voices creates two voices named "1" and "2" so that's what I've tried, but somehow the lyrics get under the entire score ?
I use them a lot but for very short amount of notes/time.
I'm at a complete loss so if someone has a good solution for integrating lyrics into temporary multiple backslash voices, I'm all ears !
While for keyboard music I also use the << { … } \\ { … } >> notation a lot, for music with lyrics I prefer to give Lilypond one voice onto which to hang the lyrics. I leave out \\, and Lilypond will regard the inside of << … >> as belonging to the same voice. We want only one of the two to belong, so we explicitly declare a different voice for the other.
Lyrics = \lyricmode { Et lux per -- pe -- tu -- a }
\score {
\new ChoirStaff <<
\new Voice = "soprano" \relative c' {
\clef treble
c4 f8 f
<<
{ \voiceOne a a }
\new Voice { \voiceTwo f f }
>>
\oneVoice c'4
}
\new Lyrics \lyricsto "soprano" { \Lyrics }
\new Voice = "alto"
\relative c' {
\clef treble
c1
}
>>
}
Output:
The \voiceOne, \voiceTwo and \oneVoice macros I call are what your double-backslash notation also calls behind the scenes to get the voices look like voice 1 and 2 (mainly the stem directions). I trust you to fix the beaming.

How to create a function to automate header creation?

I have a few transcription to do, using lilypond.
It consists of a few songs, all of the same composer/poet, but there might be more to come.
I already have a few helper functions in a that I include in each score, but I'd like to have a function to automate header creation, something I could call like this:
\mkheader "my song"
or something similar.
This would avoid the need to write
\header {
composer = "the composer of all the songs"
title = "my song"
}
in each song.
Since two days ago, I've been (re-)reading the lilypond documentation, but I can't get it to work. Any ideas?
You are likely needing Include files.
Directory structure:
.
├── my_include.ly
├── my_main.ly
my_include.ly
\header {
composer = "the composer of all the songs"
title = "my song"
}
my_main.ly
\version "2.20.0"
\include "my_include.ly"
melody = \relative c {
\key c \major
\time 4/4
c c c c |
}
\score {
<<
\new Staff { \melody }
>>
}
It might be that you want to add extra information later in your main lilypond file, in which case you just add another header block
my_main.ly
\version "2.20.0"
\include "./my_include.ly"
\header {
subtitle = "my_subtitle"
subsubtitle = "my_subsubtitle"
}
melody = \relative c'' {
\key c \major
\time 4/4
c c c c |
}
\score {
<<
\new Staff { \melody }
>>
}

Lilypond: Adjacent analysis brackets

I need several analysis bracket combinations which are rather unusual (at least I didn't find a lot help in the net). First of all I wanted overlapping analysis brackets, which I managed to achieve already. Now, what I also need is "adjacent brackets", meaning that one bracket ends on a note while on the same note another one starts. So in theory I would need this: "g4\stopGroup\startGroup". However, this results in simply one big bracket. Here is my example code, which currently has the problem that the g4 is in both voices and therefore visible twice, while it should only be there once, but both brackets should include it.
\version "2.19.61"
adjtwo = \relative c'' {
s2 g4\startGroup a b c\stopGroup d e
}
adjone = \relative c' {
\once \override HorizontalBracket #'direction = #UP
e\startGroup f g\stopGroup
}
\score {
\new Staff {
<<
\voiceOne \adjone
\voiceThree \adjtwo
>>
}
}
\layout {
\context {
\Voice
\consists "Horizontal_bracket_engraver"
}
}
Thanks for any help
Best regards
Is this what you're looking for?
\version "2.19.61"
\score {
\relative {
\override HorizontalBracket #'direction = #UP
e'\startGroup f g\stopGroup <>\startGroup a
b c\stopGroup d e
}
}
\layout {
\context {
\Voice
\consists "Horizontal_bracket_engraver"
}
}
A work around to make this, is the following:
put \starGroup and \stopGroup where you need. The unique condition is that you can not put a \stopGroup following a \startGroup. You have to put at least 1 note among their. You can put the \stopGroup after the following note, don't worry
fix the position and length of the bracket that are wrong drawn with \once \override HorizontalBracket.shorten-pair = #'(-3.0 . 1.5).
For your example, you can do the following:
adjone = \relative c' {
\once \override HorizontalBracket #'direction = #UP
e \startGroup f g \stopGroup
\once \override HorizontalBracket.shorten-pair = #'(-3.0 . 1.5)
a \startGroup b c \stopGroup d e
}
\score {
\new Staff {
<<
\voiceOne \adjone
>>
}
}
\layout {
\context {
\Voice
\consists "Horizontal_bracket_engraver"
}
}
And you get this score:
(I can not put images embed yet) Here is the link of the image: https://imgur.com/a/H1gN0wE

LilyPond: Can a double barline follow a multi-measure rest?

I have a multi-measure rest at the end of a piece, and I cannot get a final "|." barline to print. The regular single barline is used instead.
Minimal example:
\score {
\new Staff <<
\compressFullBarRests
R1*62
\bar "|."
>>
}
I'm using version 2.16; the problem exists with 2.17 as well.
This doesn't have anything to do with multi-measure rests. It doesn't work because you had used << >> (which indicate simultaneous music) instead of { } (which indicate sequential music). With << >>, all three commands (\compressFullBarRests, R1*62 and \bar "|.") are processed simultaneously, which means that \bar "|." takes place at moment 0 (at the very beginning of music), not after rests. This will work:
\score {
\new Staff {
\compressFullBarRests
R1*62
\bar "|."
}
}
This does not seem to have anything to do with the multi-measure rest - the |. bar is not printed even if you use a note instead of the multi-measure rest.
Not sure why, but this seems to do the job:
melody =
{
R1*62
\bar "|."
}
\score {
<<
\compressFullBarRests
\new Voice = "one" { \autoBeamOff \melody }
>>
}