So something like this?
Code:
<xsl:for-each select="item">
<p><xsl:value-of select="title"/></p>
<p><xsl:value-of select="date"/></p>
<p><xsl:value-of select="copy"/></p>
</xsl:for-each>
Though aren't paragraphs out of favour now? Or maybe:
Code:
<xsl:for-each select="item">
<xsl:value-of select="title"/><br/>
<xsl:value-of select="date"/><br/>
<xsl:value-of select="copy"/><br/>
</xsl:for-each>
Or a DIV tag around them?