<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.lilypond.community/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Schrodinger-s-kitten</id>
	<title>LilyPond wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.lilypond.community/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Schrodinger-s-kitten"/>
	<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/wiki/Special:Contributions/Schrodinger-s-kitten"/>
	<updated>2026-05-03T07:48:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Unfolding_tremolo_repeats&amp;diff=5934</id>
		<title>Unfolding tremolo repeats</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Unfolding_tremolo_repeats&amp;diff=5934"/>
		<updated>2025-12-23T22:20:25Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: removed &amp;quot;tweaks and overrides&amp;quot; cat&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Under normal circumstances, &amp;lt;code&amp;gt;&amp;lt;note&amp;gt;:&amp;lt;duration&amp;gt;&amp;lt;/code&amp;gt;, the shortcut of &amp;lt;code&amp;gt;\repeat tremolo&amp;lt;/code&amp;gt; is not unfolded by &amp;lt;code&amp;gt;\unfoldRepeats&amp;lt;/code&amp;gt;. This function works around that:&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt;&lt;br /&gt;
fixTremolos =&lt;br /&gt;
#(define-music-function (music) (ly:music?)&lt;br /&gt;
   (music-map&lt;br /&gt;
    (lambda (m)&lt;br /&gt;
      (let ((event (any (lambda (a)&lt;br /&gt;
                          (and (music-is-of-type? a &#039;tremolo-event)&lt;br /&gt;
                               a))&lt;br /&gt;
                        (ly:music-property m &#039;articulations))))&lt;br /&gt;
        (if event&lt;br /&gt;
            (let* ((total-tremolo-duration (ly:music-property m &#039;duration))&lt;br /&gt;
                   (tremolo-type (ly:music-property event &#039;tremolo-type))&lt;br /&gt;
                   (one-tremolo-note-duration (ly:make-duration (ly:intlog2 tremolo-type)))&lt;br /&gt;
                    (tremolo-note-count (/ tremolo-type (expt 2 (ly:duration-log total-tremolo-duration)))))&lt;br /&gt;
              (set! (ly:music-property m &#039;duration)&lt;br /&gt;
                    one-tremolo-note-duration)&lt;br /&gt;
              (set! (ly:music-property m &#039;articulations)&lt;br /&gt;
                    (delete! event (ly:music-property m &#039;articulations)))&lt;br /&gt;
              (make-music &#039;TremoloRepeatedMusic&lt;br /&gt;
                          &#039;repeat-count tremolo-note-count&lt;br /&gt;
                          &#039;element m))&lt;br /&gt;
            m)))&lt;br /&gt;
    music))&lt;br /&gt;
&lt;br /&gt;
unfoldRepeats = \unfoldRepeats #&#039;() \fixTremolos \etc&lt;br /&gt;
&lt;br /&gt;
music = { \repeat tremolo 8 c&#039;16 c&#039;2:16 }&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
  \unfoldRepeats \music&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
[[Category:Repeats]]&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Giving_fingerings_extra_space&amp;diff=5933</id>
		<title>Giving fingerings extra space</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Giving_fingerings_extra_space&amp;diff=5933"/>
		<updated>2025-12-23T22:19:36Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: Created page with &amp;quot;Fingerings placed to the left of note heads can sometimes look too close to previous note heads. It is possible to use the &amp;lt;code&amp;gt;extra-spacing-width&amp;lt;/code&amp;gt; property to fix this:  &amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt; \paper {   indent = #0   ragged-right = ##t }  \relative c&amp;#039;&amp;#039; {   \set fingeringOrientations = #&amp;#039;(left)   c4 c c &amp;lt;cis-3&amp;gt;   \break   c4 c c   &amp;lt;cis \tweak Fingering.extra-spacing-width #&amp;#039;(-1 . 0) -3&amp;gt; } &amp;lt;/lilypond&amp;gt; Category:Tweaks and overrides Category:Chords Cat...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Fingerings placed to the left of note heads can sometimes look too close to previous note heads. It is possible to use the &amp;lt;code&amp;gt;extra-spacing-width&amp;lt;/code&amp;gt; property to fix this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt;&lt;br /&gt;
\paper {&lt;br /&gt;
  indent = #0&lt;br /&gt;
  ragged-right = ##t&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
\relative c&#039;&#039; {&lt;br /&gt;
  \set fingeringOrientations = #&#039;(left)&lt;br /&gt;
  c4 c c &amp;lt;cis-3&amp;gt;&lt;br /&gt;
  \break&lt;br /&gt;
  c4 c c&lt;br /&gt;
  &amp;lt;cis \tweak Fingering.extra-spacing-width #&#039;(-1 . 0) -3&amp;gt;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
[[Category:Tweaks and overrides]]&lt;br /&gt;
[[Category:Chords]]&lt;br /&gt;
[[Category:Editorial annotations]]&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Aligning_text_marks_to_notes&amp;diff=5932</id>
		<title>Aligning text marks to notes</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Aligning_text_marks_to_notes&amp;diff=5932"/>
		<updated>2025-12-23T22:07:17Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: added &amp;quot;really simple&amp;quot; cat&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By default, &amp;lt;code&amp;gt;TextMark&amp;lt;/code&amp;gt; objects are aligned to the left edge of the staff. They can be aligned to the first note of the line instead by setting the &amp;lt;code&amp;gt;non-musical&amp;lt;/code&amp;gt; property to false.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt;&lt;br /&gt;
\paper {&lt;br /&gt;
  indent = #0&lt;br /&gt;
  ragged-right = ##t&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
  \textMark &amp;quot;mark a&amp;quot;&lt;br /&gt;
  c&#039;1 |&lt;br /&gt;
  \break&lt;br /&gt;
  \override Score.TextMark.non-musical = ##f&lt;br /&gt;
  \textMark &amp;quot;mark b&amp;quot;&lt;br /&gt;
  c&#039; |&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
[[Category:Tweaks and overrides]]&lt;br /&gt;
[[Category:Text]]&lt;br /&gt;
[[Category:Really simple]]&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Unfolding_tremolo_repeats&amp;diff=5931</id>
		<title>Unfolding tremolo repeats</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Unfolding_tremolo_repeats&amp;diff=5931"/>
		<updated>2025-12-23T22:06:35Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: added categories&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Under normal circumstances, &amp;lt;code&amp;gt;&amp;lt;note&amp;gt;:&amp;lt;duration&amp;gt;&amp;lt;/code&amp;gt;, the shortcut of &amp;lt;code&amp;gt;\repeat tremolo&amp;lt;/code&amp;gt; is not unfolded by &amp;lt;code&amp;gt;\unfoldRepeats&amp;lt;/code&amp;gt;. This function works around that:&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt;&lt;br /&gt;
fixTremolos =&lt;br /&gt;
#(define-music-function (music) (ly:music?)&lt;br /&gt;
   (music-map&lt;br /&gt;
    (lambda (m)&lt;br /&gt;
      (let ((event (any (lambda (a)&lt;br /&gt;
                          (and (music-is-of-type? a &#039;tremolo-event)&lt;br /&gt;
                               a))&lt;br /&gt;
                        (ly:music-property m &#039;articulations))))&lt;br /&gt;
        (if event&lt;br /&gt;
            (let* ((total-tremolo-duration (ly:music-property m &#039;duration))&lt;br /&gt;
                   (tremolo-type (ly:music-property event &#039;tremolo-type))&lt;br /&gt;
                   (one-tremolo-note-duration (ly:make-duration (ly:intlog2 tremolo-type)))&lt;br /&gt;
                    (tremolo-note-count (/ tremolo-type (expt 2 (ly:duration-log total-tremolo-duration)))))&lt;br /&gt;
              (set! (ly:music-property m &#039;duration)&lt;br /&gt;
                    one-tremolo-note-duration)&lt;br /&gt;
              (set! (ly:music-property m &#039;articulations)&lt;br /&gt;
                    (delete! event (ly:music-property m &#039;articulations)))&lt;br /&gt;
              (make-music &#039;TremoloRepeatedMusic&lt;br /&gt;
                          &#039;repeat-count tremolo-note-count&lt;br /&gt;
                          &#039;element m))&lt;br /&gt;
            m)))&lt;br /&gt;
    music))&lt;br /&gt;
&lt;br /&gt;
unfoldRepeats = \unfoldRepeats #&#039;() \fixTremolos \etc&lt;br /&gt;
&lt;br /&gt;
music = { \repeat tremolo 8 c&#039;16 c&#039;2:16 }&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
  \unfoldRepeats \music&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
[[Category:Repeats]]&lt;br /&gt;
[[Category:Tweaks and overrides]]&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Unfolding_tremolo_repeats&amp;diff=5930</id>
		<title>Unfolding tremolo repeats</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Unfolding_tremolo_repeats&amp;diff=5930"/>
		<updated>2025-12-23T22:04:28Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: Created page with &amp;quot;Under normal circumstances, &amp;lt;code&amp;gt;&amp;lt;note&amp;gt;:&amp;lt;duration&amp;gt;&amp;lt;/code&amp;gt;, the shortcut of &amp;lt;code&amp;gt;\repeat tremolo&amp;lt;/code&amp;gt; is not unfolded by &amp;lt;code&amp;gt;\unfoldRepeats&amp;lt;/code&amp;gt;. This function works around that: &amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt; fixTremolos = #(define-music-function (music) (ly:music?)    (music-map     (lambda (m)       (let ((event (any (lambda (a)                           (and (music-is-of-type? a &amp;#039;tremolo-event)                                a))                         (ly:music-pr...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Under normal circumstances, &amp;lt;code&amp;gt;&amp;lt;note&amp;gt;:&amp;lt;duration&amp;gt;&amp;lt;/code&amp;gt;, the shortcut of &amp;lt;code&amp;gt;\repeat tremolo&amp;lt;/code&amp;gt; is not unfolded by &amp;lt;code&amp;gt;\unfoldRepeats&amp;lt;/code&amp;gt;. This function works around that:&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt;&lt;br /&gt;
fixTremolos =&lt;br /&gt;
#(define-music-function (music) (ly:music?)&lt;br /&gt;
   (music-map&lt;br /&gt;
    (lambda (m)&lt;br /&gt;
      (let ((event (any (lambda (a)&lt;br /&gt;
                          (and (music-is-of-type? a &#039;tremolo-event)&lt;br /&gt;
                               a))&lt;br /&gt;
                        (ly:music-property m &#039;articulations))))&lt;br /&gt;
        (if event&lt;br /&gt;
            (let* ((total-tremolo-duration (ly:music-property m &#039;duration))&lt;br /&gt;
                   (tremolo-type (ly:music-property event &#039;tremolo-type))&lt;br /&gt;
                   (one-tremolo-note-duration (ly:make-duration (ly:intlog2 tremolo-type)))&lt;br /&gt;
                    (tremolo-note-count (/ tremolo-type (expt 2 (ly:duration-log total-tremolo-duration)))))&lt;br /&gt;
              (set! (ly:music-property m &#039;duration)&lt;br /&gt;
                    one-tremolo-note-duration)&lt;br /&gt;
              (set! (ly:music-property m &#039;articulations)&lt;br /&gt;
                    (delete! event (ly:music-property m &#039;articulations)))&lt;br /&gt;
              (make-music &#039;TremoloRepeatedMusic&lt;br /&gt;
                          &#039;repeat-count tremolo-note-count&lt;br /&gt;
                          &#039;element m))&lt;br /&gt;
            m)))&lt;br /&gt;
    music))&lt;br /&gt;
&lt;br /&gt;
unfoldRepeats = \unfoldRepeats #&#039;() \fixTremolos \etc&lt;br /&gt;
&lt;br /&gt;
music = { \repeat tremolo 8 c&#039;16 c&#039;2:16 }&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
  \unfoldRepeats \music&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Aligning_text_marks_to_notes&amp;diff=5929</id>
		<title>Aligning text marks to notes</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Aligning_text_marks_to_notes&amp;diff=5929"/>
		<updated>2025-12-23T21:19:17Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: added categories&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By default, &amp;lt;code&amp;gt;TextMark&amp;lt;/code&amp;gt; objects are aligned to the left edge of the staff. They can be aligned to the first note of the line instead by setting the &amp;lt;code&amp;gt;non-musical&amp;lt;/code&amp;gt; property to false.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt;&lt;br /&gt;
\paper {&lt;br /&gt;
  indent = #0&lt;br /&gt;
  ragged-right = ##t&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
  \textMark &amp;quot;mark a&amp;quot;&lt;br /&gt;
  c&#039;1 |&lt;br /&gt;
  \break&lt;br /&gt;
  \override Score.TextMark.non-musical = ##f&lt;br /&gt;
  \textMark &amp;quot;mark b&amp;quot;&lt;br /&gt;
  c&#039; |&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
[[Category:Tweaks and overrides]]&lt;br /&gt;
[[Category:Text]]&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Aligning_text_marks_to_notes&amp;diff=5928</id>
		<title>Aligning text marks to notes</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Aligning_text_marks_to_notes&amp;diff=5928"/>
		<updated>2025-12-23T21:16:48Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: Created page with &amp;quot;By default, &amp;lt;code&amp;gt;TextMark&amp;lt;/code&amp;gt; objects are aligned to the left edge of the staff. They can be aligned to the first note of the line instead by setting the &amp;lt;code&amp;gt;non-musical&amp;lt;/code&amp;gt; property to false.  &amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt; \paper {   indent = #0   ragged-right = ##t }  {   \textMark &amp;quot;mark a&amp;quot;   c&amp;#039;1 |   \break   \override Score.TextMark.non-musical = ##f   \textMark &amp;quot;mark b&amp;quot;   c&amp;#039; | } &amp;lt;/lilypond&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By default, &amp;lt;code&amp;gt;TextMark&amp;lt;/code&amp;gt; objects are aligned to the left edge of the staff. They can be aligned to the first note of the line instead by setting the &amp;lt;code&amp;gt;non-musical&amp;lt;/code&amp;gt; property to false.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt;&lt;br /&gt;
\paper {&lt;br /&gt;
  indent = #0&lt;br /&gt;
  ragged-right = ##t&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
  \textMark &amp;quot;mark a&amp;quot;&lt;br /&gt;
  c&#039;1 |&lt;br /&gt;
  \break&lt;br /&gt;
  \override Score.TextMark.non-musical = ##f&lt;br /&gt;
  \textMark &amp;quot;mark b&amp;quot;&lt;br /&gt;
  c&#039; |&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Talk:Making_all_custodes_point_up&amp;diff=5220</id>
		<title>Talk:Making all custodes point up</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Talk:Making_all_custodes_point_up&amp;diff=5220"/>
		<updated>2025-11-27T20:31:37Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: /* notes/observations */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== notes/observations ==&lt;br /&gt;
&lt;br /&gt;
- sheet music render needs to be bigger. idk how to do it though :(&lt;br /&gt;
&lt;br /&gt;
- might want to add the &amp;quot;Really Simple&amp;quot; cat, I wasn&#039;t sure&lt;br /&gt;
&lt;br /&gt;
- &amp;lt;code&amp;gt;style = #&#039;mensural&amp;lt;/code&amp;gt; is purely for clarity since the mensural custodes have the big-ass tails so easier to see&lt;br /&gt;
&lt;br /&gt;
- thanks to Xavier Scheuer on the mailing list for making me aware of this tweak! :) [[User:Schrodinger-s-kitten|Schrodinger-s-kitten]] ([[User talk:Schrodinger-s-kitten|talk]]) 18:25, 27 November 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:To make the example bigger, increase the global staff size.  However, I think this isn&#039;t necessary, since the created images are in SVG format and thus arbitrarily scalable (i.e., you can simply zoom in) -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 19:07, 27 November 2025 (UTC)&lt;br /&gt;
::ah ok thanks :) I figured there was some way to resize just the render in the wiki page without changing the code, but what you said makes sense. thanks also for the edits [[User:Schrodinger-s-kitten|Schrodinger-s-kitten]] ([[User talk:Schrodinger-s-kitten|talk]]) 20:31, 27 November 2025 (UTC)&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Talk:Making_all_custodes_point_up&amp;diff=5212</id>
		<title>Talk:Making all custodes point up</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Talk:Making_all_custodes_point_up&amp;diff=5212"/>
		<updated>2025-11-27T18:27:01Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: /* notes/observations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== notes/observations ==&lt;br /&gt;
&lt;br /&gt;
- sheet music render needs to be bigger. idk how to do it though :(&lt;br /&gt;
&lt;br /&gt;
- might want to add the &amp;quot;Really Simple&amp;quot; cat, I wasn&#039;t sure&lt;br /&gt;
&lt;br /&gt;
- &amp;lt;code&amp;gt;style = #&#039;mensural&amp;lt;/code&amp;gt; is purely for clarity since the mensural custodes have the big-ass tails so easier to see&lt;br /&gt;
&lt;br /&gt;
- thanks to Xavier Scheuer on the mailing list for making me aware of this tweak! :) [[User:Schrodinger-s-kitten|Schrodinger-s-kitten]] ([[User talk:Schrodinger-s-kitten|talk]]) 18:25, 27 November 2025 (UTC)&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Talk:Making_all_custodes_point_up&amp;diff=5211</id>
		<title>Talk:Making all custodes point up</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Talk:Making_all_custodes_point_up&amp;diff=5211"/>
		<updated>2025-11-27T18:25:07Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: /* notes/observations */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== notes/observations ==&lt;br /&gt;
&lt;br /&gt;
- idk how to make the sheet music bigger but that&#039;s needed&lt;br /&gt;
&lt;br /&gt;
- might want to add the &amp;quot;Really Simple&amp;quot; cat, I wasn&#039;t sure&lt;br /&gt;
&lt;br /&gt;
- &amp;lt;code&amp;gt;style = #&#039;mensural&amp;lt;/code&amp;gt; is purely for clarity since the mensural custodes have the big-ass tails so easier to see&lt;br /&gt;
&lt;br /&gt;
- thanks to Xavier Scheuer on the mailing list for making me aware of this tweak! :) [[User:Schrodinger-s-kitten|Schrodinger-s-kitten]] ([[User talk:Schrodinger-s-kitten|talk]]) 18:25, 27 November 2025 (UTC)&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Making_all_custodes_point_up&amp;diff=5210</id>
		<title>Making all custodes point up</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Making_all_custodes_point_up&amp;diff=5210"/>
		<updated>2025-11-27T18:20:22Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: added categories&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It&#039;s possible to make all custodes point up by setting the &amp;lt;code&amp;gt;neutral-position&amp;lt;/code&amp;gt; property to a high enough number.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.25.30&amp;quot;&amp;gt;&lt;br /&gt;
\paper {&lt;br /&gt;
  indent = #0&lt;br /&gt;
  ragged-right = ##t&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
\score {&lt;br /&gt;
&lt;br /&gt;
  \new Staff \with { \consists Custos_engraver } {&lt;br /&gt;
    \override Staff.Custos.style = #&#039;mensural&lt;br /&gt;
    \repeat unfold 3 { e&#039;&#039;1 \break }&lt;br /&gt;
    \override Staff.Custos.neutral-position = #20&lt;br /&gt;
    \repeat unfold 2 { e&#039;&#039; \break }&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
[[Category:Ancient notation]]&lt;br /&gt;
[[Category:Snippet]]&lt;br /&gt;
[[Category:Tweaks and overrides]]&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Making_all_custodes_point_up&amp;diff=5209</id>
		<title>Making all custodes point up</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Making_all_custodes_point_up&amp;diff=5209"/>
		<updated>2025-11-27T18:14:07Z</updated>

		<summary type="html">&lt;p&gt;Schrodinger-s-kitten: Created page with &amp;quot;It&amp;#039;s possible to make all custodes point up by setting the &amp;lt;code&amp;gt;neutral-position&amp;lt;/code&amp;gt; property to a high enough number.  &amp;lt;lilypond version=&amp;quot;2.25.30&amp;quot;&amp;gt; \paper {   indent = #0   ragged-right = ##t }  \score {    \new Staff \with { \consists Custos_engraver } {     \override Staff.Custos.style = #&amp;#039;mensural     \repeat unfold 3 { e&amp;#039;&amp;#039;1 \break }     \override Staff.Custos.neutral-position = #20     \repeat unfold 2 { e&amp;#039;&amp;#039; \break }   }  } &amp;lt;/lilypond&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It&#039;s possible to make all custodes point up by setting the &amp;lt;code&amp;gt;neutral-position&amp;lt;/code&amp;gt; property to a high enough number.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.25.30&amp;quot;&amp;gt;&lt;br /&gt;
\paper {&lt;br /&gt;
  indent = #0&lt;br /&gt;
  ragged-right = ##t&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
\score {&lt;br /&gt;
&lt;br /&gt;
  \new Staff \with { \consists Custos_engraver } {&lt;br /&gt;
    \override Staff.Custos.style = #&#039;mensural&lt;br /&gt;
    \repeat unfold 3 { e&#039;&#039;1 \break }&lt;br /&gt;
    \override Staff.Custos.neutral-position = #20&lt;br /&gt;
    \repeat unfold 2 { e&#039;&#039; \break }&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;/div&gt;</summary>
		<author><name>Schrodinger-s-kitten</name></author>
	</entry>
</feed>