diff --git a/ws/Docbook/CustomLayer/slide/xsl/slideHdm.xsl b/ws/Docbook/CustomLayer/slide/xsl/slideHdm.xsl
index 606e3faa937e598387954e50a8c26e1a9d158e19..e91734f11d1fa2768359a5c2b5c85caf4fe44705 100644
--- a/ws/Docbook/CustomLayer/slide/xsl/slideHdm.xsl
+++ b/ws/Docbook/CustomLayer/slide/xsl/slideHdm.xsl
@@ -486,23 +486,16 @@
             </xsl:variable>
 
             <section id="{$primarySectionId}_followupExercise">
-                <xsl:choose>
-
-                    <xsl:when test="1 = count($followupQandasets)">
-                        <xsl:apply-templates select="$followupQandasets" mode="createTitleLink"/>
-                    </xsl:when>
-
-                    <xsl:otherwise>
-                        <ol>
-                            <xsl:for-each select="$followupQandasets">
-                                <li>
-                                    <xsl:apply-templates select="." mode="createTitleLink"/>
-                                </li>
-                            </xsl:for-each>
-                        </ol>
-                    </xsl:otherwise>
-
-                </xsl:choose>
+                <ol>
+                    <xsl:attribute name="start">
+                        <xsl:value-of select="1 + count(preceding::d:qandaset)"/>
+                    </xsl:attribute>
+                    <xsl:for-each select="$followupQandasets">
+                        <li>
+                            <xsl:apply-templates select="." mode="createTitleLink"/>
+                        </li>
+                    </xsl:for-each>
+                </ol>
             </section>
         </xsl:if>