Tagged Questions

GNU LilyPond is Free Software for engraving music, with a strong emphasis on very high quality output.

learn more… | top users | synonyms

6
votes
1answer
386 views

LilyPond: Extracting pitch names from music

I use LilyPond to create practice scores and etudes. I've figured out how to allow note entry in Moveable Do solfege notation and have a template (see below) that supports displaying the solfege ...
4
votes
2answers
2k views

What is the best way to automatically transpose a LilyPond source file into multiple keys?

problem I'm using LilyPond to typeset sheet music for a church choir to perform. Depending on who is available on any given week, songs will be played in various keys. We have an amazing pianist who ...
3
votes
3answers
291 views

Coloring notes in Lilypond by pitch

lilypond can color notes in a arbitrary way using \override NoteHead #'color = #red c with the default color is black. But I like to color all notes by pitch, so that my kids can more easily learn ...
2
votes
0answers
39 views

Lilypond snippet for a separate coda

I'm hoping to Lilypond something not at all uncommon in pop sheet music but missing from the snippet repository and eluding my search phrases. It's basically an inline block of coda set apart from the ...
2
votes
1answer
59 views

Show measure bars when StaffSymbol #'line-count = #1

(I can't tell if this is meant to be SO or SU, so please move it as necessary.) Lilypond automatically puts in measure bars for me, but only if there's more than one line. I'm writing a part for ...
1
vote
2answers
97 views

Run shell script from Vim with currently open file as argument

I've just started using Vim. Here is a shell script which I use frequenty from within BBedit. #!/bin/sh filename=$(basename "${BB_DOC_PATH##*/}" .ly) directory=${BB_DOC_PATH%/*}/ cd "${directory}" ...
1
vote
2answers
96 views

Shell Script to typeset Lilypond files with Textwrangler

I need a shell script which will allow me to typeset Lilypond files from TextWrangler (A Mac App). So far I have come up with this: #!/bin/sh ...
1
vote
1answer
93 views

Changing all the colors in Lilypond

In Lilypond I can change the color of one type of object with a line like \override Staff.Clef #'color = #(rgb-color 0.4 0.5 0.6) I'd like to have everything in the same (non-default) color, but I ...
1
vote
1answer
79 views

Annotating score with lilypond

I'm using lilypond (2.12.3-1, on mac) and latex to write a short summary on music theory. Therefore I need to annotate a simple scale like in this example picture (I don't need the red squares): ...
1
vote
1answer
251 views

Lilypond: Customize bar lines, recursively, automatically?

I'm working on Carnatic music scores that involve complex time signatures, that will require modified bar lines Pattern for barlines for: 8/4 beats: 1 2 3 4 (dashed bar here) 5, 6 (Dotted Bar) 7, ...
0
votes
1answer
210 views

Change Document Class in LaTeX

I am writing my thesis in LaTeX with lilypond and lilypond-book. The first part of the document is just musical examples and for that, the document class {book} suffices. The second part, however, ...
0
votes
3answers
147 views

Lilypond Mac OS X build issue

I am trying to do a clean build of Lilypond on a clean install of Mac OS X. Dependencies have been installed using Brew. I do ./configure && make all in the Lilypond dir. It gets through the ...
0
votes
1answer
99 views

Check whether a Lilypond (.ly) file is valid with python

Do you know a pythonic simple way to check whether a Lilypond (.ly) file is valid ?