- Timestamp:
- Jun 1, 2015 3:40:51 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100727
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/doc/manual/docbook2latex.xsl ¶
r56173 r56190 324 324 <xsl:text>
\paragraph{</xsl:text> 325 325 <xsl:apply-templates /> 326 <xsl:text>}
\begin{addmargin}{1em}
</xsl:text> 326 <xsl:text>}
\begin{addmargin}{1em}
</xsl:text> <!-- addmargin is ended by refsect1 template way further down. --> 327 327 </xsl:when> 328 328 <xsl:when test="name(..)='refsect2'"> … … 349 349 <xsl:value-of select="concat('
\label{', $refid, '}')" /> 350 350 </xsl:if> 351 <xsl:text>
</xsl:text>352 </xsl:template>353 354 <xsl:template match="refsect1">355 <xsl:if test="not(title)"><xsl:message terminate="yes">Expected title element in refsect1.</xsl:message></xsl:if>356 <xsl:apply-templates/>357 <xsl:text>
\end{addmargin}
</xsl:text>358 </xsl:template>359 360 <xsl:template match="refsect2">361 <xsl:if test="(name(*[1]) != 'title' and name(*[1]) != 'cmdsynopsis') or not(title) = not(cmdsynopsis)">362 <xsl:message terminate="yes">Expected title or cmdsynopsis element as the first child of refsect2.</xsl:message>363 </xsl:if>364 <xsl:call-template name="xsltprocNewlineOutputHack"/>365 <xsl:if test="cmdsynopsis">366 <xsl:text>\vspace{1.2em}
</xsl:text>367 </xsl:if>368 <xsl:text>\noindent</xsl:text>369 <xsl:apply-templates/>370 351 <xsl:text>
</xsl:text> 371 352 </xsl:template> … … 634 615 635 616 <!-- 636 refentry releated stuff and isn't handled elsewhere...617 Turn the refsynopsisdiv part of a manpage into a named & indented paragraph. 637 618 --> 638 619 <xsl:template match="refsynopsisdiv"> 620 <xsl:if test="name(*[1]) != 'cmdsynopsis'"><xsl:message terminate="yes">Expected refsynopsisdiv to start with cmdsynopsis</xsl:message></xsl:if> 621 <xsl:if test="title"><xsl:message terminate="yes">No title element supported in refsynopsisdiv</xsl:message></xsl:if> 639 622 <xsl:call-template name="xsltprocNewlineOutputHack"/> 640 623 <xsl:text>
\paragraph{Synopsis} \hfill \\
\begin{addmargin}{1em}
</xsl:text> … … 643 626 </xsl:template> 644 627 628 <!-- 629 The refsect1 is used for 'Description' and such. Do same as with refsynopsisdiv 630 and turn it into a named & indented paragraph. 631 632 Note! If the section has a title, the title template way up above will begin 633 the addmargin stuff. We'll just end it here. 634 If there is no title, we ASSUME (HACK ALERT) that this is part of the 635 VBoxManage Command Overview section in the manual. 636 --> 637 <xsl:template match="refsect1"> 638 <xsl:if test="(name(*[1]) != 'title' and name(*[1]) != 'cmdsynopsis') or not(title) = not(cmdsynopsis)"> 639 <xsl:message terminate="yes">Expected title or cmdsynopsis element as the first child of refsect1.</xsl:message> 640 </xsl:if> 641 <xsl:if test="not(title)"> 642 <xsl:call-template name="xsltprocNewlineOutputHack"/> 643 <xsl:text>
\begin{addmargin}{1em}
</xsl:text> 644 </xsl:if> 645 <xsl:apply-templates/> 646 <xsl:text>
\end{addmargin}
</xsl:text> 647 </xsl:template> 648 649 <!-- 650 The refsect2 element will be turned into a subparagraph if it has a title, 651 however, that didn't work out when it didn't have a title and started with 652 a cmdsynopsis instead (subcommand docs). So, we're doing some trickery 653 here (HACK ALERT) for the non-title case to feign a paragraph. 654 --> 655 <xsl:template match="refsect2"> 656 <xsl:if test="(name(*[1]) != 'title' and name(*[1]) != 'cmdsynopsis') or not(title) = not(cmdsynopsis)"> 657 <xsl:message terminate="yes">Expected title or cmdsynopsis element as the first child of refsect2.</xsl:message> 658 </xsl:if> 659 <xsl:if test="not(title)"> 660 <xsl:call-template name="xsltprocNewlineOutputHack"/> 661 <xsl:text>\vspace{1.2em}
</xsl:text> 662 </xsl:if> 663 <xsl:apply-templates/> 664 <xsl:text>
</xsl:text> 665 </xsl:template> 666 667 668 <!-- 669 Command Synopsis elements. 670 --> 645 671 <xsl:template match="sbr"> 646 672 <xsl:text>\linebreak</xsl:text> … … 715 741 716 742 717 <!-- Text magic. --> 743 <!-- 744 Generic element text magic. 745 --> 718 746 <xsl:template match="//text()"> 719 747 <xsl:variable name="subst1">
Note:
See TracChangeset
for help on using the changeset viewer.