<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.lilypond.community/index.php?action=history&amp;feed=atom&amp;title=Grouping_instrument_names_with_square_brackets</id>
	<title>Grouping instrument names with square brackets - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.lilypond.community/index.php?action=history&amp;feed=atom&amp;title=Grouping_instrument_names_with_square_brackets"/>
	<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Grouping_instrument_names_with_square_brackets&amp;action=history"/>
	<updated>2026-05-01T10:02:06Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wiki.lilypond.community/index.php?title=Grouping_instrument_names_with_square_brackets&amp;diff=6270&amp;oldid=prev</id>
		<title>Gabriel Ellsworth: Created page with &quot;If you want to label a group of instruments (staves, voices), you can draw lines to create your own shapes that mimic the appearance of the square brackets used by the &lt;code&gt;SystemStartSquare&lt;/code&gt; system start delimiter (see [https://lilypond.org/doc/v2.24/Documentation/notation/displaying-staves#grouping-staves “Grouping staves” in the Notation Reference]). Adjust the numerical values in the &lt;code&gt;\score&lt;/code&gt; block below as needed for your score.  &lt;lilypond vers...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.lilypond.community/index.php?title=Grouping_instrument_names_with_square_brackets&amp;diff=6270&amp;oldid=prev"/>
		<updated>2026-01-29T22:36:08Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;If you want to label a group of instruments (staves, voices), you can draw lines to create your own shapes that mimic the appearance of the square brackets used by the &amp;lt;code&amp;gt;SystemStartSquare&amp;lt;/code&amp;gt; system start delimiter (see [https://lilypond.org/doc/v2.24/Documentation/notation/displaying-staves#grouping-staves “Grouping staves” in the Notation Reference]). Adjust the numerical values in the &amp;lt;code&amp;gt;\score&amp;lt;/code&amp;gt; block below as needed for your score.  &amp;lt;lilypond vers...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;If you want to label a group of instruments (staves, voices), you can draw lines to create your own shapes that mimic the appearance of the square brackets used by the &amp;lt;code&amp;gt;SystemStartSquare&amp;lt;/code&amp;gt; system start delimiter (see [https://lilypond.org/doc/v2.24/Documentation/notation/displaying-staves#grouping-staves “Grouping staves” in the Notation Reference]). Adjust the numerical values in the &amp;lt;code&amp;gt;\score&amp;lt;/code&amp;gt; block below as needed for your score.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lilypond version=&amp;quot;2.24&amp;quot;&amp;gt;&lt;br /&gt;
%%% Approach suggested by Kieren MacMillan in&lt;br /&gt;
%% https://lists.gnu.org/archive/html/lilypond-user/2026-01/msg00293.html&lt;br /&gt;
choirI = \new Staff \with {&lt;br /&gt;
  instrumentName = &amp;quot;Choir I&amp;quot;&lt;br /&gt;
} { \repeat unfold 48 c&amp;#039;&amp;#039; }&lt;br /&gt;
&lt;br /&gt;
sopII = \new Staff \with {&lt;br /&gt;
  instrumentName = &amp;quot;Soprano II&amp;quot;&lt;br /&gt;
} { \repeat unfold 48 g&amp;#039; }&lt;br /&gt;
&lt;br /&gt;
altoII = \new Staff \with {&lt;br /&gt;
  instrumentName = &amp;quot;Alto II&amp;quot;&lt;br /&gt;
} { \repeat unfold 48 e&amp;#039; }&lt;br /&gt;
&lt;br /&gt;
tenorII = \new Staff \with {&lt;br /&gt;
  instrumentName = &amp;quot;Tenor II&amp;quot;&lt;br /&gt;
} { \clef &amp;quot;treble_8&amp;quot; \repeat unfold 48 c&amp;#039; }&lt;br /&gt;
&lt;br /&gt;
bassII = \new Staff \with {&lt;br /&gt;
  instrumentName = &amp;quot;Bass II&amp;quot;&lt;br /&gt;
} { \clef bass \repeat unfold 48 c }&lt;br /&gt;
&lt;br /&gt;
\layout {&lt;br /&gt;
  indent = 30&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
\score {&lt;br /&gt;
  &amp;lt;&amp;lt;&lt;br /&gt;
    \new StaffGroup \with {&lt;br /&gt;
      \override InstrumentName.padding = #-2&lt;br /&gt;
      instrumentName = \markup {&lt;br /&gt;
        \hspace #-12.6&lt;br /&gt;
        \rotate #90 \override #&amp;#039;(baseline-skip . 1) \center-column {&lt;br /&gt;
          \bold Decani&lt;br /&gt;
          \concat { \draw-line #&amp;#039;(0 . -1) \draw-line #&amp;#039;(4 . 0) \draw-line #&amp;#039;(0 . -1) }&lt;br /&gt;
        }&lt;br /&gt;
      }&lt;br /&gt;
    } \choirI&lt;br /&gt;
    \new StaffGroup \with {&lt;br /&gt;
      \override InstrumentName.padding = #-2&lt;br /&gt;
      instrumentName = \markup \translate #&amp;#039;(-9.5 . 0) {&lt;br /&gt;
        \hspace #-14&lt;br /&gt;
        \rotate #90 \override #&amp;#039;(baseline-skip . 1) \center-column {&lt;br /&gt;
          \bold Cantoris&lt;br /&gt;
          \concat { \draw-line #&amp;#039;(0 . -1) \draw-line #&amp;#039;(29.5 . 0) \draw-line #&amp;#039;(0 . -1) }&lt;br /&gt;
        }&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
    &amp;lt;&amp;lt;&lt;br /&gt;
      \sopII&lt;br /&gt;
      \altoII&lt;br /&gt;
      \tenorII&lt;br /&gt;
      \bassII&lt;br /&gt;
    &amp;gt;&amp;gt;&lt;br /&gt;
  &amp;gt;&amp;gt;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lilypond&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Staff notation]]&lt;br /&gt;
[[Category:Text]]&lt;br /&gt;
[[Category:Vocal music]]&lt;br /&gt;
[[Category:Snippet]]&lt;/div&gt;</summary>
		<author><name>Gabriel Ellsworth</name></author>
	</entry>
</feed>