<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.idpf.org/2007/opf" version="2.0" exclude-result-prefixes="#all"> <xsl:output indent="yes"/> <xsl:template match="/*"> <spine> <xsl:for-each select="*"> <itemref idref="{@idref}" id="itemref_{position()}"> <xsl:if test="@linear='no'"> <xsl:attribute name="linear" select="@linear"/> </xsl:if> </itemref> </xsl:for-each> </spine> </xsl:template> </xsl:stylesheet>