本文介绍了如何将xml转换为word脚注&amp;使用xslt尾注?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! hai,我的脚注和尾注有问题,我的样本xml是hai, I have problem with footnote and endnote , my sample xml is xml content<xref ref-type="fn" rid="FN-fn-11"><sup>3</sup></xref>content xml<xref ref-type="fn" rid="FN-fn-12"><sup>4</sup></xref>content xml<xref ref-type="fn" rid="FN-fn-13"><sup>5</sup></xref>content xml<xref ref-type="fn" rid="FN-fn-14"><sup>6</sup></xref><fn-group content-type="footnotes"><fn fn-type="footnote" id="FN-fn-11"><label><sup>3</sup></label><p>para term 3</p></fn><fn fn-type="footnote" id="FN-fn-12"><label><sup>4</sup></label><p>para term 4</p></fn><fn fn-type="footnote" id="FN-fn-13"><label><sup>5</sup></label><p>para term 5</p></fn><fn fn-type="footnote" id="FN-fn-14"><label><sup>6</sup></label><p>para term 6</p></fn><fn-group> 在此我转换所有脚注使用xsltin this i convert all footnote using xslt<xsl:template match="//xref"> <xsl:variable name="rid" select="@rid"/> <xsl:choose> <xsl:when test="(ancestor::*//fn[@id = $rid]/parent::fn-group[@content-type='footnotes']/parent::table-wrap-foot or ancestor::fn or ancestor::en)"> <fo:inline> <xsl:apply-templates/> </fo:inline> </xsl:when> <xsl:when test="ancestor::*//fn-group[@content-type='footnotes']/fn[@id = $rid]"> <fo:footnote> <fo:inline> <xsl:value-of select="."/> </fo:inline> <fo:footnote-body provisional-label-separation="0pt" provisional-distance-between-starts="18pt" space-after.optimum="6pt"> <xsl:for-each select="ancestor::*//fn-group[@content-type='footnotes']/fn[@id = $rid]/p"> <xsl:apply-templates select="."/> </xsl:for-each> </fo:footnote-body> </fo:footnote> </xsl:when></xsl:template> 但是现在所有的脚注都将作为结束笔记放在我的知识中xslt没有< fo:endnote xmlns:fo =#unknown>任何一个给出更好的解决方案but now all footnote will place as end notes in my knowledge xslt dont have <fo:endnote xmlns:fo="#unknown"> any one give better solution推荐答案 但现在所有脚注都会放置据我所知,xslt没有< fo:endnote xmlns:fo =#unknown>任何一个提供更好的解决方案but now all footnote will place as end notes in my knowledge xslt dont have <fo:endnote xmlns:fo="#unknown"> any one give better solution 这篇关于如何将xml转换为word脚注&amp;使用xslt尾注?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-21 06:21