diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 8e5936c5590cc6cf11a820389e5e77bf6cba993c..eacc9ac2294b863913f33bc7101fcf84366b4a33 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -6,6 +6,17 @@ All notable changes to this project will be documented in this file.
 The format is based on `Keep a Changelog`_,
 and this project adheres to `Semantic Versioning`_.
 
+Unrelease
+---------
+
+Changed
+~~~~~~~
+
+* Reduce the margin to 5mm
+* Set width to 200mm
+* Reduce the space between the header and the heading
+* Display block of absentees as a table
+
 `2.0rc3`_ - 2021-09-24
 ----------------------
 
diff --git a/aleksis/apps/chronos/static/css/chronos/timetable.css b/aleksis/apps/chronos/static/css/chronos/timetable.css
index bbdbb5b82c664ca908c2cd2088188c0a64395716..df0286b663f0d6b10aa00ef5880d959d7f22c46c 100644
--- a/aleksis/apps/chronos/static/css/chronos/timetable.css
+++ b/aleksis/apps/chronos/static/css/chronos/timetable.css
@@ -103,8 +103,9 @@ table.substitutions td, table.substitutions th {
     width: 30%;
 }
 
+
 .print-body table.substitutions td, .print-body table.substitutions th {
-    padding: 0 2px;
+    padding: 0;
 }
 
 .print-body span.badge.new {
@@ -138,3 +139,24 @@ table.substitutions td, table.substitutions th {
 .holiday-card .holiday-badge {
     margin-top: 0;
 }
+
+@media print {
+    header {
+        width: 200mm;
+        top: 5mm;
+    }
+
+    .header-space {
+        height: 30mm;
+    }
+
+    .sheet {
+        padding: 5mm;
+    }
+
+    .print-layout-table, .print-layout-table > td {
+        width: 200mm;
+        max-width: 200mm;
+        min-width: 200mm;
+    }
+}
diff --git a/aleksis/apps/chronos/templates/chronos/partials/headerbox.html b/aleksis/apps/chronos/templates/chronos/partials/headerbox.html
index d298d5fc6faecec81be8f7fc48996cc777470290..1ed1e7de07cdcf64b2afea35f93f40b74aca9bd2 100644
--- a/aleksis/apps/chronos/templates/chronos/partials/headerbox.html
+++ b/aleksis/apps/chronos/templates/chronos/partials/headerbox.html
@@ -5,48 +5,48 @@
     <div class="{% if not print %}card-content{% endif %}">
       {% if absent_teachers %}
         <div class="row no-margin">
-          <div class="col s12 m3">
+          <div class="col {% if not print %}s12 m3{% else %}s3{% endif %}">
             <strong class="truncate">
               {% trans "Absent teachers" %}
             </strong>
           </div>
-          <div class="col s12 m9 black-text-a">
+          <div class="col {% if not print %}s12 m9{% else %}s9{% endif %} black-text-a">
             {% include "chronos/partials/teachers.html" with teachers=absent_teachers %}
           </div>
         </div>
       {% endif %}
       {% if absent_groups %}
         <div class="row no-margin">
-          <div class="col s12 m3">
+          <div class="col {% if not print %}s12 m3{% else %}s3{% endif %}">
             <strong class="truncate">
               {% trans "Absent groups" %}
             </strong>
           </div>
-          <div class="col s12 m9 black-text-a">
+          <div class="col {% if not print %}s12 m9{% else %}s9{% endif %} black-text-a">
             {% include "chronos/partials/groups.html" with groups=absent_groups no_collapsible=True %}
           </div>
         </div>
       {% endif %}
       {% if affected_teachers %}
         <div class="row no-margin">
-          <div class="col s12 m3">
+          <div class="col {% if not print %}s12 m3{% else %}s3{% endif %}">
             <strong class="truncate">
               {% trans "Affected teachers" %}
             </strong>
           </div>
-          <div class="col s12 m9 black-text-a">
+          <div class="col {% if not print %}s12 m9{% else %}s9{% endif %} black-text-a">
             {% include "chronos/partials/teachers.html" with teachers=affected_teachers %}
           </div>
         </div>
       {% endif %}
       {% if affected_groups %}
         <div class="row no-margin">
-          <div class="col s12 m3">
+          <div class="col {% if not print %}s12 m3{% else %}s3{% endif %}">
             <strong class="truncate">
               {% trans "Affected groups" %}
             </strong>
           </div>
-          <div class="col s12 m9 black-text-a">
+          <div class="col {% if not print %}s12 m9{% else %}s9{% endif %} black-text-a">
             {% include "chronos/partials/groups.html" with groups=affected_groups no_collapsible=True %}
           </div>
         </div>
diff --git a/aleksis/apps/chronos/templates/chronos/substitutions_print.html b/aleksis/apps/chronos/templates/chronos/substitutions_print.html
index adfdfebe7362e3dab8fc901ba7ec828f241b1f83..c94a512512ea94e6146f05a84118a531c4e3c854 100644
--- a/aleksis/apps/chronos/templates/chronos/substitutions_print.html
+++ b/aleksis/apps/chronos/templates/chronos/substitutions_print.html
@@ -14,7 +14,7 @@
 
 {% block content %}
   {% for day, c in days.items %}
-    <h4>{% trans "Substitutions" %} {{ c.day|date:"l" }} {{ c.day }}</h4>
+    <h4>{{ c.day|date:"l" }} {{ c.day|date:"SHORT_DATE_FORMAT" }}</h4>
 
     {% include "core/partials/announcements.html" with announcements=announcements show_recipients=1 %}