Jump to content

New pages

New pages
Hide registered users | Hide bots | Hide redirects

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

22 March 2026

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

26 February 2026

20 February 2026

18 February 2026

13 February 2026

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