<?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=Manuela</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=Manuela"/>
	<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/wiki/Special:Contributions/Manuela"/>
	<updated>2026-05-03T14:48:22Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Lowest_and_highest_pitch_as_chord&amp;diff=6554</id>
		<title>Lowest and highest pitch as chord</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Lowest_and_highest_pitch_as_chord&amp;diff=6554"/>
		<updated>2026-05-03T11:07:16Z</updated>

		<summary type="html">&lt;p&gt;Manuela: Code replaced with Harm&amp;#039;s version from the German Lilypond forum&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Takes &amp;lt;code&amp;gt;MUSIC&amp;lt;/code&amp;gt; and returns sequential music, simultaneous music or an event-chord&lt;br /&gt;
with duration &amp;lt;code&amp;gt;DURATION&amp;lt;/code&amp;gt;, relying on the type M provides.&lt;br /&gt;
The optional &amp;lt;code&amp;gt;PROC&amp;lt;/code&amp;gt;, supposed to be &amp;lt;code&amp;gt;{first}&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;{last}&amp;lt;/code&amp;gt;, may be used to get the bottom or top note only.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.26.0&amp;quot; &amp;gt;&lt;br /&gt;
&lt;br /&gt;
#(define (make-note-event pitch duration)&lt;br /&gt;
  &amp;quot;Takes PITCH and DURATION and returns a NoteEvent.&amp;quot;&lt;br /&gt;
  (make-music&lt;br /&gt;
   &#039;NoteEvent&lt;br /&gt;
   &#039;duration duration&lt;br /&gt;
   &#039;pitch pitch))&lt;br /&gt;
 &lt;br /&gt;
#(define (bottom-top-notes music duration)&lt;br /&gt;
  &amp;quot;Takes MUSIC and returns lowest and highest note each with duration DURATION&lt;br /&gt;
as a plain list.&amp;quot;&lt;br /&gt;
  (let* ((all-pitches (music-pitches music))&lt;br /&gt;
         (sorted-pitches (sort all-pitches ly:pitch&amp;lt;?)))&lt;br /&gt;
    (map&lt;br /&gt;
      (lambda (pitch) (make-note-event pitch duration))&lt;br /&gt;
      (list (car sorted-pitches) (last sorted-pitches)))))&lt;br /&gt;
&lt;br /&gt;
extrema =&lt;br /&gt;
#(define-music-function (proc m music duration)&lt;br /&gt;
  ((procedure? identity) ly:music? ly:music? ly:duration?)&lt;br /&gt;
&amp;quot;Takes MUSIC and returns sequential music, simultaneous music or an event-chord&lt;br /&gt;
with duration DURATION, relying on the type M provides.&lt;br /&gt;
The optional PROC, supposed to be @code{first} or @code{last}, may be used to&lt;br /&gt;
get the bottom or top note only.&amp;quot;&lt;br /&gt;
  (ly:music-set-property! m &#039;elements &lt;br /&gt;
    (ensure-list (proc (bottom-top-notes music duration))))&lt;br /&gt;
  m)&lt;br /&gt;
    &lt;br /&gt;
%%%%%%%%%%%% &lt;br /&gt;
%% EXAMPLES&lt;br /&gt;
%%%%%%%%%%%%&lt;br /&gt;
&lt;br /&gt;
testMus = \relative { d&#039; e fis g a b cis }&lt;br /&gt;
  &lt;br /&gt;
{ \extrema {} \testMus 4 }&lt;br /&gt;
%% Below, preceed with \new Staff to avoid implicit creation of two staves&lt;br /&gt;
{ \extrema &amp;lt;&amp;lt;&amp;gt;&amp;gt; \testMus 4 }&lt;br /&gt;
{ \extrema &amp;lt;&amp;gt; \testMus 4 }&lt;br /&gt;
&lt;br /&gt;
%% Get only bottom or top note&lt;br /&gt;
{ \extrema #first {} \testMus 4 }&lt;br /&gt;
{ \extrema #last {} \testMus 4 }&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
[[Category:Pitches]]&lt;br /&gt;
[[Category:Scheme]]&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/lowest_and_highest_pitch_as_chord&amp;diff=6553</id>
		<title>User:Manuela/lowest and highest pitch as chord</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/lowest_and_highest_pitch_as_chord&amp;diff=6553"/>
		<updated>2026-05-03T08:04:38Z</updated>

		<summary type="html">&lt;p&gt;Manuela: Manuela moved page User:Manuela/lowest and highest pitch as chord to Lowest and highest pitch as chord&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Lowest and highest pitch as chord]]&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Lowest_and_highest_pitch_as_chord&amp;diff=6552</id>
		<title>Lowest and highest pitch as chord</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Lowest_and_highest_pitch_as_chord&amp;diff=6552"/>
		<updated>2026-05-03T08:04:37Z</updated>

		<summary type="html">&lt;p&gt;Manuela: Manuela moved page User:Manuela/lowest and highest pitch as chord to Lowest and highest pitch as chord&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This code returns the lowest and the highest pitch of a music expression as chord.&lt;br /&gt;
&lt;br /&gt;
The duration of the chord can be chosen arbitrarily as input parameter.&lt;br /&gt;
&lt;br /&gt;
You can easily change the chord to a fixed duration. You can even chose different durations for the pitches in the chord.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.26.0&amp;quot; &amp;gt;&lt;br /&gt;
&lt;br /&gt;
%% This snippets returns the lowest and the highest pitch&lt;br /&gt;
%% of a music expression als chord&lt;br /&gt;
%% the duration of the chord is passed as argument&lt;br /&gt;
&lt;br /&gt;
myambitus =&lt;br /&gt;
#(define-music-function (mus dur)(ly:music? ly:duration?)&lt;br /&gt;
   (let*&lt;br /&gt;
    (&lt;br /&gt;
      (alle-pitches&lt;br /&gt;
       (let loop ((mus mus) (pitches &#039;()))&lt;br /&gt;
         (let ((p  (ly:music-property mus &#039;pitch)))&lt;br /&gt;
           (if (ly:pitch? p)&lt;br /&gt;
               (cons p pitches)&lt;br /&gt;
               (let ((elt (ly:music-property mus &#039;element)))&lt;br /&gt;
                 (fold loop&lt;br /&gt;
                       (if (ly:music? elt)&lt;br /&gt;
                           (loop elt pitches)&lt;br /&gt;
                           pitches)&lt;br /&gt;
                       (ly:music-property mus &#039;elements)))))))&lt;br /&gt;
      (alle-sortiert (sort alle-pitches ly:pitch&amp;lt;?))&lt;br /&gt;
      (tief (car alle-sortiert))&lt;br /&gt;
      (hoch (car (reverse alle-sortiert)))&lt;br /&gt;
      )&lt;br /&gt;
    ;     (display tief )(display hoch)&lt;br /&gt;
    ;     (write-me &amp;quot;alle pitches----&amp;gt; &amp;quot; (list? alle-pitches))&lt;br /&gt;
    (make-music&lt;br /&gt;
     &#039;EventChord &#039;elements&lt;br /&gt;
     (list&lt;br /&gt;
      (make-music&lt;br /&gt;
       &#039;NoteEvent&lt;br /&gt;
       &#039;duration&lt;br /&gt;
       dur&lt;br /&gt;
       &#039;pitch&lt;br /&gt;
       tief)&lt;br /&gt;
      (make-music&lt;br /&gt;
       &#039;NoteEvent&lt;br /&gt;
       &#039;pitch&lt;br /&gt;
       hoch&lt;br /&gt;
       &#039;duration&lt;br /&gt;
       dur)))&lt;br /&gt;
    ))&lt;br /&gt;
&lt;br /&gt;
mymus = \relative { c&#039; c f,, }&lt;br /&gt;
{ \clef bass \myambitus \mymus #(ly:make-duration 0) }&lt;br /&gt;
{ \clef bass \myambitus \transpose c e \mymus 2. }&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
[[Category:Pitches]]&lt;br /&gt;
[[Category:Scheme]]&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Lowest_and_highest_pitch_as_chord&amp;diff=6551</id>
		<title>Lowest and highest pitch as chord</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Lowest_and_highest_pitch_as_chord&amp;diff=6551"/>
		<updated>2026-05-03T07:58:38Z</updated>

		<summary type="html">&lt;p&gt;Manuela: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This code returns the lowest and the highest pitch of a music expression as chord.&lt;br /&gt;
&lt;br /&gt;
The duration of the chord can be chosen arbitrarily as input parameter.&lt;br /&gt;
&lt;br /&gt;
You can easily change the chord to a fixed duration. You can even chose different durations for the pitches in the chord.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.26.0&amp;quot; &amp;gt;&lt;br /&gt;
&lt;br /&gt;
%% This snippets returns the lowest and the highest pitch&lt;br /&gt;
%% of a music expression als chord&lt;br /&gt;
%% the duration of the chord is passed as argument&lt;br /&gt;
&lt;br /&gt;
myambitus =&lt;br /&gt;
#(define-music-function (mus dur)(ly:music? ly:duration?)&lt;br /&gt;
   (let*&lt;br /&gt;
    (&lt;br /&gt;
      (alle-pitches&lt;br /&gt;
       (let loop ((mus mus) (pitches &#039;()))&lt;br /&gt;
         (let ((p  (ly:music-property mus &#039;pitch)))&lt;br /&gt;
           (if (ly:pitch? p)&lt;br /&gt;
               (cons p pitches)&lt;br /&gt;
               (let ((elt (ly:music-property mus &#039;element)))&lt;br /&gt;
                 (fold loop&lt;br /&gt;
                       (if (ly:music? elt)&lt;br /&gt;
                           (loop elt pitches)&lt;br /&gt;
                           pitches)&lt;br /&gt;
                       (ly:music-property mus &#039;elements)))))))&lt;br /&gt;
      (alle-sortiert (sort alle-pitches ly:pitch&amp;lt;?))&lt;br /&gt;
      (tief (car alle-sortiert))&lt;br /&gt;
      (hoch (car (reverse alle-sortiert)))&lt;br /&gt;
      )&lt;br /&gt;
    ;     (display tief )(display hoch)&lt;br /&gt;
    ;     (write-me &amp;quot;alle pitches----&amp;gt; &amp;quot; (list? alle-pitches))&lt;br /&gt;
    (make-music&lt;br /&gt;
     &#039;EventChord &#039;elements&lt;br /&gt;
     (list&lt;br /&gt;
      (make-music&lt;br /&gt;
       &#039;NoteEvent&lt;br /&gt;
       &#039;duration&lt;br /&gt;
       dur&lt;br /&gt;
       &#039;pitch&lt;br /&gt;
       tief)&lt;br /&gt;
      (make-music&lt;br /&gt;
       &#039;NoteEvent&lt;br /&gt;
       &#039;pitch&lt;br /&gt;
       hoch&lt;br /&gt;
       &#039;duration&lt;br /&gt;
       dur)))&lt;br /&gt;
    ))&lt;br /&gt;
&lt;br /&gt;
mymus = \relative { c&#039; c f,, }&lt;br /&gt;
{ \clef bass \myambitus \mymus #(ly:make-duration 0) }&lt;br /&gt;
{ \clef bass \myambitus \transpose c e \mymus 2. }&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
[[Category:Pitches]]&lt;br /&gt;
[[Category:Scheme]]&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Lowest_and_highest_pitch_as_chord&amp;diff=6550</id>
		<title>Lowest and highest pitch as chord</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Lowest_and_highest_pitch_as_chord&amp;diff=6550"/>
		<updated>2026-05-03T07:52:45Z</updated>

		<summary type="html">&lt;p&gt;Manuela: Created page with &amp;quot;This code returns the lowest and the highest pitch of a music expression as chord.  The duration of the chord can be chosen arbitrarily.  You can easily change the chord to a fixed duration.  &amp;lt;lilypond version=&amp;quot;2.26.0&amp;quot; &amp;gt;  %% This snippets returns the lowest and the highest pitch %% of a music expression als chord %% the duration of the chord is passed as argument  myambitus = #(define-music-function (mus dur)(ly:music? ly:duration?)    (let*     (       (alle-pitches...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This code returns the lowest and the highest pitch of a music expression as chord.&lt;br /&gt;
&lt;br /&gt;
The duration of the chord can be chosen arbitrarily.&lt;br /&gt;
&lt;br /&gt;
You can easily change the chord to a fixed duration.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.26.0&amp;quot; &amp;gt;&lt;br /&gt;
&lt;br /&gt;
%% This snippets returns the lowest and the highest pitch&lt;br /&gt;
%% of a music expression als chord&lt;br /&gt;
%% the duration of the chord is passed as argument&lt;br /&gt;
&lt;br /&gt;
myambitus =&lt;br /&gt;
#(define-music-function (mus dur)(ly:music? ly:duration?)&lt;br /&gt;
   (let*&lt;br /&gt;
    (&lt;br /&gt;
      (alle-pitches&lt;br /&gt;
       (let loop ((mus mus) (pitches &#039;()))&lt;br /&gt;
         (let ((p  (ly:music-property mus &#039;pitch)))&lt;br /&gt;
           (if (ly:pitch? p)&lt;br /&gt;
               (cons p pitches)&lt;br /&gt;
               (let ((elt (ly:music-property mus &#039;element)))&lt;br /&gt;
                 (fold loop&lt;br /&gt;
                       (if (ly:music? elt)&lt;br /&gt;
                           (loop elt pitches)&lt;br /&gt;
                           pitches)&lt;br /&gt;
                       (ly:music-property mus &#039;elements)))))))&lt;br /&gt;
      (alle-sortiert (sort alle-pitches ly:pitch&amp;lt;?))&lt;br /&gt;
      (tief (car alle-sortiert))&lt;br /&gt;
      (hoch (car (reverse alle-sortiert)))&lt;br /&gt;
      )&lt;br /&gt;
    ;     (display tief )(display hoch)&lt;br /&gt;
    ;     (write-me &amp;quot;alle pitches----&amp;gt; &amp;quot; (list? alle-pitches))&lt;br /&gt;
    (make-music&lt;br /&gt;
     &#039;EventChord &#039;elements&lt;br /&gt;
     (list&lt;br /&gt;
      (make-music&lt;br /&gt;
       &#039;NoteEvent&lt;br /&gt;
       &#039;duration&lt;br /&gt;
       dur&lt;br /&gt;
       &#039;pitch&lt;br /&gt;
       tief)&lt;br /&gt;
      (make-music&lt;br /&gt;
       &#039;NoteEvent&lt;br /&gt;
       &#039;pitch&lt;br /&gt;
       hoch&lt;br /&gt;
       &#039;duration&lt;br /&gt;
       dur)))&lt;br /&gt;
    ))&lt;br /&gt;
&lt;br /&gt;
mymus = \relative { c&#039; c f,, }&lt;br /&gt;
{ \clef bass \myambitus \mymus #(ly:make-duration 0) }&lt;br /&gt;
{ \clef bass \myambitus \transpose c e \mymus 2. }&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
[[Category:Pitches]]&lt;br /&gt;
[[Category:Scheme]]&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6544</id>
		<title>User talk:Rudi Guggt</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6544"/>
		<updated>2026-04-16T17:32:15Z</updated>

		<summary type="html">&lt;p&gt;Manuela: /* Deutsches Forum nicht erreichbar */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bitte Vorsicht mit Änderungen an »offiziellen« Snippets! ==&lt;br /&gt;
&lt;br /&gt;
Hallo Rudi!&lt;br /&gt;
&lt;br /&gt;
Bitte sei vorsichtig mit Änderungen an »offiziellen« Snippets – die kommen alle in das [https://lilypond.org/doc/v2.25/Documentation/snippets.pdf »Snippets« PDF] (und eine nicht geringe Zahl sogar in die [https://lilypond.org/doc/v2.25/Documentation/notation.pdf Notationsreferenz]).  Derzeit ignoriert das &amp;lt;code&amp;gt;makelsr.pl&amp;lt;/code&amp;gt;-Import-Skript alle Wiki-Links, aber ich finde, solch allgemeine Verweise wie &amp;lt;nowiki&amp;gt;[[Rests]]&amp;lt;/nowiki&amp;gt; oder &amp;lt;nowiki&amp;gt;[[Skips]]&amp;lt;/nowiki&amp;gt; passen generell nicht in die LilyPond-Dokumentation.&lt;br /&gt;
&lt;br /&gt;
Daher ersuche ich Dich, diese Änderungen bei allem aus der Kategorie »Included in the official documentation« zu revertieren -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:34, 8 December 2025 (UTC).&lt;br /&gt;
&lt;br /&gt;
:ok, sollte ich dann wohl tun... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:39, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Danke im Voraus!  Ich jetzt auch den Text in [[:Category:Included in the official documentation]] entsprechend aktualisiert. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:46, 8 December 2025 (UTC)&lt;br /&gt;
:::Vielleicht sollte dann auch eine Bearbeitungssperre für Newbies und Ähnliche auf solche Seiten... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:48, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: Das wurde von mir angedacht in Diskussionen mit Jean, aber als derzeit nicht notwendig erachtet -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 13:03, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deutschsprachiges Lilypondforum ==&lt;br /&gt;
&lt;br /&gt;
Hi Rudi, du bist doch auch dort unterwegs. Ich komme nicht mehr rein mit der Meldung, dass meine IP dauerhaft blockiert ist.&lt;br /&gt;
&lt;br /&gt;
Gast, du bist aus diesem Forum verbannt!&amp;lt;br&amp;gt;&lt;br /&gt;
blockierter IP-Bereich ist 138.99.37.216/27 (216-254)&amp;lt;br&amp;gt;&lt;br /&gt;
Dein Bann wird nie ablaufen.&lt;br /&gt;
&lt;br /&gt;
Dabei befindet sich meine IP Adresse gar nicht in diesem Bereich. Kommst du ins Forum rein? Wenn ja, könntest du bitte den Admin kontaktieren und ihm das Problem schildern.&lt;br /&gt;
&lt;br /&gt;
Vielen herzlichen Dank [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 22:09, 18 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ja, ich kann mich dort weiterhin anmelden. Ich habe den Admin angeschrieben... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:44, 19 February 2026 (UTC)&lt;br /&gt;
::Danke sehr. [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 15:54, 19 February 2026 (UTC)&lt;br /&gt;
:::Genau das gleiche bei mir; ich habe [https://lists.gnu.org/archive/html/lilypond-user/2026-02/msg00094.html auch an die lilypond-user-Liste geschrieben]. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 08:29, 20 February 2026 (UTC)&lt;br /&gt;
::::Inzwischen komme ich wieder rein [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 22:23, 20 February 2026 (UTC)&lt;br /&gt;
:::::Ebenso, danke. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 04:09, 21 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deutsches Forum nicht erreichbar ==&lt;br /&gt;
&lt;br /&gt;
Hallo Rudi, ich bin es wieder mit einem Forumsproblem. Kommst du rein? Ich bekomme nur die Fehlermeldung, dass der Server nicht erreichbar ist [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 18:08, 14 April 2026 (UTC)&lt;br /&gt;
:Hat sich inzwischen erledigt [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 17:32, 16 April 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6543</id>
		<title>User talk:Rudi Guggt</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6543"/>
		<updated>2026-04-16T17:31:45Z</updated>

		<summary type="html">&lt;p&gt;Manuela: /* Deutsches Forum nicht erreichbar */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bitte Vorsicht mit Änderungen an »offiziellen« Snippets! ==&lt;br /&gt;
&lt;br /&gt;
Hallo Rudi!&lt;br /&gt;
&lt;br /&gt;
Bitte sei vorsichtig mit Änderungen an »offiziellen« Snippets – die kommen alle in das [https://lilypond.org/doc/v2.25/Documentation/snippets.pdf »Snippets« PDF] (und eine nicht geringe Zahl sogar in die [https://lilypond.org/doc/v2.25/Documentation/notation.pdf Notationsreferenz]).  Derzeit ignoriert das &amp;lt;code&amp;gt;makelsr.pl&amp;lt;/code&amp;gt;-Import-Skript alle Wiki-Links, aber ich finde, solch allgemeine Verweise wie &amp;lt;nowiki&amp;gt;[[Rests]]&amp;lt;/nowiki&amp;gt; oder &amp;lt;nowiki&amp;gt;[[Skips]]&amp;lt;/nowiki&amp;gt; passen generell nicht in die LilyPond-Dokumentation.&lt;br /&gt;
&lt;br /&gt;
Daher ersuche ich Dich, diese Änderungen bei allem aus der Kategorie »Included in the official documentation« zu revertieren -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:34, 8 December 2025 (UTC).&lt;br /&gt;
&lt;br /&gt;
:ok, sollte ich dann wohl tun... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:39, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Danke im Voraus!  Ich jetzt auch den Text in [[:Category:Included in the official documentation]] entsprechend aktualisiert. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:46, 8 December 2025 (UTC)&lt;br /&gt;
:::Vielleicht sollte dann auch eine Bearbeitungssperre für Newbies und Ähnliche auf solche Seiten... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:48, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: Das wurde von mir angedacht in Diskussionen mit Jean, aber als derzeit nicht notwendig erachtet -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 13:03, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deutschsprachiges Lilypondforum ==&lt;br /&gt;
&lt;br /&gt;
Hi Rudi, du bist doch auch dort unterwegs. Ich komme nicht mehr rein mit der Meldung, dass meine IP dauerhaft blockiert ist.&lt;br /&gt;
&lt;br /&gt;
Gast, du bist aus diesem Forum verbannt!&amp;lt;br&amp;gt;&lt;br /&gt;
blockierter IP-Bereich ist 138.99.37.216/27 (216-254)&amp;lt;br&amp;gt;&lt;br /&gt;
Dein Bann wird nie ablaufen.&lt;br /&gt;
&lt;br /&gt;
Dabei befindet sich meine IP Adresse gar nicht in diesem Bereich. Kommst du ins Forum rein? Wenn ja, könntest du bitte den Admin kontaktieren und ihm das Problem schildern.&lt;br /&gt;
&lt;br /&gt;
Vielen herzlichen Dank [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 22:09, 18 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ja, ich kann mich dort weiterhin anmelden. Ich habe den Admin angeschrieben... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:44, 19 February 2026 (UTC)&lt;br /&gt;
::Danke sehr. [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 15:54, 19 February 2026 (UTC)&lt;br /&gt;
:::Genau das gleiche bei mir; ich habe [https://lists.gnu.org/archive/html/lilypond-user/2026-02/msg00094.html auch an die lilypond-user-Liste geschrieben]. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 08:29, 20 February 2026 (UTC)&lt;br /&gt;
::::Inzwischen komme ich wieder rein [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 22:23, 20 February 2026 (UTC)&lt;br /&gt;
:::::Ebenso, danke. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 04:09, 21 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deutsches Forum nicht erreichbar ==&lt;br /&gt;
&lt;br /&gt;
Hallo Rudi, ich bin es wieder mit einem Forumsproblem. Kommst du rein? Ich bekomme nur die Fehlermeldung, dass der Server nicht erreichbar ist [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 18:08, 14 April 2026 (UTC)&lt;br /&gt;
:Hat sich inzwischen erledigt&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6538</id>
		<title>User talk:Rudi Guggt</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6538"/>
		<updated>2026-04-14T18:08:28Z</updated>

		<summary type="html">&lt;p&gt;Manuela: /* Deutsches Forum nicht erreichbar */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bitte Vorsicht mit Änderungen an »offiziellen« Snippets! ==&lt;br /&gt;
&lt;br /&gt;
Hallo Rudi!&lt;br /&gt;
&lt;br /&gt;
Bitte sei vorsichtig mit Änderungen an »offiziellen« Snippets – die kommen alle in das [https://lilypond.org/doc/v2.25/Documentation/snippets.pdf »Snippets« PDF] (und eine nicht geringe Zahl sogar in die [https://lilypond.org/doc/v2.25/Documentation/notation.pdf Notationsreferenz]).  Derzeit ignoriert das &amp;lt;code&amp;gt;makelsr.pl&amp;lt;/code&amp;gt;-Import-Skript alle Wiki-Links, aber ich finde, solch allgemeine Verweise wie &amp;lt;nowiki&amp;gt;[[Rests]]&amp;lt;/nowiki&amp;gt; oder &amp;lt;nowiki&amp;gt;[[Skips]]&amp;lt;/nowiki&amp;gt; passen generell nicht in die LilyPond-Dokumentation.&lt;br /&gt;
&lt;br /&gt;
Daher ersuche ich Dich, diese Änderungen bei allem aus der Kategorie »Included in the official documentation« zu revertieren -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:34, 8 December 2025 (UTC).&lt;br /&gt;
&lt;br /&gt;
:ok, sollte ich dann wohl tun... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:39, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Danke im Voraus!  Ich jetzt auch den Text in [[:Category:Included in the official documentation]] entsprechend aktualisiert. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:46, 8 December 2025 (UTC)&lt;br /&gt;
:::Vielleicht sollte dann auch eine Bearbeitungssperre für Newbies und Ähnliche auf solche Seiten... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:48, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: Das wurde von mir angedacht in Diskussionen mit Jean, aber als derzeit nicht notwendig erachtet -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 13:03, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deutschsprachiges Lilypondforum ==&lt;br /&gt;
&lt;br /&gt;
Hi Rudi, du bist doch auch dort unterwegs. Ich komme nicht mehr rein mit der Meldung, dass meine IP dauerhaft blockiert ist.&lt;br /&gt;
&lt;br /&gt;
Gast, du bist aus diesem Forum verbannt!&amp;lt;br&amp;gt;&lt;br /&gt;
blockierter IP-Bereich ist 138.99.37.216/27 (216-254)&amp;lt;br&amp;gt;&lt;br /&gt;
Dein Bann wird nie ablaufen.&lt;br /&gt;
&lt;br /&gt;
Dabei befindet sich meine IP Adresse gar nicht in diesem Bereich. Kommst du ins Forum rein? Wenn ja, könntest du bitte den Admin kontaktieren und ihm das Problem schildern.&lt;br /&gt;
&lt;br /&gt;
Vielen herzlichen Dank [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 22:09, 18 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ja, ich kann mich dort weiterhin anmelden. Ich habe den Admin angeschrieben... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:44, 19 February 2026 (UTC)&lt;br /&gt;
::Danke sehr. [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 15:54, 19 February 2026 (UTC)&lt;br /&gt;
:::Genau das gleiche bei mir; ich habe [https://lists.gnu.org/archive/html/lilypond-user/2026-02/msg00094.html auch an die lilypond-user-Liste geschrieben]. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 08:29, 20 February 2026 (UTC)&lt;br /&gt;
::::Inzwischen komme ich wieder rein [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 22:23, 20 February 2026 (UTC)&lt;br /&gt;
:::::Ebenso, danke. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 04:09, 21 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deutsches Forum nicht erreichbar ==&lt;br /&gt;
&lt;br /&gt;
Hallo Rudi, ich bin es wieder mit einem Forumsproblem. Kommst du rein? Ich bekomme nur die Fehlermeldung, dass der Server nicht erreichbar ist [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 18:08, 14 April 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/All_pages_LSR&amp;diff=6471</id>
		<title>User:Manuela/All pages LSR</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/All_pages_LSR&amp;diff=6471"/>
		<updated>2026-03-19T08:39:21Z</updated>

		<summary type="html">&lt;p&gt;Manuela: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Special:AllPages/LSR|alte LSR Nummern]]&lt;br /&gt;
== 1-302 ==&lt;br /&gt;
{{Special:AllPages/LSR_1}}&lt;br /&gt;
== 304- ==&lt;br /&gt;
{{Special:AllPages/LSR_304}}&lt;br /&gt;
== 619-- ==&lt;br /&gt;
{{Special:AllPages/LSR_619}}&lt;br /&gt;
__FORCETOC__&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/All_pages_LSR&amp;diff=6470</id>
		<title>User:Manuela/All pages LSR</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/All_pages_LSR&amp;diff=6470"/>
		<updated>2026-03-19T08:36:48Z</updated>

		<summary type="html">&lt;p&gt;Manuela: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Special:AllPages/LSR|alte LSR Nummern]]&lt;br /&gt;
== 1-302 ==&lt;br /&gt;
{{Special:AllPages/LSR_1}}&lt;br /&gt;
== 303- ==&lt;br /&gt;
{{Special:AllPages/LSR_303}}&lt;br /&gt;
== 701- ==&lt;br /&gt;
{{Special:AllPages/LSR_701}}&lt;br /&gt;
__FORCETOC__&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/All_pages_LSR&amp;diff=6469</id>
		<title>User:Manuela/All pages LSR</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/All_pages_LSR&amp;diff=6469"/>
		<updated>2026-03-19T08:32:23Z</updated>

		<summary type="html">&lt;p&gt;Manuela: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Special:AllPages/LSR|alte LSR Nummern]]&lt;br /&gt;
== 1-302 ==&lt;br /&gt;
{{Special:AllPages/LSR_1}}&lt;br /&gt;
== 303- ==&lt;br /&gt;
{{Special:AllPages/LSR_303}}&lt;br /&gt;
== 701- ==&lt;br /&gt;
{{Special:AllPages/LSR_701}}&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/All_pages_LSR&amp;diff=6468</id>
		<title>User:Manuela/All pages LSR</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/All_pages_LSR&amp;diff=6468"/>
		<updated>2026-03-19T08:30:38Z</updated>

		<summary type="html">&lt;p&gt;Manuela: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Special:AllPages/LSR|alte LSR Nummern]]&lt;br /&gt;
{{Special:AllPages/LSR_1}}&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/All_pages_LSR&amp;diff=6467</id>
		<title>User:Manuela/All pages LSR</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/All_pages_LSR&amp;diff=6467"/>
		<updated>2026-03-19T08:25:48Z</updated>

		<summary type="html">&lt;p&gt;Manuela: Created page with &amp;quot;{{Special:AllPages/LSR_1}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Special:AllPages/LSR_1}}&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Talk:Automatically_display_key_names_above_key_signatures&amp;diff=6376</id>
		<title>Talk:Automatically display key names above key signatures</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Talk:Automatically_display_key_names_above_key_signatures&amp;diff=6376"/>
		<updated>2026-02-22T16:58:50Z</updated>

		<summary type="html">&lt;p&gt;Manuela: /* Avoid key cancellation signs? */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Avoid key cancellation signs? ==&lt;br /&gt;
&lt;br /&gt;
Wouldn&#039;t it be better to cancel the KeyCancellation objects? Add &amp;lt;code&amp;gt;\override KeyCancellation.break-visibility = #all-invisible&amp;lt;/code&amp;gt; to the layout statement. Another suggestion is to alter the engraver so that the notes do not start after the complete text, analog to &amp;lt;code&amp;gt;\textLengthOff&amp;lt;/code&amp;gt; [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 10:20, 21 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I think removing the key cancelation is best done with &amp;lt;code&amp;gt;\set Staff.printKeyCancellation = ##f&amp;lt;/code&amp;gt;, but that&#039;s my opinion. [[User:Ksnortum|Ksnortum]] ([[User talk:Ksnortum|talk]]) 20:54, 21 February 2026 (UTC)&lt;br /&gt;
::I tested it, &amp;lt;code&amp;gt;\set Staff.printKeyCancellation = ##f&amp;lt;/code&amp;gt; killed the engraver, too. [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 16:58, 22 February 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Talk:Automatically_display_key_names_above_key_signatures&amp;diff=6370</id>
		<title>Talk:Automatically display key names above key signatures</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Talk:Automatically_display_key_names_above_key_signatures&amp;diff=6370"/>
		<updated>2026-02-21T10:20:21Z</updated>

		<summary type="html">&lt;p&gt;Manuela: /* Avoid key cancellation signs? */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Avoid key cancellation signs? ==&lt;br /&gt;
&lt;br /&gt;
Wouldn&#039;t it be better to cancel the KeyCancellation objects? Add &amp;lt;code&amp;gt;\override KeyCancellation.break-visibility = #all-invisible&amp;lt;/code&amp;gt; to the layout statement. Another suggestion is to alter the engraver so that the notes do not start after the complete text, analog to &amp;lt;code&amp;gt;\textLengthOff&amp;lt;/code&amp;gt; [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 10:20, 21 February 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6368</id>
		<title>User talk:Rudi Guggt</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6368"/>
		<updated>2026-02-20T22:23:05Z</updated>

		<summary type="html">&lt;p&gt;Manuela: /* Deutschsprachiges Lilypondforum */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bitte Vorsicht mit Änderungen an »offiziellen« Snippets! ==&lt;br /&gt;
&lt;br /&gt;
Hallo Rudi!&lt;br /&gt;
&lt;br /&gt;
Bitte sei vorsichtig mit Änderungen an »offiziellen« Snippets – die kommen alle in das [https://lilypond.org/doc/v2.25/Documentation/snippets.pdf »Snippets« PDF] (und eine nicht geringe Zahl sogar in die [https://lilypond.org/doc/v2.25/Documentation/notation.pdf Notationsreferenz]).  Derzeit ignoriert das &amp;lt;code&amp;gt;makelsr.pl&amp;lt;/code&amp;gt;-Import-Skript alle Wiki-Links, aber ich finde, solch allgemeine Verweise wie &amp;lt;nowiki&amp;gt;[[Rests]]&amp;lt;/nowiki&amp;gt; oder &amp;lt;nowiki&amp;gt;[[Skips]]&amp;lt;/nowiki&amp;gt; passen generell nicht in die LilyPond-Dokumentation.&lt;br /&gt;
&lt;br /&gt;
Daher ersuche ich Dich, diese Änderungen bei allem aus der Kategorie »Included in the official documentation« zu revertieren -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:34, 8 December 2025 (UTC).&lt;br /&gt;
&lt;br /&gt;
:ok, sollte ich dann wohl tun... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:39, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Danke im Voraus!  Ich jetzt auch den Text in [[:Category:Included in the official documentation]] entsprechend aktualisiert. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:46, 8 December 2025 (UTC)&lt;br /&gt;
:::Vielleicht sollte dann auch eine Bearbeitungssperre für Newbies und Ähnliche auf solche Seiten... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:48, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: Das wurde von mir angedacht in Diskussionen mit Jean, aber als derzeit nicht notwendig erachtet -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 13:03, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deutschsprachiges Lilypondforum ==&lt;br /&gt;
&lt;br /&gt;
Hi Rudi, du bist doch auch dort unterwegs. Ich komme nicht mehr rein mit der Meldung, dass meine IP dauerhaft blockiert ist.&lt;br /&gt;
&lt;br /&gt;
Gast, du bist aus diesem Forum verbannt!&amp;lt;br&amp;gt;&lt;br /&gt;
blockierter IP-Bereich ist 138.99.37.216/27 (216-254)&amp;lt;br&amp;gt;&lt;br /&gt;
Dein Bann wird nie ablaufen.&lt;br /&gt;
&lt;br /&gt;
Dabei befindet sich meine IP Adresse gar nicht in diesem Bereich. Kommst du ins Forum rein? Wenn ja, könntest du bitte den Admin kontaktieren und ihm das Problem schildern.&lt;br /&gt;
&lt;br /&gt;
Vielen herzlichen Dank [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 22:09, 18 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ja, ich kann mich dort weiterhin anmelden. Ich habe den Admin angeschrieben... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:44, 19 February 2026 (UTC)&lt;br /&gt;
::Danke sehr. [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 15:54, 19 February 2026 (UTC)&lt;br /&gt;
:::Genau das gleiche bei mir; ich habe [https://lists.gnu.org/archive/html/lilypond-user/2026-02/msg00094.html auch an die lilypond-user-Liste geschrieben]. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 08:29, 20 February 2026 (UTC)&lt;br /&gt;
::::Inzwischen komme ich wieder rein [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 22:23, 20 February 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6359</id>
		<title>User talk:Rudi Guggt</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6359"/>
		<updated>2026-02-19T15:54:07Z</updated>

		<summary type="html">&lt;p&gt;Manuela: /* Deutschsprachiges Lilypondforum */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bitte Vorsicht mit Änderungen an »offiziellen« Snippets! ==&lt;br /&gt;
&lt;br /&gt;
Hallo Rudi!&lt;br /&gt;
&lt;br /&gt;
Bitte sei vorsichtig mit Änderungen an »offiziellen« Snippets – die kommen alle in das [https://lilypond.org/doc/v2.25/Documentation/snippets.pdf »Snippets« PDF] (und eine nicht geringe Zahl sogar in die [https://lilypond.org/doc/v2.25/Documentation/notation.pdf Notationsreferenz]).  Derzeit ignoriert das &amp;lt;code&amp;gt;makelsr.pl&amp;lt;/code&amp;gt;-Import-Skript alle Wiki-Links, aber ich finde, solch allgemeine Verweise wie &amp;lt;nowiki&amp;gt;[[Rests]]&amp;lt;/nowiki&amp;gt; oder &amp;lt;nowiki&amp;gt;[[Skips]]&amp;lt;/nowiki&amp;gt; passen generell nicht in die LilyPond-Dokumentation.&lt;br /&gt;
&lt;br /&gt;
Daher ersuche ich Dich, diese Änderungen bei allem aus der Kategorie »Included in the official documentation« zu revertieren -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:34, 8 December 2025 (UTC).&lt;br /&gt;
&lt;br /&gt;
:ok, sollte ich dann wohl tun... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:39, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Danke im Voraus!  Ich jetzt auch den Text in [[:Category:Included in the official documentation]] entsprechend aktualisiert. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:46, 8 December 2025 (UTC)&lt;br /&gt;
:::Vielleicht sollte dann auch eine Bearbeitungssperre für Newbies und Ähnliche auf solche Seiten... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:48, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: Das wurde von mir angedacht in Diskussionen mit Jean, aber als derzeit nicht notwendig erachtet -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 13:03, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deutschsprachiges Lilypondforum ==&lt;br /&gt;
&lt;br /&gt;
Hi Rudi, du bist doch auch dort unterwegs. Ich komme nicht mehr rein mit der Meldung, dass meine IP dauerhaft blockiert ist.&lt;br /&gt;
&lt;br /&gt;
Gast, du bist aus diesem Forum verbannt!&amp;lt;br&amp;gt;&lt;br /&gt;
blockierter IP-Bereich ist 138.99.37.216/27 (216-254)&amp;lt;br&amp;gt;&lt;br /&gt;
Dein Bann wird nie ablaufen.&lt;br /&gt;
&lt;br /&gt;
Dabei befindet sich meine IP Adresse gar nicht in diesem Bereich. Kommst du ins Forum rein? Wenn ja, könntest du bitte den Admin kontaktieren und ihm das Problem schildern.&lt;br /&gt;
&lt;br /&gt;
Vielen herzlichen Dank [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 22:09, 18 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ja, ich kann mich dort weiterhin anmelden. Ich habe den Admin angeschrieben... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:44, 19 February 2026 (UTC)&lt;br /&gt;
::Danke sehr. [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 15:54, 19 February 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6350</id>
		<title>User talk:Rudi Guggt</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User_talk:Rudi_Guggt&amp;diff=6350"/>
		<updated>2026-02-18T22:09:11Z</updated>

		<summary type="html">&lt;p&gt;Manuela: /* Deutschsprachiges Lilypondforum */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bitte Vorsicht mit Änderungen an »offiziellen« Snippets! ==&lt;br /&gt;
&lt;br /&gt;
Hallo Rudi!&lt;br /&gt;
&lt;br /&gt;
Bitte sei vorsichtig mit Änderungen an »offiziellen« Snippets – die kommen alle in das [https://lilypond.org/doc/v2.25/Documentation/snippets.pdf »Snippets« PDF] (und eine nicht geringe Zahl sogar in die [https://lilypond.org/doc/v2.25/Documentation/notation.pdf Notationsreferenz]).  Derzeit ignoriert das &amp;lt;code&amp;gt;makelsr.pl&amp;lt;/code&amp;gt;-Import-Skript alle Wiki-Links, aber ich finde, solch allgemeine Verweise wie &amp;lt;nowiki&amp;gt;[[Rests]]&amp;lt;/nowiki&amp;gt; oder &amp;lt;nowiki&amp;gt;[[Skips]]&amp;lt;/nowiki&amp;gt; passen generell nicht in die LilyPond-Dokumentation.&lt;br /&gt;
&lt;br /&gt;
Daher ersuche ich Dich, diese Änderungen bei allem aus der Kategorie »Included in the official documentation« zu revertieren -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:34, 8 December 2025 (UTC).&lt;br /&gt;
&lt;br /&gt;
:ok, sollte ich dann wohl tun... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:39, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Danke im Voraus!  Ich jetzt auch den Text in [[:Category:Included in the official documentation]] entsprechend aktualisiert. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 12:46, 8 December 2025 (UTC)&lt;br /&gt;
:::Vielleicht sollte dann auch eine Bearbeitungssperre für Newbies und Ähnliche auf solche Seiten... [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 12:48, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::: Das wurde von mir angedacht in Diskussionen mit Jean, aber als derzeit nicht notwendig erachtet -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 13:03, 8 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Deutschsprachiges Lilypondforum ==&lt;br /&gt;
&lt;br /&gt;
Hi Rudi, du bist doch auch dort unterwegs. Ich komme nicht mehr rein mit der Meldung, dass meine IP dauerhaft blockiert ist.&lt;br /&gt;
&lt;br /&gt;
Gast, du bist aus diesem Forum verbannt!&amp;lt;br&amp;gt;&lt;br /&gt;
blockierter IP-Bereich ist 138.99.37.216/27 (216-254)&amp;lt;br&amp;gt;&lt;br /&gt;
Dein Bann wird nie ablaufen.&lt;br /&gt;
&lt;br /&gt;
Dabei befindet sich meine IP Adresse gar nicht in diesem Bereich. Kommst du ins Forum rein? Wenn ja, könntest du bitte den Admin kontaktieren und ihm das Problem schildern.&lt;br /&gt;
&lt;br /&gt;
Vielen herzlichen Dank [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 22:09, 18 February 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6335</id>
		<title>User:Manuela/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6335"/>
		<updated>2026-02-14T16:00:05Z</updated>

		<summary type="html">&lt;p&gt;Manuela: oneclick inserted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;text-align: center; &lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px; &lt;br /&gt;
background-color: #f9f9f9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font: bold 2.3em serif; color: #8b5;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff,3px 3px 10px #aaa;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;Welcome to the&amp;lt;/div&amp;gt; &amp;lt;div style=&amp;quot;font: bold 4.3em serif; color: #8b5;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 3px 3px 10px #aaa;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;LilyPond Wiki&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.25em&amp;quot;&amp;gt;This is a place where you can find and contribute commented code snippets for the [https://lilypond.org/ GNU LilyPond] music typesetting program.&amp;lt;/div&amp;gt;&lt;br /&gt;
In this wiki there are {{NUMBEROFARTICLES}} [[Special:AllPages|articles]] on {{NUMBEROFPAGES}} pages.&lt;br /&gt;
{{NUMBEROFUSERS}} [[Special:ListUsers|users]] have made {{NUMBEROFEDITS}} edits. Uploading files is prohibited.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center; display: inline-block; padding: 1em; font-size: 1.2em; font-weight: bold; margin-top: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: auto&amp;quot;&amp;gt;[[Special:Prefixindex/A|A]] · [[Special:Prefixindex/B|B]] · [[Special:Prefixindex/C|C]] · [[Special:Prefixindex/D|D]] · [[Special:Prefixindex/E|E]] · [[Special:Prefixindex/F|F]] · [[Special:Prefixindex/G|G]] · [[Special:Prefixindex/H|H]] · [[Special:Prefixindex/I|I]] · [[Special:Prefixindex/J|J]] · [[Special:Prefixindex/K|K]] · [[Special:Prefixindex/L|L]] · [[Special:Prefixindex/M|M]] · [[Special:Prefixindex/N|N]] · [[Special:Prefixindex/O|O]] · [[Special:Prefixindex/P|P]] · [[Special:Prefixindex/Q|Q]] · [[Special:Prefixindex/R|R]] · [[Special:Prefixindex/S|S]] · [[Special:Prefixindex/T|T]] · [[Special:Prefixindex/U|U]] · [[Special:Prefixindex/V|V]] · [[Special:Prefixindex/W|W]] · [[Special:Prefixindex/X|X]] · [[Special:Prefixindex/Y|Y]] · [[Special:Prefixindex/Z|Z]]&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=g&lt;br /&gt;
|header=What is LilyPond?&lt;br /&gt;
|body=LilyPond is a &#039;&#039;compiled&#039;&#039; system: it is run on a text file describing the music. The resulting output is viewed on-screen or printed. In some ways, LilyPond is more similar to a programming language than graphical score editing software.&lt;br /&gt;
&lt;br /&gt;
You do not write music by dragging notes from a graphical toolbar and placing them on a dynamically refreshing score; you write music by typing text. This text is interpreted (or “compiled”) by LilyPond, which produces beautifully engraved sheet music.&lt;br /&gt;
&lt;br /&gt;
People accustomed to graphical user interfaces might need to learn a new way of working, but the results are definitely worth it! }}&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is a Wiki?&lt;br /&gt;
|body=[https://en.wikipedia.org/wiki/Wiki Wiki is Hawaiian] for “quick”. A wiki can not only be viewed, but also edited, either by registered users or in many cases also anonymously, depending on the configuration of the wiki. It works on the same principle as the well-known [https://www.wikipedia.org/ online encyclopedia WikiPedia] and is based on the freely available software [https://www.mediawiki.org/wiki/MediaWiki MediaWiki].&lt;br /&gt;
&lt;br /&gt;
[https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents What is Mediawiki?] [https://www.mediawiki.org/wiki/Differences_between_Wikipedia,_Wikimedia,_MediaWiki,_and_wiki What is the difference between Wikipedia, Wikimedia, MediaWiki, and wiki?] [[Help:Contributing|Here you can find help for editing]] in this Wiki, and here [https://en.wikipedia.org/wiki/Help:Menu/Editing%20Wikipedia help for editing in a Wiki] in general.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Help:Score Wikipedia] uses LilyPond.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is the LilyPond Snippet Repository&lt;br /&gt;
|body=The &#039;&#039;snippet repository&#039;&#039; contains (relatively short) samples of LilyPond code for certain tasks.&lt;br /&gt;
&lt;br /&gt;
This samples should be well documented and compile as standalone.&lt;br /&gt;
&lt;br /&gt;
Use the search box to look for snippets or scroll through the lists to the right&lt;br /&gt;
&lt;br /&gt;
Most snippets are set up to use the current stable LilyPond release 2.24 (the intended version is always shown in the snippet). To use a newer version, don&#039;t forget to call &amp;lt;code&amp;gt;convert-ly&amp;lt;/code&amp;gt; on the snippet since the syntax might have changed!&lt;br /&gt;
&lt;br /&gt;
If you use a higher version of LilyPond then you must include the full version as &amp;lt;code style=&amp;quot;-webkit-user-select: all; -ms-user-select: all; -moz-user-select: all; user-select: all&amp;quot;&amp;gt;&amp;lt;lilypond version=&amp;quot;2.25.31&amp;quot;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=p&lt;br /&gt;
|header=List of all pages&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=l&lt;br /&gt;
|header=List of snippets by numbers&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages/LSR_1}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User_talk:Manuela/Main_Page&amp;diff=6321</id>
		<title>User talk:Manuela/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User_talk:Manuela/Main_Page&amp;diff=6321"/>
		<updated>2026-02-04T20:31:59Z</updated>

		<summary type="html">&lt;p&gt;Manuela: /* Farbe */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Farbe ==&lt;br /&gt;
&lt;br /&gt;
Hallo Manuela,&lt;br /&gt;
&lt;br /&gt;
schöner Entwurf für die Hauptseite! Bei der Farbe für die Schrift würde ich eher was Grünes sehen wollen...  &lt;br /&gt;
Vielleicht &amp;quot;#8b5&amp;quot; oder ähnlich. Was meinst du?&lt;br /&gt;
&lt;br /&gt;
Und &amp;quot;Wiki&amp;quot; statt &amp;quot;WIKI&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
LG -- [[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 10:58, 26 January 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I second &amp;quot;Wiki&amp;quot; instead of &amp;quot;WIKI&amp;quot;.  It&#039;s a word, not an acronym. [[User:Ksnortum|Ksnortum]] ([[User talk:Ksnortum|talk]]) 16:41, 1 February 2026 (UTC)&lt;br /&gt;
:Schriftfarbe ist geändert, die Großbuchstaben sind weg [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 20:31, 4 February 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6320</id>
		<title>User:Manuela/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6320"/>
		<updated>2026-02-04T20:30:49Z</updated>

		<summary type="html">&lt;p&gt;Manuela: Farbe geändert, header now Wiki&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;text-align: center; &lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px; &lt;br /&gt;
background-color: #f9f9f9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font: bold 2.3em serif; color: #8b5;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff,3px 3px 10px #aaa;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;Welcome to the&amp;lt;/div&amp;gt; &amp;lt;div style=&amp;quot;font: bold 4.3em serif; color: #8b5;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 3px 3px 10px #aaa;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;LilyPond Wiki&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.25em&amp;quot;&amp;gt;This is a place where you can find and contribute commented code snippets for the [https://lilypond.org/ GNU LilyPond] music typesetting program.&amp;lt;/div&amp;gt;&lt;br /&gt;
In this wiki there are {{NUMBEROFARTICLES}} [[Special:AllPages|articles]] on {{NUMBEROFPAGES}} pages.&lt;br /&gt;
{{NUMBEROFUSERS}} [[Special:ListUsers|users]] have made {{NUMBEROFEDITS}} edits. Uploading files is prohibited.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center; display: inline-block; padding: 1em; font-size: 1.2em; font-weight: bold; margin-top: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: auto&amp;quot;&amp;gt;[[Special:Prefixindex/A|A]] · [[Special:Prefixindex/B|B]] · [[Special:Prefixindex/C|C]] · [[Special:Prefixindex/D|D]] · [[Special:Prefixindex/E|E]] · [[Special:Prefixindex/F|F]] · [[Special:Prefixindex/G|G]] · [[Special:Prefixindex/H|H]] · [[Special:Prefixindex/I|I]] · [[Special:Prefixindex/J|J]] · [[Special:Prefixindex/K|K]] · [[Special:Prefixindex/L|L]] · [[Special:Prefixindex/M|M]] · [[Special:Prefixindex/N|N]] · [[Special:Prefixindex/O|O]] · [[Special:Prefixindex/P|P]] · [[Special:Prefixindex/Q|Q]] · [[Special:Prefixindex/R|R]] · [[Special:Prefixindex/S|S]] · [[Special:Prefixindex/T|T]] · [[Special:Prefixindex/U|U]] · [[Special:Prefixindex/V|V]] · [[Special:Prefixindex/W|W]] · [[Special:Prefixindex/X|X]] · [[Special:Prefixindex/Y|Y]] · [[Special:Prefixindex/Z|Z]]&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=g&lt;br /&gt;
|header=What is LilyPond?&lt;br /&gt;
|body=LilyPond is a &#039;&#039;compiled&#039;&#039; system: it is run on a text file describing the music. The resulting output is viewed on-screen or printed. In some ways, LilyPond is more similar to a programming language than graphical score editing software.&lt;br /&gt;
&lt;br /&gt;
You do not write music by dragging notes from a graphical toolbar and placing them on a dynamically refreshing score; you write music by typing text. This text is interpreted (or “compiled”) by LilyPond, which produces beautifully engraved sheet music.&lt;br /&gt;
&lt;br /&gt;
People accustomed to graphical user interfaces might need to learn a new way of working, but the results are definitely worth it! }}&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is a Wiki?&lt;br /&gt;
|body=[https://en.wikipedia.org/wiki/Wiki Wiki is Hawaiian] for “quick”. A wiki can not only be viewed, but also edited, either by registered users or in many cases also anonymously, depending on the configuration of the wiki. It works on the same principle as the well-known [https://www.wikipedia.org/ online encyclopedia WikiPedia] and is based on the freely available software [https://www.mediawiki.org/wiki/MediaWiki MediaWiki].&lt;br /&gt;
&lt;br /&gt;
[https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents What is Mediawiki?] [https://www.mediawiki.org/wiki/Differences_between_Wikipedia,_Wikimedia,_MediaWiki,_and_wiki What is the difference between Wikipedia, Wikimedia, MediaWiki, and wiki?] [[Help:Contributing|Here you can find help for editing]] in this Wiki, and here [https://en.wikipedia.org/wiki/Help:Menu/Editing%20Wikipedia help for editing in a Wiki] in general.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Help:Score Wikipedia] uses LilyPond.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is the LilyPond Snippet Repository&lt;br /&gt;
|body=The &#039;&#039;snippet repository&#039;&#039; contains (relatively short) samples of LilyPond code for certain tasks.&lt;br /&gt;
&lt;br /&gt;
This samples should be well documented and compile as standalone.&lt;br /&gt;
&lt;br /&gt;
Use the search box to look for snippets or scroll through the lists to the right&lt;br /&gt;
&lt;br /&gt;
Most snippets are set up to use the current stable LilyPond release 2.24 (the intended version is always shown in the snippet). To use a newer version, don&#039;t forget to call &amp;lt;code&amp;gt;convert-ly&amp;lt;/code&amp;gt; on the snippet since the syntax might have changed!&lt;br /&gt;
&lt;br /&gt;
If you use a higher version of LilyPond then you must include the full version as &amp;lt;code&amp;gt;&amp;lt;lilypond version=&amp;quot;2.25.31&amp;quot;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=p&lt;br /&gt;
|header=List of all pages&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=l&lt;br /&gt;
|header=List of snippets by numbers&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages/LSR_1}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6266</id>
		<title>User:Manuela/colored box/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6266"/>
		<updated>2026-01-29T16:44:46Z</updated>

		<summary type="html">&lt;p&gt;Manuela: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
== Example of usage ==&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code style=&amp;quot;-webkit-user-select: all; -ms-user-select: all; -moz-user-select: all; user-select: all&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade}}&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code style=&amp;quot;-webkit-user-select: all; -ms-user-select: all; -moz-user-select: all; user-select: all&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with shade=p&amp;lt;nowiki&amp;gt;|shade=p}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with shade=p|shade=p}}&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code style=&amp;quot;-webkit-user-select: all; -ms-user-select: all; -moz-user-select: all; user-select: all&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with background and header color&amp;lt;nowiki&amp;gt;|backgroundcolor=#ff80ff|headercolor=#ff00ff}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with background and header color|backgroundcolor=#ff80ff|headercolor=#ff00ff}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Subpages ==&lt;br /&gt;
&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{BASEPAGENAME}}/}}&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6265</id>
		<title>User:Manuela/colored box/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6265"/>
		<updated>2026-01-29T16:43:34Z</updated>

		<summary type="html">&lt;p&gt;Manuela: __NOEDITSECTION__&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
== Example of usage ==&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code style=&amp;quot;-webkit-user-select: all; -ms-user-select: all; -moz-user-select: all; user-select: all&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade}}&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code style=&amp;quot;-webkit-user-select: all; -ms-user-select: all; -moz-user-select: all; user-select: all&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with shade=p&amp;lt;nowiki&amp;gt;|shade=p}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with shade=p|shade=p}}&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code style=&amp;quot;-webkit-user-select: all; -ms-user-select: all; -moz-user-select: all; user-select: all&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with background and header color&amp;lt;nowiki&amp;gt;|backgroundcolor=#ff80ff|headercolor=#ff00ff}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with background and header color|backgroundcolor=#ff80ff|headercolor=#ff00ff}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Subpages ==&lt;br /&gt;
&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6264</id>
		<title>User:Manuela/colored box/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6264"/>
		<updated>2026-01-29T16:42:16Z</updated>

		<summary type="html">&lt;p&gt;Manuela: oneclick for the code examples&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
== Example of usage ==&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code style=&amp;quot;-webkit-user-select: all; -ms-user-select: all; -moz-user-select: all; user-select: all&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade}}&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code style=&amp;quot;-webkit-user-select: all; -ms-user-select: all; -moz-user-select: all; user-select: all&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with shade=p&amp;lt;nowiki&amp;gt;|shade=p}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with shade=p|shade=p}}&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code style=&amp;quot;-webkit-user-select: all; -ms-user-select: all; -moz-user-select: all; user-select: all&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with background and header color&amp;lt;nowiki&amp;gt;|backgroundcolor=#ff80ff|headercolor=#ff00ff}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with background and header color|backgroundcolor=#ff80ff|headercolor=#ff00ff}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Subpages ==&lt;br /&gt;
&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6263</id>
		<title>User:Manuela/colored box/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6263"/>
		<updated>2026-01-29T16:40:13Z</updated>

		<summary type="html">&lt;p&gt;Manuela: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
== Example of usage ==&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade}}&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with shade=p&amp;lt;nowiki&amp;gt;|shade=p}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with shade=p|shade=p}}&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with background and header color&amp;lt;nowiki&amp;gt;|backgroundcolor=#ff80ff|headercolor=#ff00ff}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with background and header color|backgroundcolor=#ff80ff|headercolor=#ff00ff}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Subpages ==&lt;br /&gt;
&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6262</id>
		<title>User:Manuela/colored box/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6262"/>
		<updated>2026-01-29T16:38:03Z</updated>

		<summary type="html">&lt;p&gt;Manuela: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
== Example of usage ==&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade}}&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with shade=p&amp;lt;nowiki&amp;gt;|shade=p}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with shade=p|shade=p}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Subpages ==&lt;br /&gt;
&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6261</id>
		<title>User:Manuela/colored box/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6261"/>
		<updated>2026-01-29T16:36:24Z</updated>

		<summary type="html">&lt;p&gt;Manuela: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
== Example of usage ==&lt;br /&gt;
=== Code ===&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Result ===&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Subpages ==&lt;br /&gt;
&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6260</id>
		<title>User:Manuela/colored box/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6260"/>
		<updated>2026-01-29T16:35:28Z</updated>

		<summary type="html">&lt;p&gt;Manuela: error corrected&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
== Example of usage ==&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{FULLPAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Subpages ==&lt;br /&gt;
&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6259</id>
		<title>User:Manuela/colored box/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6259"/>
		<updated>2026-01-29T16:31:41Z</updated>

		<summary type="html">&lt;p&gt;Manuela: example included&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
=== Example of usage ===&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{PAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{PAGENAME}}|header=Header of colored box example|body=This is an example of a colored box with no shade}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Subpages ==&lt;br /&gt;
&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box&amp;diff=6257</id>
		<title>User:Manuela/colored box</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box&amp;diff=6257"/>
		<updated>2026-01-29T16:27:01Z</updated>

		<summary type="html">&lt;p&gt;Manuela: more flexibility for background and header color&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px;&lt;br /&gt;
background-color: {{#switch: {{{shade}}}&lt;br /&gt;
 | b|bl|blu|blue = #f5faff;&lt;br /&gt;
 | gr|gre|gree|green|g= #f5fffa;&lt;br /&gt;
 | l|li|lil|lila|lilac = #faf5ff;&lt;br /&gt;
 | p|pi|pin|pink = #fff5fa;&lt;br /&gt;
 | {{{backgroundcolor|#fafafa}}};&lt;br /&gt;
}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: left;&lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0.2em 0.4em; line-height: 1.375;&lt;br /&gt;
margin: 0.5em 0;&lt;br /&gt;
font-size: 120%;&lt;br /&gt;
font-weight: bold;&lt;br /&gt;
font-family: inherit;&lt;br /&gt;
background-color: {{#switch: {{{shade}}}&lt;br /&gt;
 | b|bl|blu|blue = #cedff2;&lt;br /&gt;
 | gr|gre|gree|green|g= #a3bfb1;&lt;br /&gt;
 | l|li|lil|lila|lilac = #ddcef2;&lt;br /&gt;
 | p|pi|pin|pink = #f2cedd;&lt;br /&gt;
 | {{{headercolor|#eee}}};&lt;br /&gt;
}}&amp;quot;&amp;quot;&amp;gt;{{{header}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
{{{body}}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
{{User:Manuela/colored box/doc}}&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Talk:Ripped,_torn_staff-lines&amp;diff=6256</id>
		<title>Talk:Ripped, torn staff-lines</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Talk:Ripped,_torn_staff-lines&amp;diff=6256"/>
		<updated>2026-01-29T16:22:49Z</updated>

		<summary type="html">&lt;p&gt;Manuela: /* zigzag */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== zigzag ==&lt;br /&gt;
&lt;br /&gt;
here in the wiki the zigzag lines seem to be omitted. The code itself does work. --[[User:Rudi Guggt|Rudi Guggt]] ([[User talk:Rudi Guggt|talk]]) 09:35, 29 January 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Ja, anscheinend funktionieren mehrere Dinge nicht, wie ich schon bei einem anderen Snippet angemerkt habe. Leider kann man keine Bilder hochladen, um zu illustrieren, wie es sein sollte. Der Bürokrat in diesem Wiki hat die Funktionalität dieses Wikis ziemlich stark eingeschränkt. [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 16:22, 29 January 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6250</id>
		<title>User:Manuela/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6250"/>
		<updated>2026-01-26T16:06:39Z</updated>

		<summary type="html">&lt;p&gt;Manuela: header of one box changed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;text-align: center; &lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px; &lt;br /&gt;
background-color: #f9f9f9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font: bold 2.3em serif; color: #d0a;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 2px 2px #202020,3px 3px 10px #888;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;Welcome to the&amp;lt;/div&amp;gt; &amp;lt;div style=&amp;quot;font: bold 4.3em serif; color: #d0a;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 2px 2px #202020,3px 3px 10px #888;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;LilyPond WIKI&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.25em&amp;quot;&amp;gt;This is a place where you can find and contribute commented code snippets for the [https://lilypond.org/ GNU LilyPond] music typesetting program.&amp;lt;/div&amp;gt;&lt;br /&gt;
In this wiki there are {{NUMBEROFARTICLES}} [[Special:AllPages|articles]] on {{NUMBEROFPAGES}} pages.&lt;br /&gt;
{{NUMBEROFUSERS}} [[Special:ListUsers|users]] have made {{NUMBEROFEDITS}} edits. Uploading files is prohibited.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center; display: inline-block; padding: 1em; font-size: 1.2em; font-weight: bold; margin-top: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: auto&amp;quot;&amp;gt;[[Special:Prefixindex/A|A]] · [[Special:Prefixindex/B|B]] · [[Special:Prefixindex/C|C]] · [[Special:Prefixindex/D|D]] · [[Special:Prefixindex/E|E]] · [[Special:Prefixindex/F|F]] · [[Special:Prefixindex/G|G]] · [[Special:Prefixindex/H|H]] · [[Special:Prefixindex/I|I]] · [[Special:Prefixindex/J|J]] · [[Special:Prefixindex/K|K]] · [[Special:Prefixindex/L|L]] · [[Special:Prefixindex/M|M]] · [[Special:Prefixindex/N|N]] · [[Special:Prefixindex/O|O]] · [[Special:Prefixindex/P|P]] · [[Special:Prefixindex/Q|Q]] · [[Special:Prefixindex/R|R]] · [[Special:Prefixindex/S|S]] · [[Special:Prefixindex/T|T]] · [[Special:Prefixindex/U|U]] · [[Special:Prefixindex/V|V]] · [[Special:Prefixindex/W|W]] · [[Special:Prefixindex/X|X]] · [[Special:Prefixindex/Y|Y]] · [[Special:Prefixindex/Z|Z]]&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=g&lt;br /&gt;
|header=What is LilyPond?&lt;br /&gt;
|body=LilyPond is a &#039;&#039;compiled&#039;&#039; system: it is run on a text file describing the music. The resulting output is viewed on-screen or printed. In some ways, LilyPond is more similar to a programming language than graphical score editing software.&lt;br /&gt;
&lt;br /&gt;
You do not write music by dragging notes from a graphical toolbar and placing them on a dynamically refreshing score; you write music by typing text. This text is interpreted (or “compiled”) by LilyPond, which produces beautifully engraved sheet music.&lt;br /&gt;
&lt;br /&gt;
People accustomed to graphical user interfaces might need to learn a new way of working, but the results are definitely worth it! }}&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is a Wiki?&lt;br /&gt;
|body=[https://en.wikipedia.org/wiki/Wiki Wiki is Hawaiian] for “quick”. A wiki can not only be viewed, but also edited, either by registered users or in many cases also anonymously, depending on the configuration of the wiki. It works on the same principle as the well-known [https://www.wikipedia.org/ online encyclopedia WikiPedia] and is based on the freely available software [https://www.mediawiki.org/wiki/MediaWiki MediaWiki].&lt;br /&gt;
&lt;br /&gt;
[https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents What is Mediawiki?] [https://www.mediawiki.org/wiki/Differences_between_Wikipedia,_Wikimedia,_MediaWiki,_and_wiki What is the difference between Wikipedia, Wikimedia, MediaWiki, and wiki?] [[Help:Contributing|Here you can find help for editing]] in this Wiki, and here [https://en.wikipedia.org/wiki/Help:Menu/Editing%20Wikipedia help for editing in a Wiki] in general.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Help:Score Wikipedia] uses LilyPond.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is the LilyPond Snippet Repository&lt;br /&gt;
|body=The &#039;&#039;snippet repository&#039;&#039; contains (relatively short) samples of LilyPond code for certain tasks.&lt;br /&gt;
&lt;br /&gt;
This samples should be well documented and compile as standalone.&lt;br /&gt;
&lt;br /&gt;
Use the search box to look for snippets or scroll through the lists to the right&lt;br /&gt;
&lt;br /&gt;
Most snippets are set up to use the current stable LilyPond release 2.24 (the intended version is always shown in the snippet). To use a newer version, don&#039;t forget to call &amp;lt;code&amp;gt;convert-ly&amp;lt;/code&amp;gt; on the snippet since the syntax might have changed!&lt;br /&gt;
&lt;br /&gt;
If you use a higher version of LilyPond then you must include the full version as &amp;lt;code&amp;gt;&amp;lt;lilypond version=&amp;quot;2.25.31&amp;quot;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=p&lt;br /&gt;
|header=List of all pages&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=l&lt;br /&gt;
|header=List of snippets by numbers&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages/LSR_1}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6248</id>
		<title>User:Manuela/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6248"/>
		<updated>2026-01-25T10:25:35Z</updated>

		<summary type="html">&lt;p&gt;Manuela: All Lilypond changed to LilyPond&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;text-align: center; &lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px; &lt;br /&gt;
background-color: #f9f9f9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font: bold 2.3em serif; color: #d0a;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 2px 2px #202020,3px 3px 10px #888;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;Welcome to the&amp;lt;/div&amp;gt; &amp;lt;div style=&amp;quot;font: bold 4.3em serif; color: #d0a;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 2px 2px #202020,3px 3px 10px #888;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;LilyPond WIKI&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.25em&amp;quot;&amp;gt;This is a place where you can find and contribute commented code snippets for the [https://lilypond.org/ GNU LilyPond] music typesetting program.&amp;lt;/div&amp;gt;&lt;br /&gt;
In this wiki there are {{NUMBEROFARTICLES}} [[Special:AllPages|articles]] on {{NUMBEROFPAGES}} pages.&lt;br /&gt;
{{NUMBEROFUSERS}} [[Special:ListUsers|users]] have made {{NUMBEROFEDITS}} edits. Uploading files is prohibited.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center; display: inline-block; padding: 1em; font-size: 1.2em; font-weight: bold; margin-top: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: auto&amp;quot;&amp;gt;[[Special:Prefixindex/A|A]] · [[Special:Prefixindex/B|B]] · [[Special:Prefixindex/C|C]] · [[Special:Prefixindex/D|D]] · [[Special:Prefixindex/E|E]] · [[Special:Prefixindex/F|F]] · [[Special:Prefixindex/G|G]] · [[Special:Prefixindex/H|H]] · [[Special:Prefixindex/I|I]] · [[Special:Prefixindex/J|J]] · [[Special:Prefixindex/K|K]] · [[Special:Prefixindex/L|L]] · [[Special:Prefixindex/M|M]] · [[Special:Prefixindex/N|N]] · [[Special:Prefixindex/O|O]] · [[Special:Prefixindex/P|P]] · [[Special:Prefixindex/Q|Q]] · [[Special:Prefixindex/R|R]] · [[Special:Prefixindex/S|S]] · [[Special:Prefixindex/T|T]] · [[Special:Prefixindex/U|U]] · [[Special:Prefixindex/V|V]] · [[Special:Prefixindex/W|W]] · [[Special:Prefixindex/X|X]] · [[Special:Prefixindex/Y|Y]] · [[Special:Prefixindex/Z|Z]]&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=g&lt;br /&gt;
|header=What is LilyPond?&lt;br /&gt;
|body=LilyPond is a &#039;&#039;compiled&#039;&#039; system: it is run on a text file describing the music. The resulting output is viewed on-screen or printed. In some ways, LilyPond is more similar to a programming language than graphical score editing software.&lt;br /&gt;
&lt;br /&gt;
You do not write music by dragging notes from a graphical toolbar and placing them on a dynamically refreshing score; you write music by typing text. This text is interpreted (or “compiled”) by LilyPond, which produces beautifully engraved sheet music.&lt;br /&gt;
&lt;br /&gt;
People accustomed to graphical user interfaces might need to learn a new way of working, but the results are definitely worth it! }}&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is a Wiki?&lt;br /&gt;
|body=[https://en.wikipedia.org/wiki/Wiki Wiki is Hawaiian] for “quick”. A wiki can not only be viewed, but also edited, either by registered users or in many cases also anonymously, depending on the configuration of the wiki. It works on the same principle as the well-known [https://www.wikipedia.org/ online encyclopedia WikiPedia] and is based on the freely available software [https://www.mediawiki.org/wiki/MediaWiki MediaWiki].&lt;br /&gt;
&lt;br /&gt;
[https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents What is Mediawiki?] [https://www.mediawiki.org/wiki/Differences_between_Wikipedia,_Wikimedia,_MediaWiki,_and_wiki What is the difference between Wikipedia, Wikimedia, MediaWiki, and wiki?] [[Help:Contributing|Here you can find help for editing]] in this Wiki, and here [https://en.wikipedia.org/wiki/Help:Menu/Editing%20Wikipedia help for editing in a Wiki] in general.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Help:Score Wikipedia] uses LilyPond.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=LilyPond Snippet Repository&lt;br /&gt;
|body=The &#039;&#039;snippet repository&#039;&#039; contains (relatively short) samples of LilyPond code for certain tasks.&lt;br /&gt;
&lt;br /&gt;
This samples should be well documented and compile as standalone.&lt;br /&gt;
&lt;br /&gt;
Use the search box to look for snippets or scroll through the lists to the right&lt;br /&gt;
&lt;br /&gt;
Most snippets are set up to use the current stable LilyPond release 2.24 (the intended version is always shown in the snippet). To use a newer version, don&#039;t forget to call &amp;lt;code&amp;gt;convert-ly&amp;lt;/code&amp;gt; on the snippet since the syntax might have changed!&lt;br /&gt;
&lt;br /&gt;
If you use a higher version of LilyPond then you must include the full version as &amp;lt;code&amp;gt;&amp;lt;lilypond version=&amp;quot;2.25.31&amp;quot;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=p&lt;br /&gt;
|header=List of all pages&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=l&lt;br /&gt;
|header=List of snippets by numbers&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages/LSR_1}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User_talk:Lemzwerg&amp;diff=6247</id>
		<title>User talk:Lemzwerg</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User_talk:Lemzwerg&amp;diff=6247"/>
		<updated>2026-01-24T18:27:03Z</updated>

		<summary type="html">&lt;p&gt;Manuela: /* Entwurf für eine Hauptseite */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Dealing with vandalism ==&lt;br /&gt;
&lt;br /&gt;
Werner,&lt;br /&gt;
&lt;br /&gt;
Thank you for reverting most vandalism edits from 85.208.84.179 (I&#039;ve reverted the last remaining one). FYI, in such cases, since you&#039;re an admin, you can also ban the IP address from editing the wiki, by clicking on the &amp;quot;block&amp;quot; link that appears in parentheses next to it in most places where it is displayed, like page histories. I&#039;ve just applied the block as well. [[User:Jean Abou Samra|Jean Abou Samra]] ([[User talk:Jean Abou Samra|talk]]) 15:03, 6 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Yeah, thanks for the reminder – I should remember that I have first to stop the attacker, then taking care of reverting everything. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 18:24, 6 December 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Entwurf für eine Hauptseite ==&lt;br /&gt;
&lt;br /&gt;
Ich habe eine Startseite entworfen, du findest sie [[User:Manuela/Main Page|hier]], bei Gefallen kannst du die Vorlage [[User:Manuela/colored_box|Farbbox]] in den Vorlagenraum kopieren und die Startseite entsprechend updaten. Natürlich kannst du die Texte nach Belieben ändern, neue Kästchen einfügen etc. [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 14:34, 22 January 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Danke.  Derzeit hab&#039; ich leider nicht genug Zeit und Muße, mich damit genauer zu beschäftigen.  Was allerdings sofort auffällt, ist die Zeile »Welcome to the Lilypond WIKI« – sowohl mit Chromium als auch mit Firefox bleibt das bei mir nicht im Rahmen (ich verwende standardmäßig eine ziemlich große Systemschrift), sondern ist (fast) immer zu breit.  Das sollte vor dem Wort »LilyPond« (und bitte nicht »Lilypond«) umgebrochen werden können. -- [[User:Lemzwerg|Lemzwerg]] ([[User talk:Lemzwerg|talk]]) 07:40, 24 January 2026 (UTC)&lt;br /&gt;
::Ist geändert [[User:Manuela|Manuela]] ([[User talk:Manuela|talk]]) 18:27, 24 January 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6246</id>
		<title>User:Manuela/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6246"/>
		<updated>2026-01-24T18:25:33Z</updated>

		<summary type="html">&lt;p&gt;Manuela: header font changed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;text-align: center; &lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px; &lt;br /&gt;
background-color: #f9f9f9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font: bold 2.3em serif; color: #d0a;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 2px 2px #202020,3px 3px 10px #888;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;Welcome to the&amp;lt;/div&amp;gt; &amp;lt;div style=&amp;quot;font: bold 4.3em serif; color: #d0a;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 2px 2px #202020,3px 3px 10px #888;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;LilyPond WIKI&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.25em&amp;quot;&amp;gt;This is a place where you can find and contribute commented code snippets for the [https://lilypond.org/ GNU LilyPond] music typesetting program.&amp;lt;/div&amp;gt;&lt;br /&gt;
In this wiki there are {{NUMBEROFARTICLES}} [[Special:AllPages|articles]] on {{NUMBEROFPAGES}} pages.&lt;br /&gt;
{{NUMBEROFUSERS}} [[Special:ListUsers|users]] have made {{NUMBEROFEDITS}} edits. Uploading files is prohibited.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center; display: inline-block; padding: 1em; font-size: 1.2em; font-weight: bold; margin-top: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: auto&amp;quot;&amp;gt;[[Special:Prefixindex/A|A]] · [[Special:Prefixindex/B|B]] · [[Special:Prefixindex/C|C]] · [[Special:Prefixindex/D|D]] · [[Special:Prefixindex/E|E]] · [[Special:Prefixindex/F|F]] · [[Special:Prefixindex/G|G]] · [[Special:Prefixindex/H|H]] · [[Special:Prefixindex/I|I]] · [[Special:Prefixindex/J|J]] · [[Special:Prefixindex/K|K]] · [[Special:Prefixindex/L|L]] · [[Special:Prefixindex/M|M]] · [[Special:Prefixindex/N|N]] · [[Special:Prefixindex/O|O]] · [[Special:Prefixindex/P|P]] · [[Special:Prefixindex/Q|Q]] · [[Special:Prefixindex/R|R]] · [[Special:Prefixindex/S|S]] · [[Special:Prefixindex/T|T]] · [[Special:Prefixindex/U|U]] · [[Special:Prefixindex/V|V]] · [[Special:Prefixindex/W|W]] · [[Special:Prefixindex/X|X]] · [[Special:Prefixindex/Y|Y]] · [[Special:Prefixindex/Z|Z]]&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=g&lt;br /&gt;
|header=What is Lilypond?&lt;br /&gt;
|body=LilyPond is a &#039;&#039;compiled&#039;&#039; system: it is run on a text file describing the music. The resulting output is viewed on-screen or printed. In some ways, LilyPond is more similar to a programming language than graphical score editing software.&lt;br /&gt;
&lt;br /&gt;
You do not write music by dragging notes from a graphical toolbar and placing them on a dynamically refreshing score; you write music by typing text. This text is interpreted (or “compiled”) by LilyPond, which produces beautifully engraved sheet music.&lt;br /&gt;
&lt;br /&gt;
People accustomed to graphical user interfaces might need to learn a new way of working, but the results are definitely worth it! }}&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is a Wiki?&lt;br /&gt;
|body=[https://en.wikipedia.org/wiki/Wiki Wiki is Hawaiian] for “quick”. A wiki can not only be viewed, but also edited, either by registered users or in many cases also anonymously, depending on the configuration of the wiki. It works on the same principle as the well-known [https://www.wikipedia.org/ online encyclopedia WikiPedia] and is based on the freely available software [https://www.mediawiki.org/wiki/MediaWiki MediaWiki].&lt;br /&gt;
&lt;br /&gt;
[https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents What is Mediawiki?] [https://www.mediawiki.org/wiki/Differences_between_Wikipedia,_Wikimedia,_MediaWiki,_and_wiki What is the difference between Wikipedia, Wikimedia, MediaWiki, and wiki?] [[Help:Contributing|Here you can find help for editing]] in this Wiki, and here [https://en.wikipedia.org/wiki/Help:Menu/Editing%20Wikipedia help for editing in a Wiki] in general.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Help:Score Wikipedia] uses Lilypond.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=LilyPond Snippet Repository&lt;br /&gt;
|body=The &#039;&#039;snippet repository&#039;&#039; contains (relatively short) samples of Lilypond code for certain tasks.&lt;br /&gt;
&lt;br /&gt;
This samples should be well documented and compile as standalone.&lt;br /&gt;
&lt;br /&gt;
Use the search box to look for snippets or scroll through the lists to the right&lt;br /&gt;
&lt;br /&gt;
Most snippets are set up to use the current stable LilyPond release 2.24 (the intended version is always shown in the snippet). To use a newer version, don&#039;t forget to call &amp;lt;code&amp;gt;convert-ly&amp;lt;/code&amp;gt; on the snippet since the syntax might have changed!&lt;br /&gt;
&lt;br /&gt;
If you use a higher version of LilyPond then you must include the full version as &amp;lt;code&amp;gt;&amp;lt;lilypond version=&amp;quot;2.25.31&amp;quot;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=p&lt;br /&gt;
|header=List of all pages&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=l&lt;br /&gt;
|header=List of snippets by numbers&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages/LSR_1}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6245</id>
		<title>User:Manuela/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6245"/>
		<updated>2026-01-24T18:23:38Z</updated>

		<summary type="html">&lt;p&gt;Manuela: Header&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;text-align: center; &lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px; &lt;br /&gt;
background-color: #f9f9f9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font: bold 2.3em forte,serif; color: #d0a;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 2px 2px #202020,3px 3px 10px #888;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;Welcome to the&amp;lt;/div&amp;gt; &amp;lt;div style=&amp;quot;font: bold 4.3em forte,serif; color: #d0a;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 2px 2px #202020,3px 3px 10px #888;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;LilyPond WIKI&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.25em&amp;quot;&amp;gt;This is a place where you can find and contribute commented code snippets for the [https://lilypond.org/ GNU LilyPond] music typesetting program.&amp;lt;/div&amp;gt;&lt;br /&gt;
In this wiki there are {{NUMBEROFARTICLES}} [[Special:AllPages|articles]] on {{NUMBEROFPAGES}} pages.&lt;br /&gt;
{{NUMBEROFUSERS}} [[Special:ListUsers|users]] have made {{NUMBEROFEDITS}} edits. Uploading files is prohibited.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center; display: inline-block; padding: 1em; font-size: 1.2em; font-weight: bold; margin-top: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: auto&amp;quot;&amp;gt;[[Special:Prefixindex/A|A]] · [[Special:Prefixindex/B|B]] · [[Special:Prefixindex/C|C]] · [[Special:Prefixindex/D|D]] · [[Special:Prefixindex/E|E]] · [[Special:Prefixindex/F|F]] · [[Special:Prefixindex/G|G]] · [[Special:Prefixindex/H|H]] · [[Special:Prefixindex/I|I]] · [[Special:Prefixindex/J|J]] · [[Special:Prefixindex/K|K]] · [[Special:Prefixindex/L|L]] · [[Special:Prefixindex/M|M]] · [[Special:Prefixindex/N|N]] · [[Special:Prefixindex/O|O]] · [[Special:Prefixindex/P|P]] · [[Special:Prefixindex/Q|Q]] · [[Special:Prefixindex/R|R]] · [[Special:Prefixindex/S|S]] · [[Special:Prefixindex/T|T]] · [[Special:Prefixindex/U|U]] · [[Special:Prefixindex/V|V]] · [[Special:Prefixindex/W|W]] · [[Special:Prefixindex/X|X]] · [[Special:Prefixindex/Y|Y]] · [[Special:Prefixindex/Z|Z]]&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=g&lt;br /&gt;
|header=What is Lilypond?&lt;br /&gt;
|body=LilyPond is a &#039;&#039;compiled&#039;&#039; system: it is run on a text file describing the music. The resulting output is viewed on-screen or printed. In some ways, LilyPond is more similar to a programming language than graphical score editing software.&lt;br /&gt;
&lt;br /&gt;
You do not write music by dragging notes from a graphical toolbar and placing them on a dynamically refreshing score; you write music by typing text. This text is interpreted (or “compiled”) by LilyPond, which produces beautifully engraved sheet music.&lt;br /&gt;
&lt;br /&gt;
People accustomed to graphical user interfaces might need to learn a new way of working, but the results are definitely worth it! }}&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is a Wiki?&lt;br /&gt;
|body=[https://en.wikipedia.org/wiki/Wiki Wiki is Hawaiian] for “quick”. A wiki can not only be viewed, but also edited, either by registered users or in many cases also anonymously, depending on the configuration of the wiki. It works on the same principle as the well-known [https://www.wikipedia.org/ online encyclopedia WikiPedia] and is based on the freely available software [https://www.mediawiki.org/wiki/MediaWiki MediaWiki].&lt;br /&gt;
&lt;br /&gt;
[https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents What is Mediawiki?] [https://www.mediawiki.org/wiki/Differences_between_Wikipedia,_Wikimedia,_MediaWiki,_and_wiki What is the difference between Wikipedia, Wikimedia, MediaWiki, and wiki?] [[Help:Contributing|Here you can find help for editing]] in this Wiki, and here [https://en.wikipedia.org/wiki/Help:Menu/Editing%20Wikipedia help for editing in a Wiki] in general.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Help:Score Wikipedia] uses Lilypond.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=LilyPond Snippet Repository&lt;br /&gt;
|body=The &#039;&#039;snippet repository&#039;&#039; contains (relatively short) samples of Lilypond code for certain tasks.&lt;br /&gt;
&lt;br /&gt;
This samples should be well documented and compile as standalone.&lt;br /&gt;
&lt;br /&gt;
Use the search box to look for snippets or scroll through the lists to the right&lt;br /&gt;
&lt;br /&gt;
Most snippets are set up to use the current stable LilyPond release 2.24 (the intended version is always shown in the snippet). To use a newer version, don&#039;t forget to call &amp;lt;code&amp;gt;convert-ly&amp;lt;/code&amp;gt; on the snippet since the syntax might have changed!&lt;br /&gt;
&lt;br /&gt;
If you use a higher version of LilyPond then you must include the full version as &amp;lt;code&amp;gt;&amp;lt;lilypond version=&amp;quot;2.25.31&amp;quot;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=p&lt;br /&gt;
|header=List of all pages&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=l&lt;br /&gt;
|header=List of snippets by numbers&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages/LSR_1}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6242</id>
		<title>User:Manuela/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6242"/>
		<updated>2026-01-22T22:14:17Z</updated>

		<summary type="html">&lt;p&gt;Manuela: english Wiki explanation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;text-align: center; &lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px; &lt;br /&gt;
background-color: #f9f9f9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font: bold 4.3em forte,serif; color: #d0a;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 2px 2px #202020,3px 3px 10px #888;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;Welcome to the Lilypond WIKI&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.25em&amp;quot;&amp;gt;This is a place where you can find and contribute commented code snippets for the [https://lilypond.org/ GNU LilyPond] music typesetting program.&amp;lt;/div&amp;gt;&lt;br /&gt;
In this wiki there are {{NUMBEROFARTICLES}} [[Special:AllPages|articles]] on {{NUMBEROFPAGES}} pages.&lt;br /&gt;
{{NUMBEROFUSERS}} [[Special:ListUsers|users]] have made {{NUMBEROFEDITS}} edits. Uploading files is prohibited.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center; display: inline-block; padding: 1em; font-size: 1.2em; font-weight: bold; margin-top: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: auto&amp;quot;&amp;gt;[[Special:Prefixindex/A|A]] · [[Special:Prefixindex/B|B]] · [[Special:Prefixindex/C|C]] · [[Special:Prefixindex/D|D]] · [[Special:Prefixindex/E|E]] · [[Special:Prefixindex/F|F]] · [[Special:Prefixindex/G|G]] · [[Special:Prefixindex/H|H]] · [[Special:Prefixindex/I|I]] · [[Special:Prefixindex/J|J]] · [[Special:Prefixindex/K|K]] · [[Special:Prefixindex/L|L]] · [[Special:Prefixindex/M|M]] · [[Special:Prefixindex/N|N]] · [[Special:Prefixindex/O|O]] · [[Special:Prefixindex/P|P]] · [[Special:Prefixindex/Q|Q]] · [[Special:Prefixindex/R|R]] · [[Special:Prefixindex/S|S]] · [[Special:Prefixindex/T|T]] · [[Special:Prefixindex/U|U]] · [[Special:Prefixindex/V|V]] · [[Special:Prefixindex/W|W]] · [[Special:Prefixindex/X|X]] · [[Special:Prefixindex/Y|Y]] · [[Special:Prefixindex/Z|Z]]&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=g&lt;br /&gt;
|header=What is Lilypond?&lt;br /&gt;
|body=LilyPond is a &#039;&#039;compiled&#039;&#039; system: it is run on a text file describing the music. The resulting output is viewed on-screen or printed. In some ways, LilyPond is more similar to a programming language than graphical score editing software.&lt;br /&gt;
&lt;br /&gt;
You do not write music by dragging notes from a graphical toolbar and placing them on a dynamically refreshing score; you write music by typing text. This text is interpreted (or “compiled”) by LilyPond, which produces beautifully engraved sheet music.&lt;br /&gt;
&lt;br /&gt;
People accustomed to graphical user interfaces might need to learn a new way of working, but the results are definitely worth it! }}&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is a Wiki?&lt;br /&gt;
|body=[https://en.wikipedia.org/wiki/Wiki Wiki is Hawaiian] for “quick”. A wiki can not only be viewed, but also edited, either by registered users or in many cases also anonymously, depending on the configuration of the wiki. It works on the same principle as the well-known [https://www.wikipedia.org/ online encyclopedia WikiPedia] and is based on the freely available software [https://www.mediawiki.org/wiki/MediaWiki MediaWiki].&lt;br /&gt;
&lt;br /&gt;
[https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents What is Mediawiki?] [https://www.mediawiki.org/wiki/Differences_between_Wikipedia,_Wikimedia,_MediaWiki,_and_wiki What is the difference between Wikipedia, Wikimedia, MediaWiki, and wiki?] [[Help:Contributing|Here you can find help for editing]] in this Wiki, and here [https://en.wikipedia.org/wiki/Help:Menu/Editing%20Wikipedia help for editing in a Wiki] in general.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Help:Score Wikipedia] uses Lilypond.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=LilyPond Snippet Repository&lt;br /&gt;
|body=The &#039;&#039;snippet repository&#039;&#039; contains (relatively short) samples of Lilypond code for certain tasks.&lt;br /&gt;
&lt;br /&gt;
This samples should be well documented and compile as standalone.&lt;br /&gt;
&lt;br /&gt;
Use the search box to look for snippets or scroll through the lists to the right&lt;br /&gt;
&lt;br /&gt;
Most snippets are set up to use the current stable LilyPond release 2.24 (the intended version is always shown in the snippet). To use a newer version, don&#039;t forget to call &amp;lt;code&amp;gt;convert-ly&amp;lt;/code&amp;gt; on the snippet since the syntax might have changed!&lt;br /&gt;
&lt;br /&gt;
If you use a higher version of LilyPond then you must include the full version as &amp;lt;code&amp;gt;&amp;lt;lilypond version=&amp;quot;2.25.31&amp;quot;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=p&lt;br /&gt;
|header=List of all pages&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=l&lt;br /&gt;
|header=List of snippets by numbers&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages/LSR_1}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6241</id>
		<title>User:Manuela/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6241"/>
		<updated>2026-01-22T19:32:14Z</updated>

		<summary type="html">&lt;p&gt;Manuela: removed border of navigation bar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;text-align: center; &lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px; &lt;br /&gt;
background-color: #f9f9f9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font: bold 4.3em forte,serif; color: #d0a;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 2px 2px #202020,3px 3px 10px #888;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;Welcome to the Lilypond WIKI&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.25em&amp;quot;&amp;gt;This is a place where you can find and contribute commented code snippets for the [https://lilypond.org/ GNU LilyPond] music typesetting program.&amp;lt;/div&amp;gt;&lt;br /&gt;
In this wiki there are {{NUMBEROFARTICLES}} [[Special:AllPages|articles]] on {{NUMBEROFPAGES}} pages.&lt;br /&gt;
{{NUMBEROFUSERS}} [[Special:ListUsers|users]] have made {{NUMBEROFEDITS}} edits. Uploading files is prohibited.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center; display: inline-block; padding: 1em; font-size: 1.2em; font-weight: bold; margin-top: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: auto&amp;quot;&amp;gt;[[Special:Prefixindex/A|A]] · [[Special:Prefixindex/B|B]] · [[Special:Prefixindex/C|C]] · [[Special:Prefixindex/D|D]] · [[Special:Prefixindex/E|E]] · [[Special:Prefixindex/F|F]] · [[Special:Prefixindex/G|G]] · [[Special:Prefixindex/H|H]] · [[Special:Prefixindex/I|I]] · [[Special:Prefixindex/J|J]] · [[Special:Prefixindex/K|K]] · [[Special:Prefixindex/L|L]] · [[Special:Prefixindex/M|M]] · [[Special:Prefixindex/N|N]] · [[Special:Prefixindex/O|O]] · [[Special:Prefixindex/P|P]] · [[Special:Prefixindex/Q|Q]] · [[Special:Prefixindex/R|R]] · [[Special:Prefixindex/S|S]] · [[Special:Prefixindex/T|T]] · [[Special:Prefixindex/U|U]] · [[Special:Prefixindex/V|V]] · [[Special:Prefixindex/W|W]] · [[Special:Prefixindex/X|X]] · [[Special:Prefixindex/Y|Y]] · [[Special:Prefixindex/Z|Z]]&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=g&lt;br /&gt;
|header=What is Lilypond?&lt;br /&gt;
|body=LilyPond is a &#039;&#039;compiled&#039;&#039; system: it is run on a text file describing the music. The resulting output is viewed on-screen or printed. In some ways, LilyPond is more similar to a programming language than graphical score editing software.&lt;br /&gt;
&lt;br /&gt;
You do not write music by dragging notes from a graphical toolbar and placing them on a dynamically refreshing score; you write music by typing text. This text is interpreted (or “compiled”) by LilyPond, which produces beautifully engraved sheet music.&lt;br /&gt;
&lt;br /&gt;
People accustomed to graphical user interfaces might need to learn a new way of working, but the results are definitely worth it! }}&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is a Wiki?&lt;br /&gt;
|body=[https://de.wikipedia.org/wiki/Wiki Wiki is Hawaiian] for “quick”. A wiki can not only be viewed, but also edited, either by registered users or in many cases also anonymously, depending on the configuration of the wiki. It works on the same principle as the well-known [https://www.wikipedia.org/ online encyclopedia WikiPedia] and is based on the freely available software [https://www.mediawiki.org/wiki/MediaWiki MediaWiki].&lt;br /&gt;
&lt;br /&gt;
[https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents What is Mediawiki?] [https://www.mediawiki.org/wiki/Differences_between_Wikipedia,_Wikimedia,_MediaWiki,_and_wiki What is the difference between Wikipedia, Wikimedia, MediaWiki, and wiki?] [[Help:Contributing|Here you can find help for editing]] in this Wiki, and here [https://en.wikipedia.org/wiki/Help:Menu/Editing%20Wikipedia help for editing in a Wiki] in general.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Help:Score Wikipedia] uses Lilypond.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=LilyPond Snippet Repository&lt;br /&gt;
|body=The &#039;&#039;snippet repository&#039;&#039; contains (relatively short) samples of Lilypond code for certain tasks.&lt;br /&gt;
&lt;br /&gt;
This samples should be well documented and compile as standalone.&lt;br /&gt;
&lt;br /&gt;
Use the search box to look for snippets or scroll through the lists to the right&lt;br /&gt;
&lt;br /&gt;
Most snippets are set up to use the current stable LilyPond release 2.24 (the intended version is always shown in the snippet). To use a newer version, don&#039;t forget to call &amp;lt;code&amp;gt;convert-ly&amp;lt;/code&amp;gt; on the snippet since the syntax might have changed!&lt;br /&gt;
&lt;br /&gt;
If you use a higher version of LilyPond then you must include the full version as &amp;lt;code&amp;gt;&amp;lt;lilypond version=&amp;quot;2.25.31&amp;quot;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=p&lt;br /&gt;
|header=List of all pages&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=l&lt;br /&gt;
|header=List of snippets by numbers&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages/LSR_1}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6240</id>
		<title>User:Manuela/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/Main_Page&amp;diff=6240"/>
		<updated>2026-01-22T19:31:08Z</updated>

		<summary type="html">&lt;p&gt;Manuela: navigation bar added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;text-align: center; &lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px; &lt;br /&gt;
background-color: #f9f9f9;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font: bold 4.3em forte,serif; color: #d0a;&lt;br /&gt;
text-shadow: 2px 0 #fff,0 2px #fff, 2px 2px #202020,3px 3px 10px #888;&lt;br /&gt;
white-space: nowrap&amp;quot;&amp;gt;Welcome to the Lilypond WIKI&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.25em&amp;quot;&amp;gt;This is a place where you can find and contribute commented code snippets for the [https://lilypond.org/ GNU LilyPond] music typesetting program.&amp;lt;/div&amp;gt;&lt;br /&gt;
In this wiki there are {{NUMBEROFARTICLES}} [[Special:AllPages|articles]] on {{NUMBEROFPAGES}} pages.&lt;br /&gt;
{{NUMBEROFUSERS}} [[Special:ListUsers|users]] have made {{NUMBEROFEDITS}} edits. Uploading files is prohibited.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center; width: 100%; display: inline-block; padding: 1em; border: 1px dotted #888; font-size: 1.2em; font-weight: bold; margin-top: 10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: auto&amp;quot;&amp;gt;[[Special:Prefixindex/A|A]] · [[Special:Prefixindex/B|B]] · [[Special:Prefixindex/C|C]] · [[Special:Prefixindex/D|D]] · [[Special:Prefixindex/E|E]] · [[Special:Prefixindex/F|F]] · [[Special:Prefixindex/G|G]] · [[Special:Prefixindex/H|H]] · [[Special:Prefixindex/I|I]] · [[Special:Prefixindex/J|J]] · [[Special:Prefixindex/K|K]] · [[Special:Prefixindex/L|L]] · [[Special:Prefixindex/M|M]] · [[Special:Prefixindex/N|N]] · [[Special:Prefixindex/O|O]] · [[Special:Prefixindex/P|P]] · [[Special:Prefixindex/Q|Q]] · [[Special:Prefixindex/R|R]] · [[Special:Prefixindex/S|S]] · [[Special:Prefixindex/T|T]] · [[Special:Prefixindex/U|U]] · [[Special:Prefixindex/V|V]] · [[Special:Prefixindex/W|W]] · [[Special:Prefixindex/X|X]] · [[Special:Prefixindex/Y|Y]] · [[Special:Prefixindex/Z|Z]]&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=g&lt;br /&gt;
|header=What is Lilypond?&lt;br /&gt;
|body=LilyPond is a &#039;&#039;compiled&#039;&#039; system: it is run on a text file describing the music. The resulting output is viewed on-screen or printed. In some ways, LilyPond is more similar to a programming language than graphical score editing software.&lt;br /&gt;
&lt;br /&gt;
You do not write music by dragging notes from a graphical toolbar and placing them on a dynamically refreshing score; you write music by typing text. This text is interpreted (or “compiled”) by LilyPond, which produces beautifully engraved sheet music.&lt;br /&gt;
&lt;br /&gt;
People accustomed to graphical user interfaces might need to learn a new way of working, but the results are definitely worth it! }}&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=What is a Wiki?&lt;br /&gt;
|body=[https://de.wikipedia.org/wiki/Wiki Wiki is Hawaiian] for “quick”. A wiki can not only be viewed, but also edited, either by registered users or in many cases also anonymously, depending on the configuration of the wiki. It works on the same principle as the well-known [https://www.wikipedia.org/ online encyclopedia WikiPedia] and is based on the freely available software [https://www.mediawiki.org/wiki/MediaWiki MediaWiki].&lt;br /&gt;
&lt;br /&gt;
[https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents What is Mediawiki?] [https://www.mediawiki.org/wiki/Differences_between_Wikipedia,_Wikimedia,_MediaWiki,_and_wiki What is the difference between Wikipedia, Wikimedia, MediaWiki, and wiki?] [[Help:Contributing|Here you can find help for editing]] in this Wiki, and here [https://en.wikipedia.org/wiki/Help:Menu/Editing%20Wikipedia help for editing in a Wiki] in general.&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Help:Score Wikipedia] uses Lilypond.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; text-align: left;&amp;quot; &amp;gt;&lt;br /&gt;
{{User:Manuela/colored box|shade=b&lt;br /&gt;
|header=LilyPond Snippet Repository&lt;br /&gt;
|body=The &#039;&#039;snippet repository&#039;&#039; contains (relatively short) samples of Lilypond code for certain tasks.&lt;br /&gt;
&lt;br /&gt;
This samples should be well documented and compile as standalone.&lt;br /&gt;
&lt;br /&gt;
Use the search box to look for snippets or scroll through the lists to the right&lt;br /&gt;
&lt;br /&gt;
Most snippets are set up to use the current stable LilyPond release 2.24 (the intended version is always shown in the snippet). To use a newer version, don&#039;t forget to call &amp;lt;code&amp;gt;convert-ly&amp;lt;/code&amp;gt; on the snippet since the syntax might have changed!&lt;br /&gt;
&lt;br /&gt;
If you use a higher version of LilyPond then you must include the full version as &amp;lt;code&amp;gt;&amp;lt;lilypond version=&amp;quot;2.25.31&amp;quot;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=p&lt;br /&gt;
|header=List of all pages&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{User:Manuela/colored box|shade=l&lt;br /&gt;
|header=List of snippets by numbers&lt;br /&gt;
|body=&lt;br /&gt;
&amp;lt;div style=&amp;quot;height: 20em; overflow-y: scroll; overflow-x: scroll;&amp;quot;&amp;gt;{{Special:AllPages/LSR_1}}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC/doc&amp;diff=6239</id>
		<title>Template:LILYSTABLEDOC/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC/doc&amp;diff=6239"/>
		<updated>2026-01-22T19:15:52Z</updated>

		<summary type="html">&lt;p&gt;Manuela: example in div&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
This template gives the documentation root directory for the current stable version of LilyPond.&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Example of usage ==&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{PAGENAME}}&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;{{ {{PAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
&lt;br /&gt;
== Subpages ==&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC/doc&amp;diff=6238</id>
		<title>Template:LILYSTABLEDOC/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC/doc&amp;diff=6238"/>
		<updated>2026-01-22T19:15:18Z</updated>

		<summary type="html">&lt;p&gt;Manuela: blank added, is obviously needed, I hope this works now&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
This template gives the documentation root directory for the current stable version of LilyPond.&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Example of usage ==&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{PAGENAME}}&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
{{ {{PAGENAME}}}}&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
&lt;br /&gt;
== Subpages ==&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC/doc&amp;diff=6237</id>
		<title>Template:LILYSTABLEDOC/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC/doc&amp;diff=6237"/>
		<updated>2026-01-22T19:12:29Z</updated>

		<summary type="html">&lt;p&gt;Manuela: usage example added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
This template gives the documentation root directory for the current stable version of LilyPond.&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Example of usage ==&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{&amp;lt;/nowiki&amp;gt;{{PAGENAME}}&amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
{{{{PAGENAME}}}}&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
&lt;br /&gt;
== Subpages ==&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC/doc&amp;diff=6236</id>
		<title>Template:LILYSTABLEDOC/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC/doc&amp;diff=6236"/>
		<updated>2026-01-22T19:02:58Z</updated>

		<summary type="html">&lt;p&gt;Manuela: description text added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
This template gives the documentation root directory for the current stable version of LilyPond.&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
&lt;br /&gt;
== Subpages ==&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC&amp;diff=6235</id>
		<title>Template:LILYSTABLEDOC</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC&amp;diff=6235"/>
		<updated>2026-01-22T19:02:04Z</updated>

		<summary type="html">&lt;p&gt;Manuela: unnecessary text removed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;https://lilypond.org/doc/v{{LILYSTABLE}}/Documentation&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{PAGENAME}}/doc}}&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC&amp;diff=6234</id>
		<title>Template:LILYSTABLEDOC</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC&amp;diff=6234"/>
		<updated>2026-01-22T19:01:24Z</updated>

		<summary type="html">&lt;p&gt;Manuela: template documentation added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This template gives the documentation root directory for the current stable version of LilyPond.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;https://lilypond.org/doc/v{{LILYSTABLE}}/Documentation&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{{{PAGENAME}}/doc}}&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC/doc&amp;diff=6233</id>
		<title>Template:LILYSTABLEDOC/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Template:LILYSTABLEDOC/doc&amp;diff=6233"/>
		<updated>2026-01-22T19:00:06Z</updated>

		<summary type="html">&lt;p&gt;Manuela: Created page with &amp;quot;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt; == Raw Content == &amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt; == Usage of this template == {{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}  == Subpages == {{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}  &amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt; This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
&lt;br /&gt;
== Subpages ==&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box&amp;diff=6232</id>
		<title>User:Manuela/colored box</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box&amp;diff=6232"/>
		<updated>2026-01-22T18:59:15Z</updated>

		<summary type="html">&lt;p&gt;Manuela: show content only in include pages&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px;&lt;br /&gt;
background-color: {{#switch: {{{shade}}}&lt;br /&gt;
 | b|bl|blu|blue = #f5faff;&lt;br /&gt;
 | gr|gre|gree|green|g= #f5fffa;&lt;br /&gt;
 | l|li|lil|lila|lilac = #faf5ff;&lt;br /&gt;
 | p|pi|pin|pink = #fff5fa;&lt;br /&gt;
 | #fafafa;&lt;br /&gt;
}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: left;&lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0.2em 0.4em; line-height: 1.375;&lt;br /&gt;
margin: 0.5em 0;&lt;br /&gt;
font-size: 120%;&lt;br /&gt;
font-weight: bold;&lt;br /&gt;
font-family: inherit;&lt;br /&gt;
background-color: {{#switch: {{{shade}}}&lt;br /&gt;
 | b|bl|blu|blue = #cedff2;&lt;br /&gt;
 | gr|gre|gree|green|g= #a3bfb1;&lt;br /&gt;
 | l|li|lil|lila|lilac = #ddcef2;&lt;br /&gt;
 | p|pi|pin|pink = #f2cedd;&lt;br /&gt;
 | #eee;&lt;br /&gt;
}}&amp;quot;&amp;quot;&amp;gt;{{{header}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
{{{body}}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
{{User:Manuela/colored box/doc}}&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box&amp;diff=6231</id>
		<title>User:Manuela/colored box</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box&amp;diff=6231"/>
		<updated>2026-01-22T18:58:41Z</updated>

		<summary type="html">&lt;p&gt;Manuela: template documentation added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #aaa;&lt;br /&gt;
padding: 0 0.5em 0.5em;&lt;br /&gt;
margin-top: 4px;&lt;br /&gt;
background-color: {{#switch: {{{shade}}}&lt;br /&gt;
 | b|bl|blu|blue = #f5faff;&lt;br /&gt;
 | gr|gre|gree|green|g= #f5fffa;&lt;br /&gt;
 | l|li|lil|lila|lilac = #faf5ff;&lt;br /&gt;
 | p|pi|pin|pink = #fff5fa;&lt;br /&gt;
 | #fafafa;&lt;br /&gt;
}}&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: left;&lt;br /&gt;
border: 1px solid #aaa;&lt;br /&gt;
padding: 0.2em 0.4em; line-height: 1.375;&lt;br /&gt;
margin: 0.5em 0;&lt;br /&gt;
font-size: 120%;&lt;br /&gt;
font-weight: bold;&lt;br /&gt;
font-family: inherit;&lt;br /&gt;
background-color: {{#switch: {{{shade}}}&lt;br /&gt;
 | b|bl|blu|blue = #cedff2;&lt;br /&gt;
 | gr|gre|gree|green|g= #a3bfb1;&lt;br /&gt;
 | l|li|lil|lila|lilac = #ddcef2;&lt;br /&gt;
 | p|pi|pin|pink = #f2cedd;&lt;br /&gt;
 | #eee;&lt;br /&gt;
}}&amp;quot;&amp;quot;&amp;gt;{{{header}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
{{{body}}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/onlyinclude&amp;gt;&lt;br /&gt;
{{User:Manuela/colored box/doc}}&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6230</id>
		<title>User:Manuela/colored box/doc</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela/colored_box/doc&amp;diff=6230"/>
		<updated>2026-01-22T18:57:48Z</updated>

		<summary type="html">&lt;p&gt;Manuela: Created page with &amp;quot;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt; == Raw Content == &amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt; == Usage of this template == {{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}} == Subpages ==  {{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}} &amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt; This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
== Raw Content ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Usage of this template ==&lt;br /&gt;
{{Special:WhatLinksHere/{{NAMESPACE}}:{{BASEPAGENAME}}|hideredirs=1&amp;amp;hidelinks=1}}&lt;br /&gt;
== Subpages ==&lt;br /&gt;
&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
This is the documentation page of the template &amp;lt;code&amp;gt;{{BASEPAGENAME}}&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=User:Manuela&amp;diff=6229</id>
		<title>User:Manuela</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=User:Manuela&amp;diff=6229"/>
		<updated>2026-01-22T18:53:50Z</updated>

		<summary type="html">&lt;p&gt;Manuela: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In this wiki there are {{NUMBEROFARTICLES}} [[Special:AllPages|articles]] on&lt;br /&gt;
{{NUMBEROFPAGES}} pages.&lt;br /&gt;
{{NUMBEROFUSERS}} [[Special:ListUsers|users]] have uploaded&lt;br /&gt;
{{NUMBEROFFILES}} [[Special:ListFiles|files]] and made&lt;br /&gt;
{{NUMBEROFEDITS}} edits.&lt;br /&gt;
&lt;br /&gt;
[[Special:Statistics|Statistics]] · [[Special:Version|Version]] · [[Special:ExpandTemplates|Expand Templates]]&lt;br /&gt;
&lt;br /&gt;
== Standard namespaces ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 60em; margin: 0 0 0 1em&amp;quot;&amp;gt;&lt;br /&gt;
[[Special:AllPages|Articles]] · [[Special:AllPages/{{ns:2}}:|{{ns:2}}]] · [[Special:AllPages/{{ns:4}}:|{{ns:4}}]] · [[Special:AllPages/{{ns:6}}:|{{ns:6}}]] · [[Special:AllPages/{{ns:8}}:|{{ns:8}}]] · [[Special:AllPages/{{ns:10}}:|{{ns:10}}]] · [[Special:AllPages/{{ns:12}}:|{{ns:12}}]] · [[Special:AllPages/{{ns:14}}:|{{ns:14}}]]  · [[Special:AllMessages|Systemnachrichten]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Special Users==&lt;br /&gt;
*[[Special:ListUsers/sysop|Admins]]&lt;br /&gt;
*[[Special:ListUsers/bureaucrat|Bürokraten]]&lt;br /&gt;
*[[Special:ListUsers/interface-admin|Interface Administratoren]]&lt;br /&gt;
*[[Special:ListUsers/push-subscription-manager|Push subscription manager was immer das auch sein soll]]&lt;br /&gt;
&lt;br /&gt;
== Special Characters ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-family: &#039;Lucida Console&#039;, &#039;Courier New&#039;, monospace; font-size: 1.01em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Sonderzeichen:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&amp;amp;bdquo;+&amp;amp;ldquo; &amp;amp;sbquo;+&amp;amp;lsquo; &amp;amp;raquo;+&amp;amp;laquo; ›+‹ &amp;amp;mdash; &amp;amp;ndash; &amp;amp;middot; &amp;amp;bull; &amp;amp;times; &amp;amp;deg; &amp;amp;plusmn; &amp;amp;sup2; &amp;amp;sup3; &amp;amp;amp;#58; &amp;amp;amp;#42; &amp;amp;frac14; &amp;amp;frac12; &amp;amp;frac34; × ² ³ € † … ’ ` ✔ ✘ ↯ ± × ÷ √ ≠ ≤ ≥ ≡ ® © ← ↑ → ↓ ↔ ↕ ∅&amp;lt;/nowiki&amp;gt;&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Codes:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;div&amp;gt;&amp;lt;nowiki&amp;gt;[+] [[+]] {{+}} {{!}} {{{+}}} {{!!}} {{(}} {{)}} {{(!}} {{!-}} {{!)}} &amp;lt;sup&amp;gt;+&amp;lt;/sup&amp;gt; &amp;amp;amp;nbsp;&amp;lt;/nowiki&amp;gt; &amp;lt;nowiki&amp;gt;&amp;amp;amp;#8239; &amp;amp;amp;#8199; {+} ~~~~ &amp;lt;del&amp;gt;+&amp;lt;/del&amp;gt; &amp;lt;math&amp;gt;+&amp;lt;/math&amp;gt; &amp;lt;code&amp;gt;+&amp;lt;/code&amp;gt; &amp;amp;lt;code&amp;gt;&amp;amp;lt;nowiki&amp;gt;+&amp;amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; &amp;lt;s&amp;gt;+&amp;lt;/s&amp;gt; &amp;lt;tt&amp;gt;+&amp;lt;/tt&amp;gt; &amp;lt;div style=&amp;quot;display: inline-block&amp;quot;&amp;gt;+&amp;lt;/div&amp;gt; &amp;lt;div&amp;gt;+&amp;lt;/div&amp;gt; &amp;lt;p&amp;gt;+&amp;lt;/p&amp;gt; &amp;lt;span&amp;gt;+&amp;lt;/span&amp;gt; &amp;amp;amp;nbsp; [[File:+|300px]]&amp;lt;/nowiki&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Tags:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;div&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;categorytree&amp;gt;+&amp;lt;/categorytree&amp;gt; &amp;lt;syntaxhighlight&amp;gt;+&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;dynamicpagelist&amp;gt;+&amp;lt;/dynamicpagelist&amp;gt; &amp;lt;gallery&amp;gt;+&amp;lt;/gallery&amp;gt; &amp;lt;imagemap&amp;gt;+&amp;lt;/imagemap&amp;gt; &amp;lt;indicator&amp;gt;+&amp;lt;/indicator&amp;gt; &amp;lt;inputbox&amp;gt;+&amp;lt;/inputbox&amp;gt; + &amp;lt;phptag&amp;gt;+&amp;lt;/phptag&amp;gt; &amp;lt;poem&amp;gt;+&amp;lt;/poem&amp;gt; &amp;lt;ref&amp;gt;+&amp;lt;/ref&amp;gt; &amp;lt;includeonly&amp;gt;&amp;lt;onlyinclude&amp;gt;+&amp;lt;/onlyinclude&amp;gt;&amp;lt;/includeonly&amp;gt; &amp;lt;includeonly&amp;gt;+&amp;lt;/includeonly&amp;gt; &amp;lt;noinclude&amp;gt;+&amp;lt;/noinclude&amp;gt; &amp;lt;onlyinclude&amp;gt;+&amp;lt;/onlyinclude&amp;gt; &amp;lt;math&amp;gt;+&amp;lt;/math&amp;gt; &amp;lt;syntaxhighlight lang=&amp;quot;lilypond&amp;quot; style=&amp;quot;display: inline-block&amp;quot;&amp;gt;+&amp;lt;/syntaxhighlight&amp;gt; {{#tag:tabber|text1=|{{!}}-{{!}}text2=}}&amp;amp;lt;charinsert&amp;gt;+&amp;amp;lt;/charinsert&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&#039;&#039;&#039;Wiki-Syntax:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;div&amp;gt;&amp;lt;nowiki&amp;gt;{{SERVER}} {{fullurl:+}} __FORCETOC__ __NEWSECTIONLINK__ __HIDDENCAT__ __NOEDITSECTION__ __NOTOC__ subst: {{{|safesubst:}}} {{CURRENTYEAR}} {{CURRENTMONTH}} {{CURRENTDAY}} {{NAMESPACE}} {{PAGENAME}} {{BASEPAGENAME}} {{FULLPAGENAME}} {{ROOTPAGENAME}} {{SUBPAGENAME}} {{SITENAME}} {{NAMESPACE}} {{NAMESPACENUMBER}} {{fullurl:+}} &amp;lt;nowiki&amp;gt;#REDIRECT [[+]]&amp;lt;/nowiki&amp;gt; {{PAGESINCATEGORY:+|R}}&amp;lt;/nowiki&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__FORCETOC__&lt;br /&gt;
== Raw Inhalt ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block; font-family: monospace; white-space: pre-wrap; font-size: 1em&amp;quot;&amp;gt;{{msgnw:{{FULLPAGENAME}}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
== Unterseiten ==&lt;br /&gt;
{{:Special:PrefixIndex/{{NAMESPACE}}:{{ROOTPAGENAME}}/}}&lt;/div&gt;</summary>
		<author><name>Manuela</name></author>
	</entry>
</feed>