Jump to content

Skips in lyric mode (2): Difference between revisions

From LilyPond wiki
m New category
Tags: Mobile edit Mobile web edit
mNo edit summary
Line 1: Line 1:
Although <code>s</code> skips cannot be used in <code>\lyricmode</code> (it is taken to be a literal “s”, not a space), double quotes (<code>&quot;&quot;</code>) or underscores (<code>_</code>) are available.
Although <samp>s</samp> skips cannot be used in <code>\lyricmode</code> (it is taken to be a literal “s”, not a space), double quotes (<code>&quot;&quot;</code>) or underscores (<code>_</code>) are available.


So for example:
So for example:
Line 10: Line 10:
</lilypond>
</lilypond>


[[Category:Really simple]]
[[Category:Rhythms]]
[[Category:Vocal music]]
[[Category:Vocal music]]
[[Category:Rhythms]]
[[Category:Really simple]]
[[Category:Included in the official documentation]]
[[Category:Included in the official documentation]]
[[Category:Snippet]]
[[Category:Snippet]]

Revision as of 09:35, 8 December 2025

Although s skips cannot be used in \lyricmode (it is taken to be a literal “s”, not a space), double quotes ("") or underscores (_) are available.

So for example:

\version "2.24"

<<
  \relative c'' { a4 b c d }
  \new Lyrics \lyricmode { a4 "" _ gap }
>>