New pages
Appearance
30 April 2026
- 16:2716:27, 30 April 2026 Aligning lyrics based on vowels (hist | edit) [4,990 bytes] Gabriel Ellsworth (talk | contribs) (Created page with "This snippet shows how, in music with lyrics, you can align lyrics based on where vowels fall within <code>LyricText</code> items. In each measure of this snippet, '''the first note demonstrates the use of these functions''', and the second note shows LilyPond’s default alignment. '''Source:''' Solution by Kieren MacMillan posted to the mailing list [https://lists.gnu.org/archive/html/lilypond-user/2026-01/msg00334.html in this thread]. The code for this solution was...")
30 March 2026
- 21:3721:37, 30 March 2026 Diagram for Recorder in C (soprano & tenor) (hist | edit) [11,075 bytes] MartialR (talk | contribs) (Diagram for Baroque Recorder in C finguerings) Tag: Visual edit
- 21:0321:03, 30 March 2026 Diagram for Recorder baroque in F and C (hist | edit) [18,903 bytes] MartialR (talk | contribs) (Diagram for Baroque Recorder in F finguerings) originally created as "Recorder diagram"
22 March 2026
- 13:3413:34, 22 March 2026 Splitting chords (hist | edit) [1,764 bytes] Fsarud (talk | contribs) (Some scheme functions to split chords in two (monophonic) voices.) Tag: Visual edit: Switched
11 March 2026
- 08:1508:15, 11 March 2026 Alternate \textSpanner engraver (hist | edit) [10,142 bytes] Lemzwerg (talk | contribs) (Created page with "LilyPond's default text spanner engraver can only handle a single text spanner per voice at a time. The engraver in this snippet provides an alternate implementation to circumvent this limitation; it uses spanner IDs to specify start and end of overlapping text spanners. To use it, replace <code>Text_spanner_engraver</code> with <code>\alternateTextSpannerEngraver</code>. The example below demonstrates two possible ways to specify a spanner ID: either define a new com...")
6 March 2026
- 11:3211:32, 6 March 2026 Slurs with stemless note heads (hist | edit) [1,808 bytes] Gabriel Ellsworth (talk | contribs) (Created page with "If you do not want your notes to have stems, <code>\omit Stem</code> is very useful. But you may find that LilyPond positions the start or end points of some slurs incorrectly. By setting <code>\override NoteHead.stem-attachment = #'(0 . 0)</code> you can move the stem attachment point to the center of the note head, which results in better slur positioning for stemless note heads. Source of music: [https://archive.org/details/manualofgregoria00dela/page/266/mode/1up A...") Tag: Visual edit: Switched
27 February 2026
- 23:4323:43, 27 February 2026 Expect a warning several times (hist | edit) [928 bytes] Ksnortum (talk | contribs) (Scheme function to suppress several warnings) Tag: Visual edit: Switched
26 February 2026
- 11:4311:43, 26 February 2026 Separating footers with a horizontal line (hist | edit) [1,996 bytes] SimonAlbrecht (talk | contribs) (New snippet: Separating footers with a horizontal line) Tag: Visual edit: Switched
20 February 2026
- 12:2512:25, 20 February 2026 Text and translation template (hist | edit) [3,886 bytes] Gabriel Ellsworth (talk | contribs) (Created page with "This snippet shows an example of how you can typeset a <code>\markup</code> block before or after your score to display your piece’s text, a translation, and (if desired) a transcription in IPA (the International Phonetic Alphabet). Source: Vaughan McAlley via the lilypond-user mailing list (posted to the LilyPond wiki with his permission). See also Typesetting IPA transcriptions for lyrics. <lilypond version="2.24"> \markup \abs-fontsize #10 { \left-column {...")
18 February 2026
- 17:0517:05, 18 February 2026 Frescobaldi (hist | edit) [580 bytes] Ksnortum (talk | contribs) (Frescobaldi is a GUI editor for LilyPond)
- 16:3316:33, 18 February 2026 Displaying LilyPond's data directory (hist | edit) [440 bytes] Ksnortum (talk | contribs) (How to display LilyPond's data directory)
13 February 2026
- 14:4114:41, 13 February 2026 SubFinger (hist | edit) [541 bytes] MartialR (talk | contribs) (sign for harp turn finger - (signe de changement de doigt pour la harpe) -)
31 January 2026
- 12:1612:16, 31 January 2026 Typesetting IPA transcriptions for lyrics (hist | edit) [5,367 bytes] Gabriel Ellsworth (talk | contribs) (Created page with "Singers may find it useful if you add International Phonetic Alphabet (IPA) transcriptions to some or all of your lyrics. This snippet shows four ways to typeset IPA transcriptions in LilyPond. # As a '''stanza of lyrics'''. This approach works well when you want '''exhaustive IPA''' (i.e., transcriptions of every lyric). # In a '''markup block''' separate from your score. Also good for exhaustive IPA. Tip: As you are editing, you can [https://lilypond.org/doc/v2.25/Docu...")
29 January 2026
- 22:3622:36, 29 January 2026 Grouping instrument names with square brackets (hist | edit) [1,985 bytes] Gabriel Ellsworth (talk | contribs) (Created page with "If you want to label a group of instruments (staves, voices), you can draw lines to create your own shapes that mimic the appearance of the square brackets used by the <code>SystemStartSquare</code> system start delimiter (see [https://lilypond.org/doc/v2.24/Documentation/notation/displaying-staves#grouping-staves “Grouping staves” in the Notation Reference]). Adjust the numerical values in the <code>\score</code> block below as needed for your score. <lilypond vers...") Tag: Visual edit: Switched
28 January 2026
- 22:4722:47, 28 January 2026 Making lyrics take bar lines into account (hist | edit) [3,003 bytes] Gabriel Ellsworth (talk | contribs) (Created page with "By default, Lyrics contexts do not contain <code>Bar_engraver</code>, so your lyrics will not take into account divisions between measures. Longer lyric items will appear to “spill across” bar lines. This snippet shows how you can add <code>Bar_engraver</code> to lyrics and hide bar lines, so that each individual lyric will be contained within the horizontal space between two consecutive bar lines. This approach can have undesirable effects on the horizontal spacin...") Tag: Visual edit: Switched
- 15:4815:48, 28 January 2026 Unmetered music: An alternative to \cadenzaOn (hist | edit) [4,232 bytes] Gabriel Ellsworth (talk | contribs) (Created page with "If your music is unmetered, you might use <code>\cadenzaOn</code>. But <code>\cadenzaOn</code> will disable automatic measure demarcation, and when it is applied, the <code>\bar</code> command will ''not'' start a new measure. <u>If you want the features that come with measure demarcation</u> (e.g., resetting '''accidentals''', automatic '''bar numbering''', automatic '''beaming'''), the following approach may be useful. It combines <code>\omit TimeSignature</code> with...") Tag: Visual edit: Switched