<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to HowTo_TocChapterPrefix</title><link>https://sourceforge.net/p/koma-script/wiki-en/HowTo_TocChapterPrefix/</link><description>Recent changes to HowTo_TocChapterPrefix</description><atom:link href="https://sourceforge.net/p/koma-script/wiki-en/HowTo_TocChapterPrefix/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 13 Aug 2025 11:49:59 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/koma-script/wiki-en/HowTo_TocChapterPrefix/feed" rel="self" type="application/rss+xml"/><item><title>HowTo_TocChapterPrefix modified by Markus Kohm</title><link>https://sourceforge.net/p/koma-script/wiki-en/HowTo_TocChapterPrefix/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -1,7 +1,6 @@
 # How to prepend a “Chapter” to the number of chapter entries in the table of contents.

-This can be done in KOMA-Script primarily by redefining `\addchaptertocentry`. In this case, if a number has been specified, i.e. the first argument is not empty, it is best to insert `\chapapp` followed by a whitespace character, i.e.:
-
+For KOMA-Script versions before 3.46 this can be done primarily by redefining `\addchaptertocentry`. In this case, if a number has been specified, i.e. the first argument is not empty, it is best to insert `\chapapp` followed by a whitespace character, i.e.:
 ```latex
 \renewcommand*{\addchaptertocentry}[2]{%
   \IfArgIsEmpty{#1}{% no number:
@@ -13,36 +12,37 @@
 ```

 Additionally you have to make sure that there is enough space for the number. This can be done in KOMA-Script with the help of `\DeclareTOCStyleEntry`:
-
 ```latex
 \DeclareTOCStyleEntry[numwidth=5.5em]{chapter}{chapter}
 ```
-
 or `\RedeclareSectionCommand`:
-
 ```latex
 \RedeclareSectionCommand[tocnumwidth=5.5em]{chapter}
 ```
-
 can be achieved.

-I myself prefer `\RedeclareSectionCommand`, because you don't need to know, i.e. look up in the KOMA-Script manual, that there is a style `chapter` for chapter entries, which has to be specified as the first mandatory argument to `\DeclareTOCStyleEntry`.
+Since KOMA-Script 3.46, however, the `\DeclareTOCStyleEntry` option `numberprefix` for the style `tocline`—and thus also for the style `chapter` derived from it—allows the entry number to be directly preceded by a prefix:
+```latex
+\DeclareTOCStyleEntry[dynnumwidth,numberprefix=\chapapp\ ]{chapter}{chapter}
+```
+or
+```latex
+\RedeclareSectionCommand[tocdynnumwidth,tocnumberprefix=\chapapp\ ]{chapter}
+```
+Here I have left it to the `tocbasic` package to determine the required width for the number including the prefix itself via `dynnumwidth`.
+
+In addition, a colon is often required after the number in this style.

 All in all, this results in:
-
 ```latex
 \documentclass{scrbook}
 \usepackage{blindtext}

-\renewcommand*{\addchaptertocentry}[2]{%
-  \IfArgIsEmpty{#1}{% no number:
-    \addtocentrydefault{chapter}{#1}{#2}% as before.
-  }{% with number:
-    \addtocentrydefault{chapter}{\chapapp\ #1}{#2}%
-  }%
-}
-
-\RedeclareSectionCommand[tocnumwidth=5.5em]{chapter}
+\DeclareTOCStyleEntry[%
+  dynnumwidth,% automatic detection of needed number width
+  numberprefix=\chapapp\ ,% number prefix: "Chapter " resp. "Appendix "
+  numberpostfix=:,% number postfix: ":" 
+]{chapter}{chapter}

 \begin{document}
 \tableofcontents
@@ -52,7 +52,7 @@
 \end{document}
 ```

-Why `\chapapp` was used instead of a static string “`chapter`” should become clear if you read the explanation of this statement in the KOMA-Script manual or in the German KOMA-Script book. 
+Why `\chapapp` was used instead `\chaptername` or of a static string “Chapter” should become clear if you read the explanation of this statement in the KOMA-Script manual or in the German KOMA-Script book. 

 If the prefix should also be set for unnumbered entries and at the same time the text of the entry should be indented as for numbered entries, rather use the property `entrynumberformat` for `\DeclareTOCEntryStyle` or `tocentrynumberformat` for `\RedeclareSectionCommand` and additionally set option `toc=numberline`:

@@ -61,7 +61,7 @@
 \usepackage{blindtext}

 \newcommand*{\chapterentrynumberwithprefix}[1]{\chapapp\ #1}
-\RedeclareSectionCommand[tocnumwidth=5.5em,tocentrynumberformat=\chapterentrynumberwithprefix]{chapter}
+\RedeclareSectionCommand[tocdynnumwidth,tocentrynumberformat=\chapterentrynumberwithprefix]{chapter}

 \begin{document}
 \tableofcontents
@@ -83,7 +83,7 @@
 \renewcommand*{\tableofcontents}{\listoftoc[\contentsname]{toc}}% use tocbasic for the ToC
 \setuptoc{toc}{numberline}
 \newcommand*{\chapterentrynumberwithprefix}[1]{\csname @chapapp\endcsname\ #1}% \chapapp is unknown → use \@chapapp
-\DeclareTOCStyleEntry[numwidth=5.5em,entrynumberformat=\chapterentrynumberwithprefix]{tocline}{chapter}% style chapter is unknown → use style tocline
+\DeclareTOCStyleEntry[dynnumwidth,entrynumberformat=\chapterentrynumberwithprefix]{tocline}{chapter}% style chapter is unknown → use style tocline

 \begin{document}
 \tableofcontents
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Markus Kohm</dc:creator><pubDate>Wed, 13 Aug 2025 11:49:59 -0000</pubDate><guid>https://sourceforge.net4bc71a300365984a9b61d069c03fc9b65945b74c</guid></item><item><title>HowTo_TocChapterPrefix modified by Markus Kohm</title><link>https://sourceforge.net/p/koma-script/wiki-en/HowTo_TocChapterPrefix/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,4 +1,4 @@
-# How to prepend a “chapter” to the number of chapter entries in the table of contents.
+# How to prepend a “Chapter” to the number of chapter entries in the table of contents.

 This can be done in KOMA-Script primarily by redefining `\addchaptertocentry`. In this case, if a number has been specified, i.e. the first argument is not empty, it is best to insert `\chapapp` followed by a whitespace character, i.e.:

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Markus Kohm</dc:creator><pubDate>Thu, 05 Jun 2025 08:27:13 -0000</pubDate><guid>https://sourceforge.net53be7e9831f3ac5d1d9f2c819161603aeeb9a6e2</guid></item><item><title>HowTo_TocChapterPrefix modified by Markus Kohm</title><link>https://sourceforge.net/p/koma-script/wiki-en/HowTo_TocChapterPrefix/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Markus Kohm</dc:creator><pubDate>Wed, 28 Jul 2021 09:51:05 -0000</pubDate><guid>https://sourceforge.nete6ac96910c48ff758bd1c38b3413ed5b7a8fa243</guid></item><item><title>HowTo_TocChapterPrefix modified by Markus Kohm</title><link>https://sourceforge.net/p/koma-script/wiki-en/HowTo_TocChapterPrefix/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -80,7 +80,7 @@
 \usepackage{blindtext}
 \usepackage{tocbasic}

-\renewcommand*{\tableofcontents}{\listoftoc{toc}}% use tocbasic for the ToC
+\renewcommand*{\tableofcontents}{\listoftoc[\contentsname]{toc}}% use tocbasic for the ToC
 \setuptoc{toc}{numberline}
 \newcommand*{\chapterentrynumberwithprefix}[1]{\csname @chapapp\endcsname\ #1}% \chapapp is unknown → use \@chapapp
 \DeclareTOCStyleEntry[numwidth=5.5em,entrynumberformat=\chapterentrynumberwithprefix]{tocline}{chapter}% style chapter is unknown → use style tocline
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Markus Kohm</dc:creator><pubDate>Wed, 23 Jun 2021 18:17:46 -0000</pubDate><guid>https://sourceforge.netca1002dab30afb71813703ce87ffb42886cb3f09</guid></item><item><title>HowTo_TocChapterPrefix modified by Markus Kohm</title><link>https://sourceforge.net/p/koma-script/wiki-en/HowTo_TocChapterPrefix/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="how-to-prepend-a-chapter-to-the-number-of-chapter-entries-in-the-table-of-contents"&gt;How to prepend a “chapter” to the number of chapter entries in the table of contents.&lt;/h1&gt;
&lt;p&gt;This can be done in KOMA-Script primarily by redefining &lt;code&gt;\addchaptertocentry&lt;/code&gt;. In this case, if a number has been specified, i.e. the first argument is not empty, it is best to insert &lt;code&gt;\chapapp&lt;/code&gt; followed by a whitespace character, i.e.:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;span class="k"&gt;\renewcommand*&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\addchaptertocentry&lt;/span&gt;&lt;span class="nb"&gt;}&lt;/span&gt;[2]&lt;span class="nb"&gt;{&lt;/span&gt;&lt;span class="c"&gt;%&lt;/span&gt;
  &lt;span class="k"&gt;\IfArgIsEmpty&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;#1&lt;span class="nb"&gt;}{&lt;/span&gt;&lt;span class="c"&gt;% no number:&lt;/span&gt;
    &lt;span class="k"&gt;\addtocentrydefault&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;chapter&lt;span class="nb"&gt;}{&lt;/span&gt;#1&lt;span class="nb"&gt;}{&lt;/span&gt;#2&lt;span class="nb"&gt;}&lt;/span&gt;&lt;span class="c"&gt;% as before.&lt;/span&gt;
  &lt;span class="nb"&gt;}{&lt;/span&gt;&lt;span class="c"&gt;% with number:&lt;/span&gt;
    &lt;span class="k"&gt;\addtocentrydefault&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;chapter&lt;span class="nb"&gt;}{&lt;/span&gt;&lt;span class="k"&gt;\chapapp\ &lt;/span&gt;#1&lt;span class="nb"&gt;}{&lt;/span&gt;#2&lt;span class="nb"&gt;}&lt;/span&gt;&lt;span class="c"&gt;%&lt;/span&gt;
  &lt;span class="nb"&gt;}&lt;/span&gt;&lt;span class="c"&gt;%&lt;/span&gt;
&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;Additionally you have to make sure that there is enough space for the number. This can be done in KOMA-Script with the help of &lt;code&gt;\DeclareTOCStyleEntry&lt;/code&gt;:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;span class="k"&gt;\DeclareTOCStyleEntry&lt;/span&gt;&lt;span class="na"&gt;[numwidth=5.5em]&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;chapter&lt;span class="nb"&gt;}{&lt;/span&gt;chapter&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;or &lt;code&gt;\RedeclareSectionCommand&lt;/code&gt;:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;span class="k"&gt;\RedeclareSectionCommand&lt;/span&gt;&lt;span class="na"&gt;[tocnumwidth=5.5em]&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;chapter&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;can be achieved.&lt;/p&gt;
&lt;p&gt;I myself prefer &lt;code&gt;\RedeclareSectionCommand&lt;/code&gt;, because you don't need to know, i.e. look up in the KOMA-Script manual, that there is a style &lt;code&gt;chapter&lt;/code&gt; for chapter entries, which has to be specified as the first mandatory argument to &lt;code&gt;\DeclareTOCStyleEntry&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;All in all, this results in:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;span class="k"&gt;\documentclass&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;scrbook&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\usepackage&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;blindtext&lt;span class="nb"&gt;}&lt;/span&gt;

&lt;span class="k"&gt;\renewcommand*&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\addchaptertocentry&lt;/span&gt;&lt;span class="nb"&gt;}&lt;/span&gt;[2]&lt;span class="nb"&gt;{&lt;/span&gt;&lt;span class="c"&gt;%&lt;/span&gt;
  &lt;span class="k"&gt;\IfArgIsEmpty&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;#1&lt;span class="nb"&gt;}{&lt;/span&gt;&lt;span class="c"&gt;% no number:&lt;/span&gt;
    &lt;span class="k"&gt;\addtocentrydefault&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;chapter&lt;span class="nb"&gt;}{&lt;/span&gt;#1&lt;span class="nb"&gt;}{&lt;/span&gt;#2&lt;span class="nb"&gt;}&lt;/span&gt;&lt;span class="c"&gt;% as before.&lt;/span&gt;
  &lt;span class="nb"&gt;}{&lt;/span&gt;&lt;span class="c"&gt;% with number:&lt;/span&gt;
    &lt;span class="k"&gt;\addtocentrydefault&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;chapter&lt;span class="nb"&gt;}{&lt;/span&gt;&lt;span class="k"&gt;\chapapp\ &lt;/span&gt;#1&lt;span class="nb"&gt;}{&lt;/span&gt;#2&lt;span class="nb"&gt;}&lt;/span&gt;&lt;span class="c"&gt;%&lt;/span&gt;
  &lt;span class="nb"&gt;}&lt;/span&gt;&lt;span class="c"&gt;%&lt;/span&gt;
&lt;span class="nb"&gt;}&lt;/span&gt;

&lt;span class="k"&gt;\RedeclareSectionCommand&lt;/span&gt;&lt;span class="na"&gt;[tocnumwidth=5.5em]&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;chapter&lt;span class="nb"&gt;}&lt;/span&gt;

&lt;span class="k"&gt;\begin&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;document&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\tableofcontents&lt;/span&gt;
&lt;span class="k"&gt;\blinddocument&lt;/span&gt;
&lt;span class="k"&gt;\addchap&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;Heading of not numbered chapter&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\blindtext&lt;/span&gt;
&lt;span class="k"&gt;\end&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;document&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;Why &lt;code&gt;\chapapp&lt;/code&gt; was used instead of a static string “&lt;code&gt;chapter&lt;/code&gt;” should become clear if you read the explanation of this statement in the KOMA-Script manual or in the German KOMA-Script book. &lt;/p&gt;
&lt;p&gt;If the prefix should also be set for unnumbered entries and at the same time the text of the entry should be indented as for numbered entries, rather use the property &lt;code&gt;entrynumberformat&lt;/code&gt; for &lt;code&gt;\DeclareTOCEntryStyle&lt;/code&gt; or &lt;code&gt;tocentrynumberformat&lt;/code&gt; for &lt;code&gt;\RedeclareSectionCommand&lt;/code&gt; and additionally set option &lt;code&gt;toc=numberline&lt;/code&gt;:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;span class="k"&gt;\documentclass&lt;/span&gt;&lt;span class="na"&gt;[toc=numberline]&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;scrbook&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\usepackage&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;blindtext&lt;span class="nb"&gt;}&lt;/span&gt;

&lt;span class="k"&gt;\newcommand*&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\chapterentrynumberwithprefix&lt;/span&gt;&lt;span class="nb"&gt;}&lt;/span&gt;[1]&lt;span class="nb"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\chapapp\ &lt;/span&gt;#1&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\RedeclareSectionCommand&lt;/span&gt;&lt;span class="na"&gt;[tocnumwidth=5.5em,tocentrynumberformat=\chapterentrynumberwithprefix]&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;chapter&lt;span class="nb"&gt;}&lt;/span&gt;

&lt;span class="k"&gt;\begin&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;document&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\tableofcontents&lt;/span&gt;
&lt;span class="k"&gt;\blinddocument&lt;/span&gt;
&lt;span class="k"&gt;\addchap&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;heading of not numbered chapter&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\blindtext&lt;/span&gt;
&lt;span class="k"&gt;\end&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;document&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;Without the &lt;code&gt;toc=numberline&lt;/code&gt; option, using &lt;code&gt;tocentrynumberformat&lt;/code&gt; will only affect the numbered chapter entries.&lt;/p&gt;
&lt;p&gt;The solution using &lt;code&gt;entrynumberformat&lt;/code&gt; and &lt;code&gt;\DeclareTOCStyleEntry&lt;/code&gt; also works with the standard classes with some adjustments. Of course, package &lt;a class="" href="https://www.ctan.org/pkg/tocbasic" rel="nofollow"&gt;&lt;code&gt;tocbasic&lt;/code&gt;&lt;/a&gt; must then be loaded explicitly. The &lt;code&gt;numberline&lt;/code&gt; property is then set for the table of contents via &lt;code&gt;\setuptoc&lt;/code&gt;:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;span class="k"&gt;\documentclass&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;book&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\usepackage&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;blindtext&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\usepackage&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;tocbasic&lt;span class="nb"&gt;}&lt;/span&gt;

&lt;span class="k"&gt;\renewcommand*&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\tableofcontents&lt;/span&gt;&lt;span class="nb"&gt;}{&lt;/span&gt;&lt;span class="k"&gt;\listoftoc&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;toc&lt;span class="nb"&gt;}}&lt;/span&gt;&lt;span class="c"&gt;% use tocbasic for the ToC&lt;/span&gt;
&lt;span class="k"&gt;\setuptoc&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;toc&lt;span class="nb"&gt;}{&lt;/span&gt;numberline&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\newcommand*&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\chapterentrynumberwithprefix&lt;/span&gt;&lt;span class="nb"&gt;}&lt;/span&gt;[1]&lt;span class="nb"&gt;{&lt;/span&gt;&lt;span class="k"&gt;\csname&lt;/span&gt; @chapapp&lt;span class="k"&gt;\endcsname\ &lt;/span&gt;#1&lt;span class="nb"&gt;}&lt;/span&gt;&lt;span class="c"&gt;% \chapapp is unknown → use \@chapapp&lt;/span&gt;
&lt;span class="k"&gt;\DeclareTOCStyleEntry&lt;/span&gt;&lt;span class="na"&gt;[numwidth=5.5em,entrynumberformat=\chapterentrynumberwithprefix]&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;tocline&lt;span class="nb"&gt;}{&lt;/span&gt;chapter&lt;span class="nb"&gt;}&lt;/span&gt;&lt;span class="c"&gt;% style chapter is unknown → use style tocline&lt;/span&gt;

&lt;span class="k"&gt;\begin&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;document&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\tableofcontents&lt;/span&gt;
&lt;span class="k"&gt;\blinddocument&lt;/span&gt;
&lt;span class="k"&gt;\chapter*&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;Heading of not numbered chapter&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\addxcontentsline&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;toc&lt;span class="nb"&gt;}{&lt;/span&gt;chapter&lt;span class="nb"&gt;}{&lt;/span&gt;Heading of not numbered chapter&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;span class="k"&gt;\blindtext&lt;/span&gt;
&lt;span class="k"&gt;\end&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;document&lt;span class="nb"&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;

&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Markus Kohm</dc:creator><pubDate>Wed, 23 Jun 2021 17:20:32 -0000</pubDate><guid>https://sourceforge.net95fb49bce9a2505e26a7bd7e86e659f2194c53c5</guid></item></channel></rss>