<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.lilypond.community/index.php?action=history&amp;feed=atom&amp;title=Slurs_with_stemless_note_heads</id>
	<title>Slurs with stemless note heads - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.lilypond.community/index.php?action=history&amp;feed=atom&amp;title=Slurs_with_stemless_note_heads"/>
	<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Slurs_with_stemless_note_heads&amp;action=history"/>
	<updated>2026-05-01T08:09:33Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Slurs_with_stemless_note_heads&amp;diff=6427&amp;oldid=prev</id>
		<title>Gabriel Ellsworth: Created page with &quot;If you do not want your notes to have stems, &lt;code&gt;\omit Stem&lt;/code&gt; is very useful. But you may find that LilyPond positions the start or end points of some slurs incorrectly.  By setting &lt;code&gt;\override NoteHead.stem-attachment = #&#039;(0 . 0)&lt;/code&gt; 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...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Slurs_with_stemless_note_heads&amp;diff=6427&amp;oldid=prev"/>
		<updated>2026-03-06T11:32:58Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;If you do not want your notes to have stems, &amp;lt;code&amp;gt;\omit Stem&amp;lt;/code&amp;gt; is very useful. But you may find that LilyPond positions the start or end points of some slurs incorrectly.  By setting &amp;lt;code&amp;gt;\override NoteHead.stem-attachment = #&amp;#039;(0 . 0)&amp;lt;/code&amp;gt; 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...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;If you do not want your notes to have stems, &amp;lt;code&amp;gt;\omit Stem&amp;lt;/code&amp;gt; is very useful. But you may find that LilyPond positions the start or end points of some slurs incorrectly.&lt;br /&gt;
&lt;br /&gt;
By setting &amp;lt;code&amp;gt;\override NoteHead.stem-attachment = #&amp;#039;(0 . 0)&amp;lt;/code&amp;gt; you can move the stem attachment point to the center of the note head, which results in better slur positioning for stemless note heads.&lt;br /&gt;
&lt;br /&gt;
Source of music: [https://archive.org/details/manualofgregoria00dela/page/266/mode/1up A manual of Gregorian chant compiled from the Solesmes books and from ancient manuscripts].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt;&lt;br /&gt;
chant = \relative c&amp;#039; {&lt;br /&gt;
  \key d \dorian&lt;br /&gt;
  \slurUp&lt;br /&gt;
  &lt;br /&gt;
  \time 18/4&lt;br /&gt;
  d( a&amp;#039;) g( f g) a( bes) a2&lt;br /&gt;
  a4 g( f) g( f) d2( f) | \bar &amp;quot;,&amp;quot;&lt;br /&gt;
  &lt;br /&gt;
  \time 17/4 a4 a( g f) g( f a) a2&lt;br /&gt;
  a4 c( b g) b( c a2) | \bar &amp;quot;&amp;#039;&amp;quot;&lt;br /&gt;
  &lt;br /&gt;
  \time 20/4&lt;br /&gt;
  d4( c b g) b( c a) ~&lt;br /&gt;
  a( g f) g( a d,) ~&lt;br /&gt;
  d( c f) e( d) d2 | \bar &amp;quot;||&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
words = \lyricmode {&lt;br /&gt;
  Ad -- o -- ré -- mus&lt;br /&gt;
  in ae -- tér -- num&lt;br /&gt;
  sanc -- tís -- si -- mum&lt;br /&gt;
  Sa -- cra -- _ _ _ _ mén -- tum.&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
% Top-level layout (applying to all scores):&lt;br /&gt;
\layout {&lt;br /&gt;
  \set Score.forbidBreakBetweenBarLines = ##f&lt;br /&gt;
  \omit Score.TimeSignature&lt;br /&gt;
  \context {&lt;br /&gt;
    \Voice&lt;br /&gt;
    \consists Melody_engraver&lt;br /&gt;
    \omit Stem&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
scoreContent = &amp;lt;&amp;lt; \new Voice = &amp;quot;chant&amp;quot; \chant&lt;br /&gt;
   \new Lyrics \lyricsto chant \words &amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
\markup { \circle 1 LilyPond’s default: }&lt;br /&gt;
\score {&lt;br /&gt;
  \scoreContent&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
\markup { \circle 2 With adjustment to stem-attachment: }&lt;br /&gt;
\score {&lt;br /&gt;
  % score-specific layout:&lt;br /&gt;
  \layout {&lt;br /&gt;
    \context {&lt;br /&gt;
      \Voice&lt;br /&gt;
      \override NoteHead.stem-attachment = #&amp;#039;(0 . 0)&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
  \scoreContent&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Ancient notation]]&lt;br /&gt;
[[Category:Connecting notes]]&lt;br /&gt;
[[Category:Expressive marks]]&lt;br /&gt;
[[Category:Real music]]&lt;br /&gt;
[[Category:Snippet]]&lt;br /&gt;
[[Category:Tweaks and overrides]]&lt;br /&gt;
[[Category:Vocal music]]&lt;/div&gt;</summary>
		<author><name>Gabriel Ellsworth</name></author>
	</entry>
</feed>