<?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_FootSepLine</title><link>https://sourceforge.net/p/koma-script/wiki-en/HowTo_FootSepLine/</link><description>Recent changes to HowTo_FootSepLine</description><atom:link href="https://sourceforge.net/p/koma-script/wiki-en/HowTo_FootSepLine/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 28 Jul 2021 09:20:34 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/koma-script/wiki-en/HowTo_FootSepLine/feed" rel="self" type="application/rss+xml"/><item><title>HowTo_FootSepLine modified by Markus Kohm</title><link>https://sourceforge.net/p/koma-script/wiki-en/HowTo_FootSepLine/</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:20:34 -0000</pubDate><guid>https://sourceforge.net3c07121c88475bbc2f5e60661b67d37a3ad6b316</guid></item><item><title>HowTo_FootSepLine modified by Markus Kohm</title><link>https://sourceforge.net/p/koma-script/wiki-en/HowTo_FootSepLine/</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:20:20 -0000</pubDate><guid>https://sourceforge.net701d6c3a43f5aed708688db79491386f53a3299a</guid></item><item><title>HowTo_FootSepLine modified by Markus Kohm</title><link>https://sourceforge.net/p/koma-script/wiki-en/HowTo_FootSepLine/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="how-to-insert-a-separator-between-text-area-and-footer"&gt;How to insert a separator between text area and footer&lt;/h1&gt;
&lt;p&gt;The KOMA-Script classes provide the &lt;code&gt;footsepline&lt;/code&gt; option to switch on a separator between the text area and the footer in page style &lt;code&gt;headings&lt;/code&gt;, &lt;code&gt;myheadings&lt;/code&gt; or &lt;code&gt;plain&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;[footsepline]&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;\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;\blinddocument&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;As can be seen in the example, the separator is also inserted on the first page of a chapter, although it is not set in the page style &lt;code&gt;headings&lt;/code&gt;, but in the style &lt;code&gt;plain&lt;/code&gt;. This difference to &lt;a class="" href="/p/koma-script/wiki-en/HowTo_HeadSepLine/"&gt;&lt;code&gt;headsepline&lt;/code&gt;&lt;/a&gt; makes sense, because in all three styles the classes do only the pagination in the footer, that is, they set the page number.&lt;/p&gt;
&lt;p&gt;If, on the other hand, you insist on omitting the separator on these pages, the package &lt;a class="" href="https://www.ctan.org/pkg/scrlayer-scrpage" rel="nofollow"&gt;&lt;code&gt;scrlayer-scrpage&lt;/code&gt;&lt;/a&gt; is required, which only takes over the setting of &lt;code&gt;footsepline&lt;/code&gt; with the additional option &lt;code&gt;plainfootsepline&lt;/code&gt; also for pages in the style plain:&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;[footsepline]&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="na"&gt;[automark]&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;scrlayer-scrpage&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;\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;\blinddocument&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;As you can see from the example, it is better to set the separator even with &lt;code&gt;scrlayer-scrpage&lt;/code&gt;, if you stick to the default settings regarding the content of the footer:&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;[footsepline]&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="na"&gt;[automark,plainfootsepline]&lt;/span&gt;&lt;span class="nb"&gt;{&lt;/span&gt;scrlayer-scrpage&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;\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;\blinddocument&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;If you want to change the thickness of the line, you should also use the &lt;code&gt;scrlayer-scrpage&lt;/code&gt; package. With this package you can, for example, pass values for the thickness of the line to the &lt;code&gt;footsepline&lt;/code&gt; option. The length and orientation of the line can also be influenced by the package. For more details see the manual.&lt;/p&gt;
&lt;p&gt;A side effect of using the separator is that the footer is automatically considered to be part of the type area. This has optical reasons and is explained in detail in the manual.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Markus Kohm</dc:creator><pubDate>Tue, 27 Apr 2021 08:59:25 -0000</pubDate><guid>https://sourceforge.net7c13d3016b12374798ee218bf47b22f3dbcd9d1b</guid></item></channel></rss>