Nearly every one of us have designed custom ItemStyles in ItemStyle.xsl to produce the presentation format needed by business. I think it will be great if we can put together these styles here for the benefit of everyone.
For example, here is the first one from me (basically for debugging)
<!-- List Every Property START -->
<xsl:template name="ListEveryProperty" match="Row[@Style='ListEveryProperty']" mode="itemstyle">
<xsl:for-each select="@*">
F:<xsl:value-of select="name()"/>--<xsl:value-of select="."/><br/>
</xsl:for-each>
</xsl:template>
<!-- List Every Property END -->
I will try to add other styles too.